Upgrade case file headers
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleMRFFoam / simpleRotorStator / system / controlDict
blobc3c14c53ebb004919af496451992054c2a7509ea
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      controlDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 startFrom       latestTime;
18 // startFrom       startTime;
20 startTime       0;
22 stopAt          endTime;
24 endTime         5000;
26 deltaT          1;
28 writeControl    timeStep;
30 writeInterval   200;
32 purgeWrite      0;
34 writeFormat     ascii;
36 writePrecision  6;
38 writeCompression uncompressed;
40 timeFormat      general;
42 timePrecision   6;
44 graphFormat     raw;
46 runTimeModifiable yes;
48 functions
50     flux
51     {
52         type        divFlux;
53         phiName     phi;
55         functionObjectLibs ("libutilityFunctionObjects.so");
56     }
58     Mach
59     {
60         type        MachNumber;
61         UName       U;
63         functionObjectLibs ("libutilityFunctionObjects.so");
64     }
66     minMaxU
67     {
68         type        minMaxField;
70         // Where to load it from (if not already in solver)
71         functionObjectLibs ("libfieldFunctionObjects.so");
73         name U;
74     }
76     minMaxP
77     {
78         type        minMaxField;
80         // Where to load it from (if not already in solver)
81         functionObjectLibs ("libfieldFunctionObjects.so");
83         name p;
84     }
86     minMaxRho
87     {
88         type        minMaxField;
90         // Where to load it from (if not already in solver)
91         functionObjectLibs ("libfieldFunctionObjects.so");
93         name rho;
94     }
96     minMaxT
97     {
98         type        minMaxField;
100         // Where to load it from (if not already in solver)
101         functionObjectLibs ("libfieldFunctionObjects.so");
103         name T;
104     }
107 // ************************************************************************* //