From d7a357b64697179e4daae49ee4280689e19d2c12 Mon Sep 17 00:00:00 2001 From: Vuko Vukcevic Date: Tue, 24 Apr 2018 16:02:27 +0200 Subject: [PATCH] Bugfix in polyMesh::updateMesh Need to set changing_ flag to true automatically when performin topo changes or otherwise calling updateMesh --- src/foam/meshes/polyMesh/polyMeshUpdate.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/foam/meshes/polyMesh/polyMeshUpdate.C b/src/foam/meshes/polyMesh/polyMeshUpdate.C index 5477b6ee2..b96511262 100644 --- a/src/foam/meshes/polyMesh/polyMeshUpdate.C +++ b/src/foam/meshes/polyMesh/polyMeshUpdate.C @@ -36,6 +36,9 @@ Description void Foam::polyMesh::updateMesh(const mapPolyMesh& mpm) { + // Mesh is changing + changing(true); + // Update zones. Since boundary depends on zones, they need to be // updated first. HJ, 20/May/2014 pointZones_.updateMesh();