Upgrade case file headers
[foam-extend-3.2.git] / tutorials / lagrangian / coalChemistryFoam / simplifiedSiwek / constant / polyMesh / blockMeshDict
blobd52f82c6bdfb38d4077f0b9971937ef4d8d477c9
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     location    "constant/polyMesh";
14     object      blockMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 1.0;
20 vertices
22     (0     0     0)
23     (0.05  0     0)
24     (0.05  0.5   0)
25     (0     0.5   0)
26     (0     0     0.1)
27     (0.05  0     0.1)
28     (0.05  0.5   0.1)
29     (0     0.5   0.1)
30     (0.5   0     0)
31     (0.5   0.5   0)
32     (0.5   0     0.1)
33     (0.5   0.5   0.1)
34     (0.05  1     0)
35     (0     1     0)
36     (0.05  1     0.1)
37     (0     1     0.1)
40 blocks
42     hex (0 1 2 3 4 5 6 7)     (5 50 1) simpleGrading (1 1 1)
43     hex (1 8 9 2 5 10 11 6)   (40 50 1) simpleGrading (1 1 1)
44     hex (3 2 12 13 7 6 14 15) (5 50 1) simpleGrading (1 1 1)
47 edges
51 boundary
53     top
54     {
55         type wall;
56         faces
57         (
58             (13 15 14 12)
59         );
60     }
61     bottom
62     {
63         type wall;
64         faces
65         (
66             (0 1 5 4)
67             (1 8 10 5)
68         );
69     }
70     walls
71     {
72         type wall;
73         faces
74         (
75             (8 9 11 10)
76             (9 2 6 11)
77             (2 12 14 6)
78         );
79     }
80     symmetry
81     {
82         type symmetryPlane;
83         faces
84         (
85             (4 7 3 0)
86             (7 15 13 3)
87         );
88     }
89     frontAndBack
90     {
91         type empty;
92         faces
93         (
94             (0 3 2 1)
95             (3 13 12 2)
96             (1 2 9 8)
97             (5 6 7 4)
98             (6 14 15 7)
99             (10 11 6 5)
100         );
101     }
104 mergePatchPairs
108 // ************************************************************************* //