mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
65 lines
1.3 KiB
Plaintext
Executable File
65 lines
1.3 KiB
Plaintext
Executable File
// The FOAM Project // File: controlDict
|
|
/*
|
|
-------------------------------------------------------------------------------
|
|
========= | dictionary
|
|
\\ / |
|
|
\\ / | Name: controlDict
|
|
\\ / | Family: FoamX configuration file
|
|
\\/ |
|
|
F ield | FOAM version: 2.3
|
|
O peration | Product of Nabla Ltd.
|
|
A and |
|
|
M anipulation | Email: Enquiries@Nabla.co.uk
|
|
-------------------------------------------------------------------------------
|
|
*/
|
|
// FoamX Case Dictionary.
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "/home/storm/chris/foam/chris2.3/run/tutorials/icoFoam";
|
|
case "cavity";
|
|
instance "system";
|
|
local "";
|
|
|
|
class dictionary;
|
|
object controlDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
applicationClass icoFoam;
|
|
|
|
startFrom latestTime;
|
|
|
|
startTime 0;
|
|
|
|
stopAt endTime;
|
|
|
|
endTime 0.5;
|
|
|
|
deltaT 0.005;
|
|
|
|
writeControl timeStep;
|
|
|
|
writeInterval 20;
|
|
|
|
cycleWrite 0;
|
|
|
|
writeFormat ascii;
|
|
|
|
writePrecision 6;
|
|
|
|
writeCompression uncompressed;
|
|
|
|
timeFormat general;
|
|
|
|
timePrecision 6;
|
|
|
|
runTimeModifiable yes;
|
|
|
|
|
|
// ************************************************************************* //
|