Formatting and debug statements
This commit is contained in:
parent
279876e5fa
commit
721dbf9323
3 changed files with 8 additions and 0 deletions
|
@ -54,6 +54,7 @@ void Foam::multiTopoBodyFvMesh::addZonesAndModifiers()
|
|||
Info<< "void multiTopoBodyFvMesh::addZonesAndModifiers() : "
|
||||
<< "Zones and modifiers already present. Skipping."
|
||||
<< endl;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -312,6 +312,7 @@ public:
|
|||
//- Return interpolation face zone
|
||||
const faceZone& zone() const;
|
||||
|
||||
|
||||
// Interpolation data
|
||||
|
||||
//- Is this the master side?
|
||||
|
|
Reference in a new issue