initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / twoPhaseEulerFoam / bed / system / controlDict
blob0fcde57ac55cf85703440cfe926e2ec4b36f6c7b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      binary;
12     class       dictionary;
13     location    "system";
14     object      controlDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 application     twoPhaseEulerFoam;
20 startFrom       latestTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         10;
28 deltaT          0.001;
30 writeControl    adjustableRunTime;
32 writeInterval   0.1;
34 purgeWrite      0;
36 writeFormat     binary;
38 writePrecision  6;
40 writeCompression uncompressed;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable on;
48 adjustTimeStep  yes;
50 maxCo           0.5;
52 maxDeltaT       1;
54 functions
56     fieldAverage1
57     {
58         type            fieldAverage;
59         functionObjectLibs ( "libfieldFunctionObjects.so" );
60         outputControl   outputTime;
61         fields
62         (
63             Ua
64             {
65                  mean        on;
66                  prime2Mean  off;
67                  base        time;
68             }
70             Ub
71             {
72                  mean        on;
73                  prime2Mean  off;
74                  base        time;
75             }
77             alpha
78             {
79                  mean        on;
80                  prime2Mean  off;
81                  base        time;
82             }
84             p
85             {
86                  mean        on;
87                  prime2Mean  off;
88                  base        time;
89             }
90         );
91     }
95 // ************************************************************************* //