Upgrade case file headers
[foam-extend-3.2.git] / tutorials / incompressible / channelFoam / channel395 / system / controlDict
blob9ebf2c2e8ebf151e3aae436b42cce1a0544b7969
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 channelOodles;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         1000;
27 deltaT          0.2;
29 writeControl    timeStep;
31 writeInterval   200;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression uncompressed;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable yes;
47 functions
49     fieldAverage1
50     {
51         // Type of functionObject
52         type fieldAverage;
54         // Where to load it from (if not already in solver)
55         functionObjectLibs ("libfieldFunctionObjects.so");
57         outputControl     outputTime;
59         // Fields to be  averaged - runTime modifiable
60         fields
61         (
62             U
63             {
64                 mean            on;
65                 prime2Mean      on;
66                 base            time;
67             }
68             p
69             {
70                 mean            on;
71                 prime2Mean      on;
72                 base            time;
73             }
74         );
75     }
78 // ************************************************************************* //