Build instructions update: Cesare Guardino
[foam-extend-3.2.git] / tutorials / incompressible / simpleSRFFoam / axialTurbine / system / controlDict
blob143108cfb4ec31a20e7831e2e28fb09a8f70f20f
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     simpleSRFFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         100;
27 deltaT          1;
29 writeControl    timeStep;
31 writeInterval   20;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression compressed;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable yes;
47 // Compute the flux value on each side of a GGI interface
48 functions
50     ggiCheck
51     {
52         // Type of functionObject
53         type ggiCheck;
55         phi phi;
57         // Where to load it from (if not already in solver)
58         functionObjectLibs ("libcheckFunctionObjects.so");
59     }
62 // ************************************************************************* //