Skip to content
Snippets Groups Projects
Commit 05ffbd92 authored by Henry Weller's avatar Henry Weller
Browse files

reactingTwoPhaseEulerFoam: Remove the build-in write of Ur

Ur can be generated using a functionObject or in the post-processor
parent 18376369
Branches
Tags
No related merge requests found
......@@ -128,7 +128,7 @@ int main(int argc, char *argv[])
}
}
#include "write.H"
runTime.write();
Info<< "ExecutionTime = "
<< runTime.elapsedCpuTime()
......
if (runTime.outputTime())
{
volVectorField Ur
(
IOobject
(
"Ur",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
U1 - U2
);
runTime.write();
}
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