Upgrade case file headers
[foam-extend-3.2.git] / tutorials / compressible / rhoPorousSimpleFoam / beaverJoseph / constant / polyMesh / blockMeshDict
blob844b263d47be4e1b5a1be8a83f4991742b4fc4cf
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     (8 0 -0.1)
23     (8 1 -0.1)
24     (0 1 -0.1)
25     (0 0 0.1)
26     (8 0 0.1)
27     (8 1 0.1)
28     (0 1 0.1)
29     (0 2 -0.1)
30     (8 2 -0.1)
31     (0 2 0.1)
32     (8 2 0.1)
35 blocks
37     hex (0 1 2 3 4 5 6 7) poro (100 20 1) simpleGrading (1 1 1)
38     hex (3 2 9 8 7 6 11 10) air (100 20 1) simpleGrading (1 1 1)
41 edges
45 boundary
47     inlet
48     {
49         type patch;
50         faces
51         (
52             (0 4 7 3)
53             (3 7 10 8)
54         );
55     }
57     outlet
58     {
59         type patch;
60         faces
61         (
62             (2 6 5 1)
63             (6 2 9 11)
64         );
65     }
67     upperWall
68     {
69         type wall;
70         faces
71         (
72             (8 9 11 10)
73         );
74     }
76     lowerWall
77     {
78         type wall;
79         faces
80         (
81             (1 5 4 0)
82         );
83     }
85     frontAndBack
86     {
87         type empty;
88         faces
89         (
90             (2 3 8 9)
91             (6 7 10 11)
92             (0 3 2 1)
93             (4 5 6 7)
94         );
95     }
98 mergePatchPairs
102 // ************************************************************************* //