Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / sonicFoam / laminar / forwardStep / constant / polyMesh / blockMeshDict
blob776e36e62a79cdb275ada9a7a75ef9864e9b7554
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 1;
19 vertices        
21     (0 0 -0.05)
22     (0.6 0 -0.05)
23     (0 0.2 -0.05)
24     (0.6 0.2 -0.05)
25     (3 0.2 -0.05)
26     (0 1 -0.05)
27     (0.6 1 -0.05)
28     (3 1 -0.05)
29     (0 0 0.05)
30     (0.6 0 0.05)
31     (0 0.2 0.05)
32     (0.6 0.2 0.05)
33     (3 0.2 0.05)
34     (0 1 0.05)
35     (0.6 1 0.05)
36     (3 1 0.05)
39 blocks          
41     hex (0 1 3 2 8 9 11 10) (25 10 1) simpleGrading (1 1 1)
42     hex (2 3 6 5 10 11 14 13) (25 40 1) simpleGrading (1 1 1)
43     hex (3 4 7 6 11 12 15 14) (100 40 1) simpleGrading (1 1 1)
46 edges           
50 boundary
52     inlet
53     {
54         type patch;
55         faces
56         (
57             (0 8 10 2)
58             (2 10 13 5)
59         );
60     }
61     outlet
62     {
63         type patch;
64         faces
65         (
66             (4 7 15 12)
67         );
68     }
69     bottom
70     {
71         type symmetryPlane;
72         faces
73         (
74             (0 1 9 8)
75         );
76     }
77     top
78     {
79         type symmetryPlane;
80         faces
81         (
82             (5 13 14 6)
83             (6 14 15 7)
84         );
85     }
86     obstacle
87     {
88         type patch;
89         faces
90         (
91             (1 3 11 9)
92             (3 4 12 11)
93         );
94     }
97 mergePatchPairs
101 // ************************************************************************* //