fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / channelFoam / channel395 / system / controlDict
blob4d75919a309384cb54614d8a6e4ff154a644e11a
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      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 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 // ************************************************************************* //