ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / pitzDailyExptInlet / system / controlDict
blobe32599ef64fee1a04a735fc42a84ee1d1abfb4c4
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     simpleFoam;
20 startFrom       startTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         1000;
28 deltaT          1;
30 writeControl    timeStep;
32 writeInterval   50;
34 purgeWrite      0;
36 writeFormat     ascii;
38 writePrecision  6;
40 writeCompression off;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable true;
48 functions
50     streamLines
51     {
52         type            streamLine;
54         // Where to load it from (if not already in solver)
55         functionObjectLibs ("libfieldFunctionObjects.so");
57         // Output every
58         outputControl   outputTime;
59         // outputInterval 10;
61         setFormat       vtk; //gnuplot; //xmgr; //raw; //jplot;
63         // Velocity field to use for tracking.
64         UName U;
66         // Tracked forwards (+U) or backwards (-U)
67         trackForward    true;
69         // Names of fields to sample. Should contain above velocity field!
70         fields (p k U);
72         // Steps particles can travel before being removed
73         lifeTime        10000;
75         // Number of steps per cell (estimate). Set to 1 to disable subcycling.
76         nSubCycle 5;
78         // Cloud name to use
79         cloudName       particleTracks;
81         // Seeding method. See the sampleSets in sampleDict.
82         seedSampleSet   uniform;  //cloud;//triSurfaceMeshPointSet;
84         uniformCoeffs
85         {
86             type        uniform;
87             axis        x;  //distance;
89             start       (-0.0205 0.001  0.00001);
90             end         (-0.0205 0.0251 0.00001);
91             nPoints     10;
92         }
93     }
96 // ************************************************************************* //