/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.2.0                                   |
|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     simpleFoam; //simpleFoam, turbFoam, vmsFoam, etc;

startFrom       latestTime;

startTime       latestTime;

stopAt          endTime;

endTime         $finaltime$;

deltaT          1.0;

writeControl    timeStep;

writeInterval   100.0;

purgeWrite      2;

writeFormat     ascii;

writePrecision  10;

writeCompression no;

timeFormat      general;

timePrecision   10;

runTimeModifiable yes;



libs
(
    "$lib$"
);


functions
{
    // to look at residuals as the simulation runs, or afterwards, run
    //  foamMonitor -l postProcessing/residuals/52/residuals.dat
    // see https://cfd.direct/openfoam/user-guide/v9-graphs-monitoring/#x33-2590006.3
    #includeFunc  residuals
}


// ************************************************************************* //
