BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / field / readFields / postProcessingDict
blob364817bce30ffb18822221dccc0e6512663bf8e8
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      postProcessingDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 functions
19     readFields1
20     {
21         type            readFields;
22         functionObjectLibs ("libfieldFunctionObjects.so");
23         enabled         true;
24         outputControl   timeStep;
25         outputInterval  1;
27         fields
28         (
29             interpolateU
30         );
31     }
33     faceObj2
34     {
35         type            faceSource;
36         functionObjectLibs ("libfieldFunctionObjects.so");
37         enabled         true;
38         outputControl   timeStep;
39         outputInterval  1;
40         log             true;
41         valueOutput     true;
42         source          faceZone;
43         sourceName      f0;
44         operation       areaAverage;
46         fields
47         (
48             interpolateU
49         );
50     }
53 // ************************************************************************* //