mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: redistributePar: failing reconstruct. See #1953.
In reconstruct mode redistributePar will have - master read undecomposed mesh - slaves construct dummy mesh (0 faces/points etc.) but correct patches and zones so all processors have two valid meshes. This was all handled inside fvMeshTools::newMesh and this was behaving differently.
This commit is contained in:
@ -2754,6 +2754,10 @@ int main(int argc, char *argv[])
|
||||
Info<< "Time = " << runTime.timeName() << endl << endl;
|
||||
|
||||
|
||||
// Read undecomposed mesh on master and 'empty' mesh
|
||||
// (zero faces, point, cells but valid patches and zones) on slaves.
|
||||
// This is a bit of tricky code and hidden inside fvMeshTools for
|
||||
// now.
|
||||
Info<< "Reading undecomposed mesh (on master)" << endl;
|
||||
autoPtr<fvMesh> baseMeshPtr = fvMeshTools::newMesh
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user