Hi, any steer on how to get a figure for, say, heat Flux X across a face selection? I can get a table of node or element values from the selection, but summing either of these and dividing by the area does not give sensible answers (way too high.
Cheers, D
Comments
A ) If it's a uniform mesh, especially with linear elements, you might get away with averaging the heat flux X values of the nodes to get average heat flux. Multiply that by the area of the surface to get heat flow rate. The disadvantage with this way is that it weights each node equally in the average so a varying mesh density over the surface will cause error.
B ) More accurate, especially for complex geometry:
1. Extrude a thin layer of elements from the surface
2. Create a new component for the extruded layer.
3. Move the boundary conditions to the new surface.
4. After solving, use Tools -> Mean to get the average heat flux in this thin layer. Again, multiply that by the surface area to get heat flow rate.
Method B: This estimated the total power to within 0.001%, so perfectly happy with that.