Average Flux Across Edge
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Paul Safier
el 1 de Mayo de 2025
Comentada: Ansel
el 14 de Mayo de 2025
Hi. I need to compute the average flux across the edge in the diagram that is of length xa. Shouldn't the results from the function evaluateHeatFlux be weighted by the mesh segment lengths on that edge? For non-uniform meshes, as this is, the segment lengths are not all equal and thus the result given by evaluateHeatFlux should have less weight in a small segment versus a large segment (when averaging). Does Matlab have a built-in way of doing this?
results = solve(model);
[qx,qy] = evaluateHeatFlux(results);
Nodes_Xa = findNodes(model.Mesh,"region","Edge",Edge_Xa);
flux_Xa = qy(Nodes_Xa);
averageFlux = mean(flux_Xa); % SHOULDN'T THIS BE WEIGHTED BY THE ELEMENT EDGE LENGTH?
Thanks for any input.


0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!