STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / mixingPlaneAxial / system / controlDict
blob0bc32ac7fd3a2fa8f6a1242619bebe4c59f4267c
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     simpleFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         50;
27 deltaT          1;
29 writeControl    timeStep;
31 writeInterval   10;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression uncompressed;
41 timeFormat      general;
43 timePrecision   6;
45 graphFormat     raw;
47 runTimeModifiable yes;
49 // Compute the flux value on each side of a GGI interface
50 functions
52     ggiCheck
53     {
54         // Type of functionObject
55         type ggiCheck;
57         phi phi;
59         // Where to load it from (if not already in solver)
60         functionObjectLibs ("libcheckFunctionObjects.so");
61     }
63     // Compute the flux value on each side of a mixingPlane interface
64     mixingPlaneCheck
65     {
66         // Type of functionObject
67         type mixingPlaneCheck;
69         masterPatchName         upstreamMixingPlanePatch;
70         masterPatchScaleFactor  10.0;
71         shadowPatchScaleFactor  4.0;
72         phi                     phi;
74         // Where to load it from (if not already in solver)
75         functionObjectLibs ("libcheckFunctionObjects.so");
76     }
79 // ************************************************************************* //