Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / verticalChannel / system / controlDict
blob99c1fbab43c1897a13c8a4bc56f7bead9021afc7
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      ascii;
12     class       dictionary;
13     location    "system";
14     object      controlDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 startFoam       latestTime;
20 startTime       0;
22 stopAt          endTime;
24 endTime         0.5;
26 deltaT          1e-05;
28 writeControl    adjustableRunTime;
30 writeInterval   1e-02;
32 purgeWrite      0;
34 writeFormat     ascii;
36 writePrecision  10;
38 writeCompression uncompressed;
40 timeFormat      general;
42 timePrecision   6;
44 runTimeModifiable yes;
46 adjustTimeStep  yes;
48 maxCo           5;
50 maxDeltaT       1e-03;
52 functions
54     faceSource1
55     {
56         type            faceSource;
57         functionObjectLibs ("libfieldFunctionObjects.so");
58         enabled         true;
59         outputControl   outputTime;
60         log             true;
61         valueOutput     true;
62         source          patch;
63         sourceName      outlet;
64         operation       weightedAverage;
65         weightField     phi;
66         fields
67         (
68             H2O
69             T
70         );
71     }
74 // ************************************************************************* //