initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / filter / constant / polyMesh / blockMeshDict
blob9470ef2b393925d94815811d525ac30d62c57aa5
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
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     location    "constant/polyMesh";
14     object      blockMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 1;
20 vertices
22     (0.00  0.25  0)    //  0
23     (1.00  0.25  0)    //  1
24     (1.25  0.00  0)    //  2
25     (2.25  0.00  0)    //  3
26     (2.50  0.25  0)    //  4
27     (4.00  0.25  0)    //  5
29     (4.00  0.75  0)    //  6
30     (2.50  0.75  0)    //  7
31     (2.25  1.00  0)    //  8
32     (1.25  1.00  0)    //  9
33     (1.00  0.75  0)    // 10
34     (0.00  0.75  0)    // 11
37     (0.00  0.25  0.1)  // 12
38     (1.00  0.25  0.1)  // 13
39     (1.25  0.00  0.1)  // 14
40     (2.25  0.00  0.1)  // 15
41     (2.50  0.25  0.1)  // 16
42     (4.00  0.25  0.1)  // 17
44     (4.00  0.75  0.1)  // 18
45     (2.50  0.75  0.1)  // 19
46     (2.25  1.00  0.1)  // 20
47     (1.25  1.00  0.1)  // 21
48     (1.00  0.75  0.1)  // 22
49     (0.00  0.75  0.1)  // 23
52 blocks
54     hex ( 0  1 10 11 12 13 22 23) (20 20 1) simpleGrading (1 1 1)
55     hex ( 1  2  9 10 13 14 21 22) ( 8 20 1) simpleGrading (1 1 1)
56     hex ( 2  3  8  9 14 15 20 21) (20 20 1) simpleGrading (1 1 1)
57     hex ( 3  4  7  8 15 16 19 20) ( 8 20 1) simpleGrading (1 1 1)
58     hex ( 4  5  6  7 16 17 18 19) (30 20 1) simpleGrading (1 1 1)
61 edges
65 patches
67     wall walls
68     (
69         ( 0  1 13 12)
70         ( 1  2 14 13)
71         ( 2  3 15 14)
72         ( 3  4 16 15)
73         ( 4  5 17 16)
74         ( 6  7 19 18)
75         ( 7  8 20 19)
76         ( 8  9 21 20)
77         ( 9 10 22 21)
78         (10 11 23 22)
79     )
81     patch inlet
82     (
83         (11  0 12 23)
84     )
86     patch outlet
87     (
88         ( 5  6 18 17)
89     )
91     cyclic cycLeft
92     ()
94     cyclic cycRight
95     ()
97     empty frontAndBack
98     (
99         ( 0 11 10  1)
100         ( 1 10  9  2)
101         ( 2  9  8  3)
102         ( 3  8  7  4)
103         ( 4  7  6  5)
104         (12 13 22 23)
105         (13 14 21 22)
106         (14 15 20 21)
107         (15 16 19 20)
108         (16 17 18 19)
109     )
113 // ************************************************************************* //