Better bounding on topo change
[foam-extend-3.2.git] / tutorials / multiSolver / multiSolverDemo / teeFitting2d / constant / polyMesh / blockMeshDict
blob9445f5e501f00622a8bf4c8849941da4ccdc4650
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)
22     (1.5 0 0)
23     (1.5 1 0)
24     (0 1 0)
25     (2.5 0 0)
26     (4 0 0)
27     (4 1 0)
28     (2.5 1 0)
29     (1.5 2.5 0)
30     (2.5 2.5 0)
32     (0 0 0.1)
33     (1.5 0 0.1)
34     (1.5 1 0.1)
35     (0 1 0.1)
36     (2.5 0 0.1)
37     (4 0 0.1)
38     (4 1 0.1)
39     (2.5 1 0.1)
40     (1.5 2.5 0.1)
41     (2.5 2.5 0.1)
45 blocks
47     hex (0 1 2 3 10 11 12 13) (20 20 1) simpleGrading (1 1 1)
48     hex (1 4 7 2 11 14 17 12) (20 20 1) simpleGrading (1 1 1)
49     hex (4 5 6 7 14 15 16 17) (20 20 1) simpleGrading (1 1 1)
50     hex (2 7 9 8 12 17 19 18) (20 20 1) simpleGrading (1 1 1)
53 edges
57 boundary
59     steetWalls
60     {
61         type wall;
62         faces
63         (
64             (1 0 10 11)
65             (4 1 11 14)
66             (5 4 14 15)
67             (2 3 13 12)
68             (6 7 17 16)
69         );
70     }
71     branchWalls
72     {
73         type wall;
74         faces
75         (
76             (8 2 12 18)
77             (7 9 19 17)
78         );
79     }
80     westStreet
81     {
82         type patch;
83         faces
84         (
85             (3 0 10 13)
86         );
87     }
88     eastStreet
89     {
90         type patch;
91         faces
92         (
93             (5 6 16 15)
94         );
95     }
96     northBranch
97     {
98         type patch;
99         faces
100         (
101             (9 8 18 19)
102         );
103     }
106 mergePatchPairs
110 // ************************************************************************* //