Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / sonicLiquidFoam / decompressionTank / constant / polyMesh / blockMeshDict
blob2346d1af2701eec8dc96412271e75a031f6e87f4
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.1)
22     (1 0 -0.1)
23     (0 0.5 -0.1)
24     (1 0.5 -0.1)
25     (1.5 0.5 -0.1)
26     (0 0.6 -0.1)
27     (1 0.6 -0.1)
28     (1.5 0.6 -0.1)
29     (0 3 -0.1)
30     (1 3 -0.1)
31     (0 0 0.1)
32     (1 0 0.1)
33     (0 0.5 0.1)
34     (1 0.5 0.1)
35     (1.5 0.5 0.1)
36     (0 0.6 0.1)
37     (1 0.6 0.1)
38     (1.5 0.6 0.1)
39     (0 3 0.1)
40     (1 3 0.1)
43 blocks
45     hex (0 1 3 2 10 11 13 12) (30 20 1) simpleGrading (1 1 1)
46     hex (2 3 6 5 12 13 16 15) (30 5 1) simpleGrading (1 1 1)
47     hex (3 4 7 6 13 14 17 16) (25 5 1) simpleGrading (1 1 1)
48     hex (5 6 9 8 15 16 19 18) (30 95 1) simpleGrading (1 1 1)
51 edges
55 boundary
57     outerWall
58     {
59         type wall;
60         faces
61         (
62             (0 1 11 10)
63             (1 3 13 11)
64             (3 4 14 13)
65             (7 6 16 17)
66             (6 9 19 16)
67             (9 8 18 19)
68         );
69     }
70     axis
71     {
72         type symmetryPlane;
73         faces
74         (
75             (0 10 12 2)
76             (2 12 15 5)
77             (5 15 18 8)
78         );
79     }
80     nozzle
81     {
82         type patch;
83         faces
84         (
85             (4 7 17 14)
86         );
87     }
88     back
89     {
90         type empty;
91         faces
92         (
93             (0 2 3 1)
94             (2 5 6 3)
95             (3 6 7 4)
96             (5 8 9 6)
97         );
98     }
99     front
100     {
101         type empty;
102         faces
103         (
104             (10 11 13 12)
105             (12 13 16 15)
106             (13 14 17 16)
107             (15 16 19 18)
108         );
109     }
112 mergePatchPairs
116 // ************************************************************************* //