Upgrade case file headers
[foam-extend-3.2.git] / tutorials / incompressible / boundaryFoam / boundaryTwoWallsFlowSolution / constant / polyMesh / blockMeshDict
blob7f73e283fc4dd141cf29b7995f67676028d1ed8e
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     (0     7 0)
23     (0     15 0)
24     (0.1   0 0)
25     (0.1   7 0)
26     (0.1   15 0)
27     (0     0 0.1)
28     (0     7 0.1)
29     (0     15 0.1)
30     (0.1   0 0.1)
31     (0.1   7 0.1)
32     (0.1   15 0.1)
35 blocks
37     hex (0 3 4 1 6 9 10 7) (1 40 1) simpleGrading (1 1 1)
38     hex (1 4 5 2 7 10 11 8) (1 40 1) simpleGrading (1 1 1)
41 edges
45 boundary
47     lowerWall
48     {
49         type wall;
50         faces
51         (
52             (0 3 9 6)
53         );
54     }
56     upperWall
57     {
58         type wall;
59         faces
60         (
61             (2 8 11 5)
62         );
63     }
65     flow
66     {
67                 type cyclic;
68                 faces
69                 (
71             (0 6 7 1)
72             (1 7 8 2)
74             (3 4 10 9)
75             (4 5 11 10)
76         );
77     }
80 mergePatchPairs
84 // ************************************************************************* //