Upgrade case file headers
[foam-extend-3.2.git] / tutorials / surfaceTracking / interTrackFoam / tank3D / constant / polyMesh / blockMeshDict
blob9438d80d6f00003ff12741dfedb477a45913d5b9
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     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 0.1;
19 vertices
21     (0 0 0)
22     (0.15 0 0)
23     (0.4 0 0)
24     (0.5 0 0)
26     (0 0.15 0)
27     (0.15 0.15 0)
28     (0.4 0.15 0)
29     (0.5 0.15 0)
31     (0 0.4 0)
32     (0.15 0.4 0)
33     (0.4 0.4 0)
34     (0.5 0.4 0)
36     (0 0.5 0)
37     (0.15 0.5 0)
38     (0.4 0.5 0)
39     (0.5 0.5 0)
41     //
42     (0 0 0.3)
43     (0.15 0 0.3)
44     (0.4 0 0.3)
45     (0.5 0 0.3)
47     (0 0.15 0.3)
48     (0.15 0.15 0.3)
49     (0.4 0.15 0.3)
50     (0.5 0.15 0.3)
52     (0 0.4 0.3)
53     (0.15 0.4 0.3)
54     (0.4 0.4 0.3)
55     (0.5 0.4 0.3)
57     (0 0.5 0.3)
58     (0.15 0.5 0.3)
59     (0.4 0.5 0.3)
60     (0.5 0.5 0.3)
63 blocks
65     hex (0 1 5 4 16 17 21 20) (12 12 24) simpleGrading (1 1 0.5)
66     hex (1 2 6 5 17 18 22 21) (20 12 24) simpleGrading (1 1 0.5)
67     hex (2 3 7 6 18 19 23 22) (8 12 24) simpleGrading (1 1 0.5)
68     hex (4 5 9 8 20 21 25 24) (12 20 24) simpleGrading (1 1 0.5)
69     hex (5 6 10 9 21 22 26 25) (20 20 24) simpleGrading (1 1 0.5)
70     hex (6 7 11 10 22 23 27 26) (8 20 24) simpleGrading (1 1 0.5)
71     hex (8 9 13 12 24 25 29 28) (12 8 24) simpleGrading (1 1 0.5)
72     hex (9 10 14 13 25 26 30 29) (20 8 24) simpleGrading (1 1 0.5)
73     hex (10 11 15 14 26 27 31 30) (8 8 24) simpleGrading (1 1 0.5)
76 edges
80 boundary
82     freeSurface
83     {
84         type patch;
85         faces
86         (
87             (16 17 21 20)
88             (17 18 22 21)
89             (18 19 23 22)
90             (20 21 25 24)
91             (21 22 26 25)
92             (22 23 27 26)
93             (24 25 29 28)
94             (25 26 30 29)
95             (26 27 31 30)
96         );
97     }
99     inlet
100     {
101         type patch;
102         faces
103         (
104             (4 5 1 0)
105         );
106     }
108     outlet
109     {
110         type patch;
111         faces
112         (
113             (14 15 11 10)
114         );
115     }
117     bottom
118     {
119         type wall;
120         faces
121         (
122             (5 6 2 1)
123             (6 7 3 2)
124             (8 9 5 4)
125             (9 10 6 5)
126             (10 11 7 6)
127             (12 13 9 8)
128             (13 14 10 9)
129         );
130     }
132     side-1
133     {
134         type wall;
135         faces
136         (
137             (3 7 23 19)
138             (7 11 27 23)
139             (11 15 31 27)
140         );
141     }
143     side-2
144     {
145         type wall;
146         faces
147         (
148             (15 14 30 31)
149             (14 13 29 30)
150             (13 12 28 29)
151         );
152     }
154     symm-1
155     {
156         type symmetryPlane;
157         faces
158         (
159             (0 1 17 16)
160             (1 2 18 17)
161             (2 3 19 18)
162         );
163     }
165     symm-2
166     {
167         type symmetryPlane;
168         faces
169         (
170             (12 8 24 28)
171             (8 4 20 24)
172             (4 0 16 20)
173         );
174     }
177 mergePatchPairs
181 // ************************************************************************* //