Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / multiphase / interFoam / les / nozzleFlow2D / constant / polyMesh / blockMeshDict
blob8f0c9c3a3a542b675b9ba4b6ffaf94caf980363e
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1e-06;
19 vertices        
21     (0 0 0)
22     (3000 0 0)
23     (0 100 -4.36609429085)
24     (3000 300 -13.0982828726)
25     (0 400 -17.4643771634)
26     (3000 700 -30.562660036)
27     (0 800 -34.9287543268)
28     (3000 1000 -43.6609429085)
29     (0 1600 -69.8575086536)
30     (3000 1600 -69.8575086536)
32     (0 100 4.36609429085)
33     (3000 300 13.0982828726)
34     (0 400 17.4643771634)
35     (3000 700 30.562660036)
36     (0 800 34.9287543268)
37     (3000 1000 43.6609429085)
38     (0 1600 69.8575086536)
39     (3000 1600 69.8575086536)
42 blocks          
44     hex (0 1 3 2 0 1 11 10)
45     (75 30 1)
46     edgeGrading (1 1 1 1 0.1666667 1 1 0.1666667 1 1 1 1)
48     hex (2 3 5 4 10 11 13 12)
49     (75 40 1)
50     edgeGrading (1 1 1 1 20 1 1 20 1 1 1 1)
52     hex (4 5 7 6 12 13 15 14)
53     (75 15 1)
54     simpleGrading (1.0 1.0 1.0)
55     
56     hex (6 7 9 8 14 15 17 16)
57     (75 15 1)
58     simpleGrading (1.0 1.0 1.0)
61 edges           
65 boundary
67     axis
68     {
69         type empty;
70         faces
71         (
72             (0 1 1 0) 
73         );
74     }
76     inlet
77     {
78         type patch;
79         faces
80         (
81             (0 0 10 2)
82         );
83     }
85     wall
86     {
87         type wall;
88         faces
89         (
90             (2 10 12 4)
91             (4 12 14 6)
92             (6 14 16 8)
93         );
94     }
96     atmosphere
97     {
98         type patch;
99         faces
100         (
101             (8 16 17 9)
102             (7 9 17 15)
103             (5 7 15 13)
104             (3 5 13 11)
105             (1 3 11 1)
106         );
107     }
109     front
110     {
111         type wedge;
112         faces
113         (
114             (0 1 11 10)
115             (10 11 13 12)
116             (12 13 15 14)
117             (14 15 17 16)
118         );
119     }
121     back
122     {
123         type wedge;
124         faces
125         (
126             (0 2 3 1)
127             (2 4 5 3)
128             (4 6 7 5)
129             (6 8 9 7)
130         );
131     }
134 mergePatchPairs
138 // ************************************************************************* //