mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: autoHexMesh: synchronise positions
This commit is contained in:
@ -1177,6 +1177,15 @@ Foam::labelList Foam::meshRefinement::markFacesOnProblemCellsGeometric
|
||||
{
|
||||
newPoints[meshPoints[i]] += disp[i];
|
||||
}
|
||||
|
||||
syncTools::syncPointList
|
||||
(
|
||||
mesh_,
|
||||
newPoints,
|
||||
minMagSqrEqOp<point>(), // combine op
|
||||
vector(GREAT, GREAT, GREAT) // null value (note: cannot use VGREAT)
|
||||
);
|
||||
|
||||
mesh_.movePoints(newPoints);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user