mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: AMI - using points() instead of localPoints()
This commit is contained in:
@ -995,7 +995,7 @@ void Foam::AMIInterpolation<SourcePatch, TargetPatch>::normaliseWeights
|
|||||||
scalar s = sum(wght[faceI]);
|
scalar s = sum(wght[faceI]);
|
||||||
wghtSum[faceI] = s;
|
wghtSum[faceI] = s;
|
||||||
|
|
||||||
scalar t = s/patch[faceI].mag(patch.localPoints());
|
scalar t = s/patch[faceI].mag(patch.points());
|
||||||
if (t < minBound)
|
if (t < minBound)
|
||||||
{
|
{
|
||||||
minBound = t;
|
minBound = t;
|
||||||
|
|||||||
Reference in New Issue
Block a user