ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire2D / constant / polyMesh / blockMeshDict
blob58c8372eb1afaa9adc2b17772aae98f2ef702adc
1 /*---------------------------------------------------------------------------*\
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;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1;
19 vertices
21     (-0.5 0 -0.01)
22     ( 0.5 0 -0.01)
23     ( 0.5 1 -0.01)
24     (-0.5 1 -0.01)
25     (-0.5 0  0.01)
26     ( 0.5 0  0.01)
27     ( 0.5 1  0.01)
28     (-0.5 1  0.01)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (150 150 1) simpleGrading (1 1 1)
37 edges
41 boundary
43     base
44     {
45         type patch;
46         faces
47         (
48             (0 1 5 4)
49         );
50     }
51     outlet
52     {
53         type patch;
54         faces
55         (
56             (3 2 6 7)
57         );
58     }
59     sides
60     {
61         type patch;
62         faces
63         (
64             (1 5 6 2)
65             (0 4 7 3)
66         );
67     }
68     frontAndBack
69     {
70         type empty;
71         faces
72         (
73             (0 1 2 3)
74             (4 5 6 7)
75         );
76     }
79 mergePatchPairs
83 // ************************************************************************* //