reactingTwoPhaseEulerFoam: Remove the build-in write of Ur

Ur can be generated using a functionObject or in the post-processor
This commit is contained in:
Henry Weller
2015-10-19 14:01:51 +01:00
parent 1837636964
commit 05ffbd9225
2 changed files with 1 additions and 18 deletions

View File

@ -128,7 +128,7 @@ int main(int argc, char *argv[])
} }
} }
#include "write.H" runTime.write();
Info<< "ExecutionTime = " Info<< "ExecutionTime = "
<< runTime.elapsedCpuTime() << runTime.elapsedCpuTime()

View File

@ -1,17 +0,0 @@
if (runTime.outputTime())
{
volVectorField Ur
(
IOobject
(
"Ur",
runTime.timeName(),
mesh,
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
U1 - U2
);
runTime.write();
}