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

« back to all changes in this revision

Viewing changes to trunk/example/2dshpl/constant/polyMesh/blockMeshDict.02142011

  • 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.0                                   |
 
5
|   \\  /    A nd           | Web:      http://www.openfoam.org               |
 
6
|    \\/     M anipulation  |                                                 |
 
7
\*---------------------------------------------------------------------------*/
 
8
 
 
9
FoamFile
 
10
{
 
11
    version         2.0;
 
12
    format          ascii;
 
13
 
 
14
    root            "";
 
15
    case            "";
 
16
    instance        "";
 
17
    local           "";
 
18
 
 
19
    class           dictionary;
 
20
    object          blockMeshDict;
 
21
}
 
22
 
 
23
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
24
 
 
25
 
 
26
convertToMeters 1;
 
27
 
 
28
vertices        
 
29
(
 
30
    (0  0                       0)
 
31
    (1  0                       0)
 
32
    (1  100             0)
 
33
    (0  100             0)
 
34
    (0  0                       1)
 
35
    (1  0                       1)
 
36
    (1  100             1)
 
37
    (0  100             1)
 
38
);
 
39
 
 
40
blocks          
 
41
(
 
42
    hex (0 1 2 3 4 5 6 7) (1 50 1) simpleGrading (1 1 1)
 
43
);
 
44
 
 
45
edges           
 
46
(
 
47
);
 
48
 
 
49
patches         
 
50
(
 
51
    patch top
 
52
    (
 
53
        (3 2 6 7)
 
54
    )
 
55
    patch bottom 
 
56
    (
 
57
        (0 1 5 4)
 
58
    )
 
59
    patch fixedWalls 
 
60
    (
 
61
        (0 4 7 3)
 
62
        (2 6 5 1)
 
63
    )
 
64
        patch frontAndBack
 
65
        (
 
66
        (0 3 2 1)
 
67
        (4 5 6 7)
 
68
    )
 
69
);
 
70
 
 
71
mergePatchPairs 
 
72
(
 
73
);
 
74
 
 
75
 
 
76
// ************************************************************************* //