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
faceSet candidateSet(mesh, setName);
Pout<< "Read " << candidateSet.size() << " faces to remove" << nl
Info<< "Read " << candidateSet.size() << " faces to remove" << nl
<< endl;
@ -97,11 +97,11 @@ int main(int argc, char *argv[])
{
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
<< endl;
Pout<< "Writing new faces to be removed to faceSet "
Info<< "Writing new faces to be removed to faceSet "
<< compatibleRemoves.instance()
/compatibleRemoves.local()
/compatibleRemoves.name()
@ -152,10 +152,10 @@ int main(int argc, char *argv[])
}
// 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();
Pout<< "End\n" << endl;
Info<< "End\n" << endl;
return 0;
}

View File

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