Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / multiphase / twoPhaseEulerFoam / bed2 / constant / polyMesh / blockMeshDict
blob64b2d653333f7bc65b653203c9f5d3f92503bb32
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)
22     (0.15 0 -0.01)
23     (0.15 1 -0.01)
24     (0 1 -0.01)
25     (0 0 0.01)
26     (0.15 0 0.01)
27     (0.15 1 0.01)
28     (0 1 0.01)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (30 200 1) simpleGrading (1 1 1)
36 edges
40 boundary
42     inlet
43     {
44         type patch;
45         faces
46         (
47             (1 5 4 0)
48         );
49     }
51     outlet
52     {
53         type patch;
54         faces
55         (
56             (3 7 6 2)
57         );
58     }
60     walls
61     {
62         type wall;
63         faces
64         (
65             (0 4 7 3)
66             (2 6 5 1)
67         );
68     }
70     frontAndBackPlanes
71     {
72         type empty;
73         faces
74         (
75             (0 3 2 1)
76             (4 5 6 7)
77         );
78     }
81 mergePatchPairs
85 // ************************************************************************* //