Skip to content

Commit

Permalink
Always use skew-weights instead of our original weighting formula
Browse files Browse the repository at this point in the history
This dramatically improves our results on skewed meshes, as demonstrated
on one of Sinan's cask setups
  • Loading branch information
lindsayad committed Apr 4, 2022
1 parent e8e716c commit 2b37c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/include/mesh/FaceInfo.h
Expand Up @@ -163,7 +163,7 @@ class FaceInfo
Real neighborVolume() const { return _neighbor_volume; }

/// Return the geometric weighting factor
Real gC() const { return _gc; }
Real gC() const { return _gc_skewed; }

/// Return the weighting factor for skewed element-pairs
Real gCSkewed() const { return _gc_skewed; }
Expand Down

0 comments on commit 2b37c7f

Please sign in to comment.