BUG: autoHexMesh: synchronise positions
This commit is contained in:
parent
6519e2f7e1
commit
fbdf6b384c
1 changed files with 9 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue