extrudeToRegionMesh: Reinstate parallel synchronisation
This commit is contained in:
@ -437,7 +437,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Change the mesh. without keeping old points.
|
// Change the mesh. without keeping old points.
|
||||||
autoPtr<polyTopoChangeMap> map = meshMod.changeMesh(mesh, false);
|
autoPtr<polyTopoChangeMap> map = meshMod.changeMesh(mesh);
|
||||||
|
|
||||||
// Update fields
|
// Update fields
|
||||||
mesh.topoChange(map);
|
mesh.topoChange(map);
|
||||||
@ -892,7 +892,7 @@ int main(int argc, char *argv[])
|
|||||||
if (anyChange)
|
if (anyChange)
|
||||||
{
|
{
|
||||||
// Construct new mesh from polyTopoChange.
|
// Construct new mesh from polyTopoChange.
|
||||||
autoPtr<polyTopoChangeMap> map = meshMod.changeMesh(mesh, false);
|
autoPtr<polyTopoChangeMap> map = meshMod.changeMesh(mesh);
|
||||||
|
|
||||||
// Update fields
|
// Update fields
|
||||||
mesh.topoChange(map);
|
mesh.topoChange(map);
|
||||||
@ -994,7 +994,7 @@ int main(int argc, char *argv[])
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Construct new mesh from polyTopoChange.
|
// Construct new mesh from polyTopoChange.
|
||||||
autoPtr<polyTopoChangeMap> map = meshMod.changeMesh(mesh, false);
|
autoPtr<polyTopoChangeMap> map = meshMod.changeMesh(mesh);
|
||||||
|
|
||||||
// Update fields
|
// Update fields
|
||||||
mesh.topoChange(map);
|
mesh.topoChange(map);
|
||||||
|
|||||||
@ -1855,7 +1855,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
meshMod.changeMesh(regionMesh, false);
|
meshMod.changeMesh(regionMesh);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove any unused patches
|
// Remove any unused patches
|
||||||
@ -1985,7 +1985,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Change the mesh. Change points directly (without keeping old points).
|
// Change the mesh. Change points directly (without keeping old points).
|
||||||
addBafflesMap = meshMod.changeMesh(mesh, false);
|
addBafflesMap = meshMod.changeMesh(mesh);
|
||||||
|
|
||||||
// Update fields
|
// Update fields
|
||||||
mesh.topoChange(addBafflesMap);
|
mesh.topoChange(addBafflesMap);
|
||||||
|
|||||||
Reference in New Issue
Block a user