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 / nacaAirfoil / system / controlDict
blob6e3c8fd68ed8e139a12b1dc35b1cd06c702a0fc0
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.01;
28 deltaT          5e-08;
30 writeControl    runTime;
32 writeInterval   1e-05;
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     forces
54     {
55         type        forceCoeffs;
56         functionObjectLibs ( "libforces.so" );
57         outputControl timeStep;
58         outputInterval 1;
59         patches
60         (
61             WALL10
62         );
63         pName       p;
64         UName       U;
65         log         true;
66         rhoInf      1;
67         CofR        ( 0 0 0 );
68         liftDir     ( -0.239733 0.970839 0 );
69         dragDir     ( 0.970839 0.239733 0 );
70         pitchAxis   ( 0 0 1 );
71         magUInf     618.022;
72         lRef        1;
73         Aref        1;
74     }
76     Mach
77     {
78         type        MachNumber;
79         UName       U;
81         functionObjectLibs ("libutilityFunctionObjects.so");
82     }
84     minMaxU
85     {
86         type        minMaxField;
88         // Where to load it from (if not already in solver)
89         functionObjectLibs ("libfieldFunctionObjects.so");
91         name U;
92     }
94     minMaxP
95     {
96         type        minMaxField;
98         // Where to load it from (if not already in solver)
99         functionObjectLibs ("libfieldFunctionObjects.so");
101         name p;
102     }
104     minMaxRho
105     {
106         type        minMaxField;
108         // Where to load it from (if not already in solver)
109         functionObjectLibs ("libfieldFunctionObjects.so");
111         name rho;
112     }
114     minMaxT
115     {
116         type        minMaxField;
118         // Where to load it from (if not already in solver)
119         functionObjectLibs ("libfieldFunctionObjects.so");
121         name T;
122     }
125 // ************************************************************************* //