initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / cavitatingFoam / les / throttle3D / system / controlDict
blob37b2b36fb4d709ad5f6ebd50c0104fa9d9c532cc
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      binary;
12     class       dictionary;
13     location    "system";
14     object      controlDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 application     cavitatingFoam;
20 startFrom       latestTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         0.0001;
28 deltaT          1e-08;
30 writeControl    adjustableRunTime;
32 writeInterval   5e-06;
34 purgeWrite      0;
36 writeFormat     binary;
38 writePrecision  6;
40 writeCompression compressed;
42 timeFormat      general;
44 runTimeModifiable yes;
46 adjustTimeStep  on;
48 maxCo           0.5;
50 maxAcousticCo   50;
52 functions
54     fieldAverage1
55     {
56         type            fieldAverage;
57         functionObjectLibs ( "libfieldFunctionObjects.so" );
58         enabled         false;
59         outputControl   outputTime;
60         fields
61         (
62             U
63             {
64                 mean        on;
65                 prime2Mean  off;
66                 base        time;
67             }
69             p
70             {
71                 mean        on;
72                 prime2Mean  off;
73                 base        time;
74             }
76             gamma
77             {
78                 mean        on;
79                 prime2Mean  off;
80                 base        time;
81             }
82         );
83     }
87 // ************************************************************************* //