mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Print min before average
This commit is contained in:
@ -843,8 +843,9 @@ bool Foam::primitiveMesh::checkFaceFlatness
|
||||
{
|
||||
if (nSummed > 0)
|
||||
{
|
||||
Info<< " Face flatness (1 = flat, 0 = butterfly) : average = "
|
||||
<< sumFlatness / nSummed << " min = " << minFlatness << endl;
|
||||
Info<< " Face flatness (1 = flat, 0 = butterfly) : min = "
|
||||
<< minFlatness << " average = " << sumFlatness / nSummed
|
||||
<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user