Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / backwardStepShortTurbulentSimpleIbFoam / system / controlDict
blob4f257f382023db1928fb3791ca79b2ec6ea4e228
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 application     simpleIbFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         1000;
27 deltaT          1;
29 writeControl    timeStep;
31 writeInterval   50;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression compressed;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable yes;
47 functions
49     forces
50     {
51         type               immersedBoundaryForces;
52         functionObjectLibs ("libimmersedBoundaryForceFunctionObject.so");
54         outputControl timeStep;
55         outputInterval 1;
56         patches ( pitzDailyIB );
58         pName       p;
59         UName       U;
60         rhoName     rhoInf;
61         rhoInf      1;
63         log         true;
64         CofR        ( 0 0 0 );
66         Aref 0.05;
67         Uref 1;
68     }
70     minMaxP
71     {
72         type minMaxField;
73         functionObjectLibs ("libfieldFunctionObjects.so");
74         name p;
75     }
77     minMaxU
78     {
79         type minMaxField;
80         functionObjectLibs ("libfieldFunctionObjects.so");
81         name U;
82     }
85 // ************************************************************************* //