STYLE: foamyHexMesh printouts

This commit is contained in:
laurence 2013-08-12 15:40:16 +01:00
parent e7388fefb8
commit 8d3508f78a
2 changed files with 3 additions and 2 deletions

View File

@ -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);

View File

@ -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)
{ {