23 lines
795 B
C++
23 lines
795 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd |
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Writes run time, CPU time and clock time
|
|
and optionally the CPU and clock times per time step
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
type time;
|
|
libs ("libutilityFunctionObjects.so");
|
|
|
|
writeControl timeStep;
|
|
writeInterval 1;
|
|
|
|
perTimeStep no;
|
|
|
|
// ************************************************************************* //
|