Build instructions update: Cesare Guardino
[foam-extend-3.2.git] / tutorials / incompressible / icoDyMFoam / turboPassageRotating / system / controlDict
blobe201672353b809e3d99ff6a9380e7d5323ecaaaf
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 icoDyMFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         1;
27 deltaT          0.0001;
29 writeControl    adjustableRunTime;
31 writeInterval   0.01;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  10;
39 writeCompression compressed;
41 timeFormat      general;
43 timePrecision   10;
45 runTimeModifiable yes;
47 adjustTimeStep  yes;
49 maxCo           0.8;
51 maxDeltaT       0.01;
53 functions
55     minMaxU
56     {
57         type        minMaxField;
59         // Where to load it from (if not already in solver)
60         functionObjectLibs (/*"libsampling.so"*/ "libfieldFunctionObjects.so");
62         name U;
63     }
64     minMaxP
65     {
66         type        minMaxField;
68         // Where to load it from (if not already in solver)
69         functionObjectLibs ("libfieldFunctionObjects.so");
71         name p;
72     }
75 // ************************************************************************* //