initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / simpleFoam / motorBike / constant / polyMesh / blockMeshDict
blobfa1c78f8b15512ed2224a29757c979ca2c4e3374
1 /*---------------------------------------------------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
14     root            "";
15     case            "";
16     instance        "";
17     local           "";
19     class           dictionary;
20     object          blockMeshDict;
23 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
26 convertToMeters 1;
28 vertices
30     (-5 -4 0)
31     (15 -4 0)
32     (15  4 0)
33     (-5  4 0)
34     (-5 -4 8)
35     (15 -4 8)
36     (15  4 8)
37     (-5  4 8)
40 blocks
42     hex (0 1 2 3 4 5 6 7) (20 8 8) simpleGrading (1 1 1)
45 edges
49 patches
51     patch frontAndBack
52     (
53         (3 7 6 2)
54         (1 5 4 0)
55     )
56     patch inlet
57     (
58         (0 4 7 3)
59     )
60     patch outlet
61     (
62         (2 6 5 1)
63     )
64     wall lowerWall
65     (
66         (0 3 2 1)
67     )
68     patch upperWall
69     (
70         (4 5 6 7)
71     )
74 // ************************************************************************* //