Bugfix in polyMesh::updateMesh
Need to set changing_ flag to true automatically when performin topo changes or otherwise calling updateMesh
This commit is contained in:
parent
9ee5d49575
commit
d7a357b646
1 changed files with 3 additions and 0 deletions
|
@ -36,6 +36,9 @@ Description
|
||||||
|
|
||||||
void Foam::polyMesh::updateMesh(const mapPolyMesh& mpm)
|
void Foam::polyMesh::updateMesh(const mapPolyMesh& mpm)
|
||||||
{
|
{
|
||||||
|
// Mesh is changing
|
||||||
|
changing(true);
|
||||||
|
|
||||||
// Update zones. Since boundary depends on zones, they need to be
|
// Update zones. Since boundary depends on zones, they need to be
|
||||||
// updated first. HJ, 20/May/2014
|
// updated first. HJ, 20/May/2014
|
||||||
pointZones_.updateMesh();
|
pointZones_.updateMesh();
|
||||||
|
|
Reference in a new issue