Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / rhoPisoFoam / les / pitzDaily / system / controlDict
bloba8745c5c561957ef82f78abc82fea14fe8fa7e34
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.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     rhoPisoFoam;
20 startFrom       startTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         10;
28 deltaT          1e-05;
30 writeControl    timeStep;
32 writeInterval   100;
34 purgeWrite      0;
36 writeFormat     ascii;
38 writePrecision  6;
40 writeCompression uncompressed;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable yes;
48 adjustTimeStep  no;
50 maxCo           0.5;
52 functions
54     fieldAverage1
55     {
56         type            fieldAverage;
57         functionObjectLibs ( "libfieldFunctionObjects.so" );
58         enabled         true;
59         outputControl   outputTime;
60         fields
61         (
62             U
63             {
64                 mean        on;
65                 prime2Mean  on;
66                 base        time;
67             }
69             p
70             {
71                 mean        on;
72                 prime2Mean  on;
73                 base        time;
74             }
75         );
76     }
79 // ************************************************************************* //