Formatting and debug statements

This commit is contained in:
Hrvoje Jasak 2014-05-20 11:57:56 +01:00
parent 279876e5fa
commit 721dbf9323
3 changed files with 8 additions and 0 deletions

View file

@ -54,6 +54,7 @@ void Foam::multiTopoBodyFvMesh::addZonesAndModifiers()
Info<< "void multiTopoBodyFvMesh::addZonesAndModifiers() : "
<< "Zones and modifiers already present. Skipping."
<< endl;
return;
}

View file

@ -187,6 +187,12 @@ void Foam::ggiPolyPatch::calcPatchToPatch() const
if (master())
{
if (debug)
{
InfoIn("void ggiPolyPatch::calcPatchToPatch() const")
<< "Calculating patch to patch interpolation" << endl;
}
// Create interpolation for zones
patchToPatchPtr_ =
new ggiZoneInterpolation

View file

@ -312,6 +312,7 @@ public:
//- Return interpolation face zone
const faceZone& zone() const;
// Interpolation data
//- Is this the master side?