mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: foamyHexMesh printouts
This commit is contained in:
@ -146,7 +146,8 @@ void Foam::DelaunayMesh<Triangulation>::printInfo(Ostream& os) const
|
|||||||
++vit
|
++vit
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if (!vit->farPoint())
|
// Only internal or boundary vertices have a size
|
||||||
|
if (vit->internalOrBoundaryPoint())
|
||||||
{
|
{
|
||||||
minSize = min(vit->targetCellSize(), minSize);
|
minSize = min(vit->targetCellSize(), minSize);
|
||||||
maxSize = max(vit->targetCellSize(), maxSize);
|
maxSize = max(vit->targetCellSize(), maxSize);
|
||||||
|
|||||||
@ -143,7 +143,7 @@ void Foam::PrintTable<KeyType, DataType>::print
|
|||||||
os << nl << indent << tab << "# " << title_.c_str() << endl;
|
os << nl << indent << tab << "# " << title_.c_str() << endl;
|
||||||
|
|
||||||
os.width(largestKeyLength);
|
os.width(largestKeyLength);
|
||||||
os << indent << "# Proc No";
|
os << indent << "# Proc";
|
||||||
|
|
||||||
forAll(procData, procI)
|
forAll(procData, procI)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user