BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / field / fieldAverage / controlDict
blob2c8d3cac79a64c0a0c0693055fef8d09254c4b6f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      controlDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 application     XXX;
19 startFrom       latestTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         0.1;
27 deltaT          1e-05;
29 writeControl    timeStep;
31 writeInterval   10;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression off;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable true;
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         // Function object enabled flag
58         enabled         true;
60         // When to output the average fields
61         outputControl   outputTime;
63         // Fields to be averaged - runTime modifiable
64         fields
65         (
66             U
67             {
68                 mean        on;
69                 prime2Mean  on;
70                 base        time;
71             }
73             p
74             {
75                 mean        on;
76                 prime2Mean  on;
77                 base        time;
78             }
79         );
80     }
83 // ************************************************************************* //