ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / discreteMethods / dsmcFoam / freeSpacePeriodic / system / controlDict
blob40edf78b881596fc623697902116eb811aaeebc4
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     dsmcFoam;
20 startFrom       startTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         1e-3;
28 deltaT          1e-6;
30 writeControl    runTime;
32 writeInterval   1e-4;
34 purgeWrite      0;
36 writeFormat     ascii;
38 writePrecision  10;
40 writeCompression off;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable true;
48 adjustTimeStep  no;
50 functions
52     dsmcFields1
53     {
54         type            dsmcFields;
55         functionObjectLibs ( "libutilityFunctionObjects.so" );
56         enabled         true;
57         outputControl   outputTime;
58     }
59     fieldAverage1
60     {
61         type            fieldAverage;
62         functionObjectLibs ( "libfieldFunctionObjects.so" );
63         outputControl   outputTime;
64         resetOnOutput   off;
66         fields
67         (
68             rhoN
69             {
70                 mean        on;
71                 prime2Mean  off;
72                 base        time;
73             }
74             rhoM
75             {
76                 mean        on;
77                 prime2Mean  off;
78                 base        time;
79             }
80             dsmcRhoN
81             {
82                 mean        on;
83                 prime2Mean  off;
84                 base        time;
85             }
86             momentum
87             {
88                 mean        on;
89                 prime2Mean  off;
90                 base        time;
91             }
92             linearKE
93             {
94                 mean        on;
95                 prime2Mean  off;
96                 base        time;
97             }
98             internalE
99             {
100                 mean        on;
101                 prime2Mean  off;
102                 base        time;
103             }
104             iDof
105             {
106                 mean        on;
107                 prime2Mean  off;
108                 base        time;
109             }
110             q
111             {
112                 mean        on;
113                 prime2Mean  off;
114                 base        time;
115             }
116             fD
117             {
118                 mean        on;
119                 prime2Mean  off;
120                 base        time;
121             }
122         );
123     }
126 // ************************************************************************* //