Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / chtMultiRegionFoam / snappyMultiRegionHeater / constant / polyMesh / blockMeshDict
blobf8154b9273610a68bf0890722366fffd1e1a7dd8
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1;
19 vertices
21     (-0.1 -0.04  -0.05)
22     ( 0.1 -0.04  -0.05)
23     ( 0.1  0.04  -0.05)
24     (-0.1  0.04  -0.05)
25     (-0.1 -0.04   0.05)
26     ( 0.1 -0.04   0.05)
27     ( 0.1  0.04   0.05)
28     (-0.1  0.04   0.05)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (30 10 10) simpleGrading (1 1 1)
36 edges
40 boundary
42     maxY
43     {
44         type wall;
45         faces
46         (
47             (3 7 6 2)
48         );
49     }
50     minX
51     {
52         type patch;
53         faces
54         (
55             (0 4 7 3)
56         );
57     }
58     maxX
59     {
60         type patch;
61         faces
62         (
63             (2 6 5 1)
64         );
65     }
66     minY
67     {
68         type wall;
69         faces
70         (
71             (1 5 4 0)
72         );
73     }
74     minZ
75     {
76         type wall;
77         faces
78         (
79             (0 3 2 1)
80         );
81     }
82     maxZ
83     {
84         type wall;
85         faces
86         (
87             (4 5 6 7)
88         );
89     }
92 mergePatchPairs
96 // ************************************************************************* //