ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / combustion / fireFoam / les / smallPoolFire3D / constant / polyMesh / blockMeshDict
blob8f7b9b4f75738877a224d513cb96c1e11a250e52
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;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1;
19 vertices
21     (-0.5 0   -0.5)
22     ( 0.5 0   -0.5)
23     ( 0.5 1.0 -0.5)
24     (-0.5 1.0 -0.5)
25     (-0.5 0    0.5)
26     ( 0.5 0    0.5)
27     ( 0.5 1.0  0.5)
28     (-0.5 1.0  0.5)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (60 60 60) 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             (0 4 7 3)
65             (0 1 2 3)
66             (1 5 6 2)
67             (4 5 6 7)
68         );
69     }
72 mergePatchPairs
76 // ************************************************************************* //