Upgrade case file headers
[foam-extend-3.2.git] / tutorials / multiphase / cavitatingFoam / les / throttle / system / controlDict
blobef396b8ab4ada9c5f9c4bcf6e3ce68d6d162d953
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      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.0002;
28 deltaT          1e-08;
30 writeControl    adjustableRunTime;
32 writeInterval   2e-05;
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     }
86 // ************************************************************************* //