Skip to content
Snippets Groups Projects
Commit ee4cea9e authored by mattijs's avatar mattijs Committed by Andrew Heather
Browse files

BUG: autoHexMesh: synchronise positions

parent 5c4fdfce
Branches
Tags
No related merge requests found
......@@ -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);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment