Average Flux Across Edge

2 vues (au cours des 30 derniers jours)
Paul Safier
Paul Safier le 1 Mai 2025
Commenté : Ansel le 14 Mai 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.

Réponse acceptée

Torsten
Torsten le 1 Mai 2025
Déplacé(e) : Torsten le 1 Mai 2025
Should be
averageFlux = 1/(Nodes_Xa(end)-Nodes_Xa(1))*trapz(Nodes_Xa,flux_Xa)
  7 commentaires
Paul Safier
Paul Safier le 2 Mai 2025
OK, I just tested that and it comes up as the exact same answer as the integral with trapz. Thanks!
Ansel
Ansel le 14 Mai 2025
Thanks for the link, you saved my day.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by