mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: less verbose output of available procs in redistributePar
This commit is contained in:
@ -2545,7 +2545,8 @@ int main(int argc, char *argv[])
|
|||||||
haveMesh[Pstream::myProcNo()] = isFile(meshPath);
|
haveMesh[Pstream::myProcNo()] = isFile(meshPath);
|
||||||
Pstream::gatherList(haveMesh);
|
Pstream::gatherList(haveMesh);
|
||||||
Pstream::scatterList(haveMesh);
|
Pstream::scatterList(haveMesh);
|
||||||
Info<< "Per processor mesh availability : " << haveMesh << endl;
|
Info<< "Per processor mesh availability:" << nl
|
||||||
|
<< " " << flatOutput(haveMesh) << nl << endl;
|
||||||
|
|
||||||
|
|
||||||
// Addressing back to reconstructed mesh as xxxProcAddressing.
|
// Addressing back to reconstructed mesh as xxxProcAddressing.
|
||||||
@ -2898,7 +2899,8 @@ int main(int argc, char *argv[])
|
|||||||
haveMesh[Pstream::myProcNo()] = isFile(meshPath);
|
haveMesh[Pstream::myProcNo()] = isFile(meshPath);
|
||||||
Pstream::gatherList(haveMesh);
|
Pstream::gatherList(haveMesh);
|
||||||
Pstream::scatterList(haveMesh);
|
Pstream::scatterList(haveMesh);
|
||||||
Info<< "Per processor mesh availability : " << haveMesh << endl;
|
Info<< "Per processor mesh availability:" << nl
|
||||||
|
<< " " << flatOutput(haveMesh) << nl << endl;
|
||||||
|
|
||||||
// Load mesh (or create dummy one)
|
// Load mesh (or create dummy one)
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
@ -2930,7 +2932,7 @@ int main(int argc, char *argv[])
|
|||||||
fvMesh& mesh = meshPtr();
|
fvMesh& mesh = meshPtr();
|
||||||
|
|
||||||
|
|
||||||
label nOldCells = mesh.nCells();
|
const label nOldCells = mesh.nCells();
|
||||||
//Pout<< "Loaded mesh : nCells:" << nOldCells
|
//Pout<< "Loaded mesh : nCells:" << nOldCells
|
||||||
// << " nPatches:" << mesh.boundaryMesh().size() << endl;
|
// << " nPatches:" << mesh.boundaryMesh().size() << endl;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user