Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / combustion / reactingFoam / ras / counterFlowFlame2D / constant / polyMesh / blockMeshDict
blob79201f1a6b84f15189baeebc7a7f5132e28d5f2e
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.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.0  -0.01 -0.0001)
22     (0.02 -0.01 -0.0001)
23     (0.02  0.01 -0.0001)
24     (0.0   0.01 -0.0001)
25     (0.0  -0.01  0.0001)
26     (0.02 -0.01  0.0001)
27     (0.02  0.01  0.0001)
28     (0.0   0.01  0.0001)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (100 40 1) simpleGrading (1 1 1)
36 edges
40 boundary
42     fuel
43     {
44         type patch;
45         faces
46         (
47             (0 4 7 3)
48         );
49     }
50     air
51     {
52         type patch;
53         faces
54         (
55             (1 2 6 5)
56         );
57     }
58     outlet
59     {
60         type patch;
61         faces
62         (
63             (0 1 5 4)
64             (7 6 2 3)
65         );
66     }
67     frontAndBack
68     {
69         type empty;
70         faces
71         (
72             (4 5 6 7)
73             (0 3 2 1)
74         );
75     }
78 mergePatchPairs
82 // ************************************************************************* //