Skip to content
Snippets Groups Projects
Commit 0e2fb594 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/boxnetworkgridnormalcomputation' into 'master'

Fix/box normal vector computation on 2d network grids

The normal was not scaled by the right area for 2d network grids in 3d space,
which led to wrong fluxes.

See merge request !288
parents 7813c868 0c93a0b3
No related branches found
No related tags found
4 merge requests!600[WIP][components][plotproperties] Add a source file to plot properties of some components,!501Freeflow/turbulenceproperties,!492Resolve "Inconsistent `index()` method of the different `SubControlVolume` classes",!288Fix/box normal vector computation on 2d network grids
...@@ -943,6 +943,10 @@ public: ...@@ -943,6 +943,10 @@ public:
this->crossProduct(elemNormal, elemVec1, elemVec2); this->crossProduct(elemNormal, elemVec1, elemVec2);
this->crossProduct(scvFace.normal, faceVec, elemNormal); this->crossProduct(scvFace.normal, faceVec, elemNormal);
// scale normal vector by the area
scvFace.normal /= scvFace.normal.two_norm();
scvFace.normal *= faceVec.two_norm();
const auto diffVec = subContVol[j].global - subContVol[i].global; const auto diffVec = subContVol[j].global - subContVol[i].global;
// make sure the normal points to the right direction // make sure the normal points to the right direction
if (scvFace.normal * diffVec < 0) if (scvFace.normal * diffVec < 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment