Skip to content
Snippets Groups Projects
Commit 4dafaa8c authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: dump debug interpolation files to processor-specific names

parent ec77d315
Branches
Tags
No related merge requests found
......@@ -183,7 +183,10 @@ void Foam::pointToPointPlanarInterpolation::calcWeights
<< endl;
}
OBJstream str("destToSource.obj");
OBJstream str
(
"destToSource_" + Foam::name(UPstream::myProcNo()) + ".obj"
);
Pout<< "pointToPointPlanarInterpolation::calcWeights :"
<< " Dumping lines from face centres to original points to "
<< str.name() << endl;
......@@ -232,15 +235,24 @@ void Foam::pointToPointPlanarInterpolation::calcWeights
if (debug)
{
fileName outName
(
"triangulation_" + Foam::name(UPstream::myProcNo()) + ".obj"
);
Pout<< "pointToPointPlanarInterpolation::calcWeights :"
<<" Dumping triangulated surface to triangulation.stl" << endl;
s.write("triangulation.stl");
<<" Dumping triangulated surface to " << outName << endl;
s.write(outName);
OBJstream str("localFaceCentres.obj");
OBJstream os
(
"localFaceCentres_" + Foam::name(UPstream::myProcNo()) + ".obj"
);
Pout<< "pointToPointPlanarInterpolation::calcWeights :"
<< " Dumping face centres to " << str.name() << endl;
<< " Dumping face centres to " << os.name() << endl;
str.write(localFaceCentres);
os.write(localFaceCentres);
}
// Determine interpolation onto face centres.
......@@ -261,7 +273,10 @@ void Foam::pointToPointPlanarInterpolation::calcWeights
<< endl;
}
OBJstream str("stencil.obj");
OBJstream str
(
"stencil_" + Foam::name(UPstream::myProcNo()) + ".obj"
);
Pout<< "pointToPointPlanarInterpolation::calcWeights :"
<< " Dumping stencil to " << str.name() << endl;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment