Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / sonicFoam / laminar / shockTube / constant / polyMesh / blockMeshDict
blob034af75e7098bf23498d45380639440e8553639d
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     (-5 -1 -1)
22     (5 -1 -1)
23     (5 1 -1)
24     (-5 1 -1)
25     (-5 -1 1)
26     (5 -1 1)
27     (5 1 1)
28     (-5 1 1)
31 blocks          
33     hex (0 1 2 3 4 5 6 7) (1000 1 1) simpleGrading (1 1 1)
36 edges           
40 boundary
42     sides
43     {
44         type patch;
45         faces
46         (
47             (1 2 6 5)
48             (0 4 7 3)
49         );
50     }
51     empty
52     {
53         type empty;
54         faces
55         (
56             (0 1 5 4)
57             (5 6 7 4)
58             (3 7 6 2)
59             (0 3 2 1)
60         );
61     }
64 mergePatchPairs
68 // ************************************************************************* //