Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / motorBike / constant / polyMesh / blockMeshDict
blobcccd7e2b29e29d464a91baf93f58a3bef3b351d3
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;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 convertToMeters 1;
20 vertices
22     (-5 -4 0)
23     (15 -4 0)
24     (15  4 0)
25     (-5  4 0)
26     (-5 -4 8)
27     (15 -4 8)
28     (15  4 8)
29     (-5  4 8)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (20 8 8) simpleGrading (1 1 1)
37 edges
41 boundary
43     frontAndBack
44     {
45         type patch;
46         faces
47         (
48             (3 7 6 2)
49             (1 5 4 0)
50         );
51     }
52     inlet
53     {
54         type patch;
55         faces
56         (
57             (0 4 7 3)
58         );
59     }
60     outlet
61     {
62         type patch;
63         faces
64         (
65             (2 6 5 1)
66         );
67     }
68     lowerWall
69     {
70         type wall;
71         faces
72         (
73             (0 3 2 1)
74         );
75     }
76     upperWall
77     {
78         type patch;
79         faces
80         (
81             (4 5 6 7)
82         );
83     }
86 // ************************************************************************* //