BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / field / fieldValues / controlDict
blob24b3ddbad403d1cd99759e861c89aebaf30af9a8
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     icoFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         0.5;
27 deltaT          0.005;
29 writeControl    timeStep;
31 writeInterval   20;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression off;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable true;
47 functions
49     faceObj1
50     {
51         type            faceSource;
52         functionObjectLibs ("libfieldFunctionObjects.so");
54         enabled         true;
55         outputControl   outputTime;
57         // Output to log&file (true) or to file only
58         log             true;
60         // Output field values as well
61         valueOutput     true;
63         // Type of source: patch/faceZone/sampledSurface
64         source          patch;
66         // if patch or faceZone: name of patch or faceZone
67         sourceName      movingWall;
69         //// if sampledSurface: dictionary with a sampledSurface
70         //// Note: the sampledSurfaces will have cell-values, i.e.
71         //// non-interpolated. Also will not sample surface fields.
72         //sampledSurfaceDict
73         //{
74         //    type            cuttingPlane;
75         //    planeType       pointAndNormal;
76         //    pointAndNormalDict
77         //    {
78         //        basePoint       (0 0.099 0);
79         //        normalVector    (0 1 0);
80         //    }
81         //}
83         // Operation: areaAverage/sum/weightedAverage ...
84         operation       areaAverage;
86         fields
87         (
88             p
89             phi         // surface fields not supported for sampledSurface
90             U
91         );
92     }
94     faceObj2
95     {
96         type            faceSource;
97         functionObjectLibs ("libfieldFunctionObjects.so");
98         enabled         true;
99         outputControl   outputTime;
100         log             true;
101         valueOutput     true;
102         source          faceZone;
103         sourceName      f0;
104         operation       sum;
106         fields
107         (
108             phi
109         );
110     }
112     cellObj1
113     {
114         type            cellSource;
115         functionObjectLibs ("libfieldFunctionObjects.so");
116         enabled         true;
117         outputControl   outputTime;
118         log             true;
119         valueOutput     true;
120         source          cellZone;
121         sourceName      c0;
122         operation       volAverage;
124         fields
125         (
126             p
127             U
128         );
129     }
132 // ************************************************************************* //