initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rhoTurbFoam / cavity / system / controlDict
blobf5ff06d5533d385dd142ece0b1a195afcd0751c4
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      controlDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Foam Application Class
18 application rhoTurbFoam;
20 // Start point of run
21 startFrom       startTime;
23 // Calculation start time
24 startTime       0;
26 // End point of run
27 stopAt          endTime;
29 // Calculation end time
30 endTime         1;
32 // Calculation time step
33 deltaT          0.01;
35 // Type of write output control
36 writeControl    runTime;
38 // Interval with which the results are output
39 writeInterval   0.1;
41 // Limits number of time directories before overwriting
42 purgeWrite      0;
44 // Write Format
45 writeFormat     ascii;
47 // Significant figures of written ASCII data
48 writePrecision  6;
50 // Write Compression
51 writeCompression uncompressed;
53 // Time directories name format
54 timeFormat      general;
56 // Decimal precision of time directory names
57 timePrecision   6;
59 // Can parameters be modified during run time?
60 runTimeModifiable yes;
62 // Automatic adjustment of time step?
63 adjustTimeStep  no;
65 // maxCo
66 maxCo           0.3;
68 // maxDeltaT
69 maxDeltaT       1;
71 // ************************************************************************* //