openfoam/tutorials/rhoTurbFoam/cavity/system/controlDict
2008-04-15 18:56:58 +01:00

81 lines
1.9 KiB
Plaintext

/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root "";
case "";
instance "";
local "";
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Foam Application Class
application rhoTurbFoam;
// Start point of run
startFrom startTime;
// Calculation start time
startTime 0;
// End point of run
stopAt endTime;
// Calculation end time
endTime 1;
// Calculation time step
deltaT 0.01;
// Type of write output control
writeControl runTime;
// Interval with which the results are output
writeInterval 0.1;
// Limits number of time directories before overwriting
purgeWrite 0;
// Write Format
writeFormat ascii;
// Significant figures of written ASCII data
writePrecision 6;
// Write Compression
writeCompression uncompressed;
// Time directories name format
timeFormat general;
// Decimal precision of time directory names
timePrecision 6;
// Can parameters be modified during run time?
runTimeModifiable yes;
// Automatic adjustment of time step?
adjustTimeStep no;
// maxCo
maxCo 0.3;
// maxDeltaT
maxDeltaT 1;
// ************************************************************************* //