Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoCentralFoam / LadenburgJet60psi / constant / polyMesh / blockMeshDict
blob5bc67b6e6f0596a7b07b127006657908b16061d3
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.001;
19 vertices
21     ( 0 0 0)
22     (30 0 0)
23     ( 0  5 -0.008726655121)
24     (30  5 -0.008726655121)
25     ( 0 10 -0.017453310242)
26     (30 10 -0.017453310242)
27     ( 0  5  0.008726655121)
28     (30  5  0.008726655121)
29     ( 0 10  0.017453310242)
30     (30 10  0.017453310242)
33 blocks
35     hex (0 1 3 2 0 1 7 6) (60 10  1) simpleGrading (1 1 1)
36     hex (2 3 5 4 6 7 9 8) (60 10  1) simpleGrading (1 1 1)
39 edges
43 boundary
45     inlet
46     {
47         type patch;
48         faces
49         (
50             (0 2 6 0)
51         );
52     }
54     outlet
55     {
56         type patch;
57         faces
58         (
59             (1 3 7 1)
60             (3 5 9 7)
61         );
62     }
64     freestreamInlet
65     {
66         type patch;
67         faces
68         (
69             (2 4 8 6)
70         );
71     }
73     freestream
74     {
75         type patch;
76         faces
77         (
78             (4 8 9 5)
79         );
80     }
82     wedge1
83     {
84         type wedge;
85         faces
86         (
87             (0 2 3 1)
88             (2 4 5 3)
89         );
90     }
92     wedge2
93     {
94         type wedge;
95         faces
96         (
97             (0 1 7 6)
98             (6 7 9 8)
99         );
100     }
103 mergePatchPairs
107 // ************************************************************************* //