utilities removeFaces and createEngineZones: Replaced Pout with Info

This commit is contained in:
Henry Weller
2024-04-18 08:27:49 +01:00
parent 3bd79f0447
commit 8bd14164ad
2 changed files with 6 additions and 6 deletions

View File

@ -72,7 +72,7 @@ int main(int argc, char *argv[])
// Read faces // Read faces
faceSet candidateSet(mesh, setName); faceSet candidateSet(mesh, setName);
Pout<< "Read " << candidateSet.size() << " faces to remove" << nl Info<< "Read " << candidateSet.size() << " faces to remove" << nl
<< endl; << endl;
@ -97,11 +97,11 @@ int main(int argc, char *argv[])
{ {
faceSet compatibleRemoves(mesh, "compatibleRemoves", facesToRemove); faceSet compatibleRemoves(mesh, "compatibleRemoves", facesToRemove);
Pout<< "Original faces to be removed:" << candidateSet.size() << nl Info<< "Original faces to be removed:" << candidateSet.size() << nl
<< "New faces to be removed:" << compatibleRemoves.size() << nl << "New faces to be removed:" << compatibleRemoves.size() << nl
<< endl; << endl;
Pout<< "Writing new faces to be removed to faceSet " Info<< "Writing new faces to be removed to faceSet "
<< compatibleRemoves.instance() << compatibleRemoves.instance()
/compatibleRemoves.local() /compatibleRemoves.local()
/compatibleRemoves.name() /compatibleRemoves.name()
@ -152,10 +152,10 @@ int main(int argc, char *argv[])
} }
// Take over refinement levels and write to new time directory. // Take over refinement levels and write to new time directory.
Pout<< "Writing mesh to time " << runTime.name() << endl; Info<< "Writing mesh to time " << runTime.name() << endl;
mesh.write(); mesh.write();
Pout<< "End\n" << endl; Info<< "End\n" << endl;
return 0; return 0;
} }

View File

@ -258,7 +258,7 @@ int main(int argc, char *argv[])
Info<< "Writing pointZones" << endl; Info<< "Writing pointZones" << endl;
mesh.pointZones().write(); mesh.pointZones().write();
Pout<< "End\n" << endl; Info<< "End\n" << endl;
return 0; return 0;
} }