Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantBoussinesqSimpleFoam / iglooWithFridges / constant / polyMesh / blockMeshDict
blobd2a9d3c3104ff23ad27a00e9e03fab821d761119
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 1;
20 vertices
22     (-2.03 -2.0  0)
23     ( 8.03 -2.0  0)
24     ( 8.03  8.0  0)
25     (-2.03  8.0  0)
26     (-2.03 -2.0  5)
27     ( 8.03 -2.0  5)
28     ( 8.03  8.0  5)
29     (-2.03  8.0  5)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (20 20 20) simpleGrading (1 1 1)
37 edges
41 boundary
43     maxY
44     {
45         type empty;
46         faces
47         (
48             (3 7 6 2)
49         );
50     }
52     minX
53     {
54         type empty;
55         faces
56         (
57             (0 4 7 3)
58         );
59     }
61     maxX
62     {
63         type empty;
64         faces
65         (
66             (2 6 5 1)
67         );
68     }
70     minY
71     {
72         type empty;
73         faces
74         (
75             (1 5 4 0)
76         );
77     }
79     ground
80     {
81         type wall;
82         faces
83         (
84             (0 3 2 1)
85         );
86     }
88     maxZ
89     {
90         type empty;
91         faces
92         (
93             (4 5 6 7)
94         );
95     }
98 mergePatchPairs
102 // ************************************************************************* //