mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: autoCellLayer: improved message
This commit is contained in:
@ -2615,9 +2615,12 @@ void Foam::autoLayerDriver::addLayers
|
|||||||
extrudeStatus
|
extrudeStatus
|
||||||
);
|
);
|
||||||
|
|
||||||
Info<< "Extruding " << countExtrusion(pp, extrudeStatus)
|
label nExtruded = countExtrusion(pp, extrudeStatus);
|
||||||
<< " out of " << returnReduce(pp().size(), sumOp<label>())
|
label nTotFaces = returnReduce(pp().size(), sumOp<label>());
|
||||||
<< " faces. Removed extrusion at " << nTotChanged << " faces."
|
Info<< "Extruding " << nExtruded
|
||||||
|
<< " out of " << nTotFaces
|
||||||
|
<< " faces (" << 100.0*nExtruded/nTotFaces << "%)."
|
||||||
|
<< " Removed extrusion at " << nTotChanged << " faces."
|
||||||
<< endl;
|
<< endl;
|
||||||
|
|
||||||
if (nTotChanged == 0)
|
if (nTotChanged == 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user