Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / porousSimpleFoam / porousPlug / constant / polyMesh / blockMeshDict
blob33a7369fa30b1a26b1b319de3bde2e16ed6be02f
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 0.1;
19 vertices
21     (0 0 -0.1)
22     (3 0 -0.1)
23     (3 1 -0.1)
24     (0 1 -0.1)
25     (0 0 0.1)
26     (3 0 0.1)
27     (3 1 0.1)
28     (0 1 0.1)   // 7
29     (5 0 -0.1)
30     (5 1 -0.1)
31     (5 0 0.1)   // 10
32     (5 1 0.1)
33     (8 0 -0.1)
34     (8 1 -0.1)
35     (8 0 0.1)
36     (8 1 0.1)  //15
39 blocks
41     hex (0 1 2 3 4 5 6 7) air (60 20 1) simpleGrading (1 1 1)
42     hex (1 8 9 2 5 10 11 6) poro (40 20 1) simpleGrading (1 1 1)
43     hex (8 12 13 9 10 14 15 11) air (60 20 1) simpleGrading (1 1 1)
46 edges
50 boundary
52     inlet
53     {
54         type patch;
55         faces
56         (
57             (0 4 7 3)
58         );
59     }
61     outlet
62     {
63         type patch;
64         faces
65         (
66             (12 14 15 13)
67         );
68     }
70     upperWall
71     {
72         type wall;
73         faces
74         (
75             (2 3 7 6)
76             (2 6 11 9)
77             (9 11 15 13)
78         );
79     }
81     lowerWall
82     {
83         type wall;
84         faces
85         (
86             (1 5 4 0)
87             (1 5 10 8)
88             (10 8 12 14)
89         );
90     }
93 mergePatchPairs
97 // ************************************************************************* //