Skip to content
Snippets Groups Projects
Commit bf683783 authored by laurence's avatar laurence
Browse files

BUG: foamyHexMesh: write to own processor file in parallel

parent c60419e8
Branches
Tags
No related merge requests found
......@@ -1487,8 +1487,13 @@ void Foam::conformalVoronoiMesh::move()
// Save displacements to file.
if (foamyHexMeshControls().objOutput() && time().outputTime())
{
Pout<< "Writing point displacement vectors to file." << endl;
OFstream str("displacements_" + runTime_.timeName() + ".obj");
Info<< "Writing point displacement vectors to file." << endl;
OFstream str
(
time().path()
+ "displacements_" + runTime_.timeName()
+ ".obj"
);
for
(
......
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