STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / icoDyMFoam / mixerGgi / system / controlDict
blob0339bd7e6d10e502d1de67aae6176a007419cf53
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
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         0.25;
27 deltaT          0.005;
29 writeControl    timeStep;
31 writeInterval   1;
33 cycleWrite      0;
35 writeFormat     ascii;
37 writePrecision  10;
39 writeCompression uncompressed;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable yes;
47 adjustTimeStep yes;
49 maxCo          0.5;
51 maxDeltaT      1.0;
53 functions
55     ggiCheck
56     {
57         // Type of functionObject
58         type ggiCheck;
60         phi phi;
62         // Where to load it from (if not already in solver)
63         functionObjectLibs ("libcheckFunctionObjects.so");
64     }
67 // ************************************************************************* //