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() : "
|
Info<< "void multiTopoBodyFvMesh::addZonesAndModifiers() : "
|
||||||
<< "Zones and modifiers already present. Skipping."
|
<< "Zones and modifiers already present. Skipping."
|
||||||
<< endl;
|
<< endl;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -187,6 +187,12 @@ void Foam::ggiPolyPatch::calcPatchToPatch() const
|
||||||
|
|
||||||
if (master())
|
if (master())
|
||||||
{
|
{
|
||||||
|
if (debug)
|
||||||
|
{
|
||||||
|
InfoIn("void ggiPolyPatch::calcPatchToPatch() const")
|
||||||
|
<< "Calculating patch to patch interpolation" << endl;
|
||||||
|
}
|
||||||
|
|
||||||
// Create interpolation for zones
|
// Create interpolation for zones
|
||||||
patchToPatchPtr_ =
|
patchToPatchPtr_ =
|
||||||
new ggiZoneInterpolation
|
new ggiZoneInterpolation
|
||||||
|
|
|
@ -312,6 +312,7 @@ public:
|
||||||
//- Return interpolation face zone
|
//- Return interpolation face zone
|
||||||
const faceZone& zone() const;
|
const faceZone& zone() const;
|
||||||
|
|
||||||
|
|
||||||
// Interpolation data
|
// Interpolation data
|
||||||
|
|
||||||
//- Is this the master side?
|
//- Is this the master side?
|
||||||
|
|
Reference in a new issue