Upgrade case file headers
[foam-extend-3.2.git] / tutorials / multiphase / settlingFoam / dahl / constant / polyMesh / blockMeshDict
blob070911b88af48d4880593ae794fb15ef20785c7a
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.1)
22     (8.65 0 -0.1)
23     (8.65 0.1 -0.1)
24     (0 0.1 -0.1)
25     (8.65 1 -0.1)
26     (0 1 -0.1)
27     (0 0 0.1)
28     (8.65 0 0.1)
29     (8.65 0.1 0.1)
30     (0 0.1 0.1)
31     (8.65 1 0.1)
32     (0 1 0.1)
35 blocks
37     hex (0 1 2 3 6 7 8 9) (200 4 1) simpleGrading (1 1 1)
38     hex (3 2 4 5 9 8 10 11) (200 36 1) simpleGrading (1 1 1)
41 edges
45 boundary
47     inlet
48     {
49         type patch;
50         faces
51         (
52             (0 6 9 3)
53             (3 9 11 5)
54         );
55     }
57     outlet
58     {
59         type patch;
60         faces
61         (
62             (1 2 8 7)
63         );
64     }
66     bottomWall
67     {
68         type patch;
69         faces
70         (
71             (0 1 7 6)
72         );
73     }
75     endWall
76     {
77         type wall;
78         faces
79         (
80             (2 4 10 8)
81         );
82     }
84     top
85     {
86         type symmetryPlane;
87         faces
88         (
89             (5 11 10 4)
90         );
91     }
93     frontAndBack
94     {
95         type empty;
96         faces
97         (
98             (0 3 2 1)
99             (6 7 8 9)
100             (3 5 4 2)
101             (9 8 10 11)
102         );
103     }
106 mergePatchPairs
110 // ************************************************************************* //