Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / sonicFoam / ras / prism / system / controlDict
blob4d0a148d2f957241a2a4e24e5b41d730906287a1
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     location    "system";
14     object      controlDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 application     sonicFoam;
20 startFrom       latestTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         0.005;
28 deltaT          1e-06;
30 writeControl    runTime;
32 writeInterval   0.0001;
34 purgeWrite      0;
36 writeFormat     ascii;
38 writePrecision  6;
40 writeCompression compressed;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable yes;
48 adjustTimeStep   no;
49 maxCo            10;
51 functions
53     Mach
54     {
55         type        MachNumber;
56         UName       U;
58         functionObjectLibs ("libutilityFunctionObjects.so");
59     }
61     minMaxU
62     {
63         type        minMaxField;
65         // Where to load it from (if not already in solver)
66         functionObjectLibs ("libfieldFunctionObjects.so");
68         name U;
69     }
71     minMaxP
72     {
73         type        minMaxField;
75         // Where to load it from (if not already in solver)
76         functionObjectLibs ("libfieldFunctionObjects.so");
78         name p;
79     }
81     minMaxRho
82     {
83         type        minMaxField;
85         // Where to load it from (if not already in solver)
86         functionObjectLibs ("libfieldFunctionObjects.so");
88         name rho;
89     }
91     minMaxT
92     {
93         type        minMaxField;
95         // Where to load it from (if not already in solver)
96         functionObjectLibs ("libfieldFunctionObjects.so");
98         name T;
99     }
103 // ************************************************************************* //