Fix tutorials: surfaceTracking/surfactantFoam/sphereTransport: fix system/faSolution
[OpenFOAM-1.6-ext.git] / tutorials / discreteMethods / dsmcFoam / wedge15Ma5 / system / controlDict
blobbedc97523986068c5534440b7344ba360989281b
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         0.01;
28 deltaT          2e-6;
30 writeControl    runTime;
32 writeInterval   1e-4;
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     }
60     fieldAverage1
61     {
62         type fieldAverage;
63         functionObjectLibs ( "libfieldFunctionObjects.so" );
64         outputControl     outputTime;
65         resetOnOutput     on;
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     }
125     forces1
126     {
127         type        forces;
128         enabled     on;
129         functionObjectLibs ( "libforces.so" );
130         outputControl     outputTime;
131         patches     ( obstacle );
132         directForceDensity true;
133         fDName      fDMean;
134         CofR        ( 0 0 0 );
135         log         on;
136     }
140 // ************************************************************************* //