intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / tutorials / channelOodles / channel395 / system / controlDict
blobc5ba33876e2ac14190fa8aa7aac97f3b2dccfc7c
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      controlDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 application channelOodles;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         1000;
27 deltaT          0.2;
29 writeControl    timeStep;
31 writeInterval   200;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression uncompressed;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable yes;
47 functions
49     fieldAverage1
50     {
51         // Type of functionObject
52         type fieldAverage;
54         // Where to load it from (if not already in solver)
55         functionObjectLibs ("libfieldAverage.so");
57         // Fields to be  averaged - runTime modifiable
58         fields
59         (
60             U
61             {
62                 mean            on;
63                 prime2Mean      on;
64                 base            time;
65             }
66             p
67             {
68                 mean            on;
69                 prime2Mean      on;
70                 base            time;
71             }
72         );
73     }
76 // ************************************************************************* //