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