mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: meshRefinement: decision might not be synchronised in case of geometric testing
This commit is contained in:
@ -955,6 +955,17 @@ Foam::labelList Foam::meshRefinement::markFacesOnProblemCells
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Because of isCollapsedFace one side can decide not to baffle whereas
|
||||
// the other side does so sync. Baffling is prefered over not baffling.
|
||||
syncTools::syncFaceList
|
||||
(
|
||||
mesh_,
|
||||
facePatch,
|
||||
maxEqOp<label>()
|
||||
);
|
||||
|
||||
|
||||
Info<< "markFacesOnProblemCells : marked "
|
||||
<< returnReduce(nBaffleFaces, sumOp<label>())
|
||||
<< " additional internal faces to be converted into baffles."
|
||||
|
||||
Reference in New Issue
Block a user