BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pisoFoam / les / pitzDaily / system / controlDict
blobbeaa895c2d30cced87633ac33153615604ff39c1
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     location    "system";
14     object      controlDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 application     pisoFoam;
20 startFrom       startTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         0.1;
28 deltaT          1e-05;
30 writeControl    timeStep;
32 writeInterval   100;
34 purgeWrite      0;
36 writeFormat     ascii;
38 writePrecision  6;
40 writeCompression off;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable true;
48 functions
50     probes
51     {
52         type            probes;
53         functionObjectLibs ("libsampling.so");
54         enabled         true;
55         outputControl   timeStep;
56         outputInterval  1;
58         fields
59         (
60             p
61         );
63         probeLocations
64         (
65             ( 0.0254 0.0253 0 )
66             ( 0.0508 0.0253 0 )
67             ( 0.0762 0.0253 0 )
68             ( 0.1016 0.0253 0 )
69             ( 0.127 0.0253 0 )
70             ( 0.1524 0.0253 0 )
71             ( 0.1778 0.0253 0 )
72         );
74     }
76     fieldAverage1
77     {
78         type            fieldAverage;
79         functionObjectLibs ("libfieldFunctionObjects.so");
80         enabled         true;
81         outputControl   outputTime;
83         fields
84         (
85             U
86             {
87                 mean        on;
88                 prime2Mean  on;
89                 base        time;
90             }
92             p
93             {
94                 mean        on;
95                 prime2Mean  on;
96                 base        time;
97             }
98         );
99     }
101     surfaceSampling
102     {
103         // Sample near-wall velocity
105         type surfaces;
107         // Where to load it from (if not already in solver)
108         functionObjectLibs ("libsampling.so");
109         enabled         true;
110         outputControl   outputTime;
112         interpolationScheme cellPoint;
114         surfaceFormat vtk;
116         // Fields to be sampled
117         fields
118         (
119             U
120         );
122         surfaces
123         (
124             nearWall
125             {
126                 type            patchInternalField;
127                 patches         ( lowerWall );
128                 distance        1E-6;
129                 interpolate     true;
130                 triangulate     false;
131             }
132         );
133     }
136 // ************************************************************************* //