Upgrade case file headers
[foam-extend-3.2.git] / tutorials / incompressible / channelFoam / channel395 / constant / polyMesh / blockMeshDict
blob9cb0c314e25780b1b53e3d3c3ddac29f555adc55
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)
22     (4 0 0)
23     (0 1 0)
24     (4 1 0)
25     (0 2 0)
26     (4 2 0)
27     (0 0 2)
28     (4 0 2)
29     (0 1 2)
30     (4 1 2)
31     (0 2 2)
32     (4 2 2)
35 blocks
37     hex (0 1 3 2 6 7 9 8) (40 25 30) simpleGrading (1 10.7028 1)
38     hex (2 3 5 4 8 9 11 10) (40 25 30) simpleGrading (1 0.0984 1)
41 edges
45 boundary
47     bottomWall
48     {
49         type wall;
50         faces
51         (
52             (0 1 7 6)
53         );
54     }
56     topWall
57     {
58         type wall;
59         faces
60         (
61             (4 10 11 5)
62         );
63     }
65     sides1
66     {
67         type cyclic;
68         faces
69         (
70             (0 2 3 1)
71             (6 7 9 8)
72         );
73     }
75     sides2
76     {
77         type cyclic;
78         faces
79         (
80             (2 4 5 3)
81             (8 9 11 10)
82         );
83     }
85     inout1
86     {
87         type cyclic;
88         faces
89         (
90             (1 3 9 7)
91             (0 6 8 2)
92         );
93     }
95     inout2
96     {
97         type cyclic;
98         faces
99         (
100             (3 5 11 9)
101             (2 8 10 4)
102         );
103     }
106 mergePatchPairs
110 // ************************************************************************* //