Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / multiphase / interMixingFoam / laminar / damBreak / constant / polyMesh / blockMeshDict
blob0c5008970fcadb3e9b10bd566e07b68604f39c86
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 0.146;
19 vertices        
21     (0 0 0)
22     (2 0 0)
23     (2.16438 0 0)
24     (4 0 0)
25     (0 0.32876 0)
26     (2 0.32876 0)
27     (2.16438 0.32876 0)
28     (4 0.32876 0)
29     (0 4 0)
30     (2 4 0)
31     (2.16438 4 0)
32     (4 4 0)
33     (0 0 0.1)
34     (2 0 0.1)
35     (2.16438 0 0.1)
36     (4 0 0.1)
37     (0 0.32876 0.1)
38     (2 0.32876 0.1)
39     (2.16438 0.32876 0.1)
40     (4 0.32876 0.1)
41     (0 4 0.1)
42     (2 4 0.1)
43     (2.16438 4 0.1)
44     (4 4 0.1)
47 blocks          
49     hex (0 1 5 4 12 13 17 16) (23 8 1) simpleGrading (1 1 1)
50     hex (2 3 7 6 14 15 19 18) (19 8 1) simpleGrading (1 1 1)
51     hex (4 5 9 8 16 17 21 20) (23 42 1) simpleGrading (1 1 1)
52     hex (5 6 10 9 17 18 22 21) (4 42 1) simpleGrading (1 1 1)
53     hex (6 7 11 10 18 19 23 22) (19 42 1) simpleGrading (1 1 1)
56 edges           
60 boundary
62     leftWall
63     {
64         type wall;
65         faces
66         (
67             (0 12 16 4)
68             (4 16 20 8)
69         );
70     }
71     rightWall
72     {
73         type wall;
74         faces
75         (
76             (7 19 15 3)
77             (11 23 19 7)
78         );
79     }
80     lowerWall
81     {
82         type wall;
83         faces
84         (
85             (0 1 13 12)
86             (1 5 17 13)
87             (5 6 18 17)
88             (2 14 18 6)
89             (2 3 15 14)
90         );
91     }
92     atmosphere
93     {
94         type patch;
95         faces
96         (
97             (8 20 21 9)
98             (9 21 22 10)
99             (10 22 23 11)
100         );
101     }
104 mergePatchPairs
108 // ************************************************************************* //