This commit is contained in:
Thomas Lichtenegger
2016-01-20 16:04:47 +01:00
parent 1e3062c8b7
commit 5d31a644c5
2 changed files with 8 additions and 6 deletions

View File

@ -72,7 +72,6 @@ int main(int argc, char *argv[])
particleCloud.clockM().stop("Coupling");
particleCloud.clockM().start(26,"Flow");
if ( runTime.timeOutputValue() - (recTimeIndex+1)*recTimeStep_ + 1.0e-5 > 0.0 )
{
@ -81,9 +80,10 @@ int main(int argc, char *argv[])
recTimeIndex++;
}
runTime.write();
particleCloud.clockM().start(27,"Output");
runTime.write();
particleCloud.clockM().stop("Output");
particleCloud.clockM().stop("Flow");
particleCloud.clockM().stop("Global");
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"

View File

@ -68,9 +68,10 @@ int main(int argc, char *argv[])
Info<< "Time = " << runTime.timeName() << nl << endl;
particleCloud.clockM().start(2,"Flow");
#include "TEq.H"
particleCloud.clockM().stop("Flow");
particleCloud.clockM().start(26,"Flow");
if ( runTime.timeOutputValue() - (recTimeIndex+1)*recTimeStep_ + 1.0e-5 > 0.0 )
{
@ -81,9 +82,10 @@ int main(int argc, char *argv[])
recTimeIndex++;
}
runTime.write();
particleCloud.clockM().start(27,"Output");
runTime.write();
particleCloud.clockM().stop("Output");
particleCloud.clockM().stop("Flow");
particleCloud.clockM().stop("Global");
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"