~esys-p-dev/esys-particle/esys-foam-dem

« back to all changes in this revision

Viewing changes to trunk/example/2dshpl/system/controlDict.bak

  • Committer: Feng Chen
  • Date: 2012-06-16 03:15:16 UTC
  • Revision ID: fchen3@gmail.com-20120616031516-0m2hw2zyhdkhu1uv
add 2d sheetpile problem files to repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*---------------------------------------------------------------------------*\
 
2
| =========                 |                                                 |
 
3
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
 
4
|  \\    /   O peration     | Version:  1.3                                   |
 
5
|   \\  /    A nd           | Web:      http://www.openfoam.org               |
 
6
|    \\/     M anipulation  |                                                 |
 
7
\*---------------------------------------------------------------------------*/
 
8
 
 
9
// FoamX Case Dictionary.
 
10
 
 
11
FoamFile
 
12
{
 
13
    version         2.0;
 
14
    format          ascii;
 
15
 
 
16
    root            "/home/fchen/OpenFOAM/fchen-1.3/run/tutorials/icoFoam1";
 
17
    case            "rect1";
 
18
    instance        "system";
 
19
    local           "";
 
20
 
 
21
    class           dictionary;
 
22
    object          controlDict;
 
23
}
 
24
 
 
25
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
26
 
 
27
application     icoFoam;
 
28
 
 
29
startFrom       startTime;
 
30
 
 
31
startTime       0;
 
32
 
 
33
stopAt          endTime;
 
34
 
 
35
endTime         0.001;
 
36
 
 
37
deltaT          0.001;
 
38
 
 
39
writeControl    timeStep;
 
40
 
 
41
writeInterval   1;
 
42
 
 
43
purgeWrite      0;
 
44
 
 
45
writeFormat     ascii;
 
46
 
 
47
writePrecision  9;
 
48
 
 
49
writeCompression uncompressed;
 
50
 
 
51
timeFormat      general;
 
52
 
 
53
timePrecision   6;
 
54
 
 
55
graphFormat     raw;
 
56
 
 
57
runTimeModifiable yes;
 
58
 
 
59
 
 
60
// ************************************************************************* //