BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / field / fieldMinMax / controlDict
blobcb1517c03d9836a8e0b8e3cdb738c417c61340a9
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     minMax
50     {
51         // Type of functionObject
52         type            fieldMinMax;
54         // Where to load it from (if not already in solver)
55         functionObjectLibs ("libfieldAverage.so");
57         // Function object enabled flag
58         enabled         true;
60         // Log to output (default: false)
61         log             false;
63         // Write information to file (default: true)
64         write           true;
66         // Fields to be monitored - runTime modifiable
67         fields
68         (
69             U
70             p
71         );
72     }
75 // ************************************************************************* //