Added control for surface conformation rebuild frequency.

Adding execution time to application.

Adding boolean control for timeChecks, setting to off.

Added determination and reporting of the net number of vertices removed during
an iteration.

Modified and cleaned up all reporting to screen.
This commit is contained in:
graham
2009-08-06 16:39:48 +01:00
parent b29a383ab8
commit 5c28dd80cd
6 changed files with 80 additions and 31 deletions

View File

@ -62,11 +62,19 @@ int main(int argc, char *argv[])
Info<< nl << "Time = " << runTime.timeName() << endl;
mesh.move();
Info<< nl << "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
}
mesh.writeMesh();
Info<< nl << "End\n" << endl;
Info<< nl << "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
Info<< nl << "End" << nl << endl;
return 0;
}