initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / interDyMFoam / sloshingTank3D6DoF / system / controlDict
blobb721c9c05888ff377853556eee6154363bc8e05f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  dev                                   |
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     sloshingFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         40;
27 deltaT          0.01;
29 writeControl    adjustableRunTime;
31 writeInterval   0.05;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression compressed;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable yes;
47 adjustTimeStep  yes;
49 maxCo           0.5;
51 maxDeltaT       1;
53 functions
55     probes
56     {
57         // Type of functionObject
58         type probes;
60         // Name of the directory for the probe data
61         name probes;
63         // Locations to be probed. runTime modifiable!
64         probeLocations
65         (
66             (0 9.95 19.77)
67             (0 -9.95 19.77)
68         );
70         // Fields to be probed. runTime modifiable!
71         fields
72         (
73             p
74         );
75     }
77     /*
78     wallPressure
79     {
80         // Type of functionObject
81         type surfaces;
83         // Where to load it from (if not already in solver)
84         functionObjectLibs ("libsampling.so");
86                 // Output every 10th time step
87         interval 10;
89         surfaceFormat raw;
91         fields
92         (
93             p
94         );
96         surfaces
97         (
98             walls
99             {
100                 type            patch;
101                 patchName       walls;
102                 triangulate     false;
103             }
104         );
105     }
106     */
109 // ************************************************************************* //