mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: foamyHexMesh: write to own processor file in parallel
This commit is contained in:
@ -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
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user