Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / motorBike / blockMeshDict
blobbcc34dc6a3842d283b26c21f95a5df94f15e79db
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
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 -4 0)
22     (15 -4 0)
23     (15  4 0)
24     (-5  4 0)
25     (-5 -4 8)
26     (15 -4 8)
27     (15  4 8)
28     (-5  4 8)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (20 8 8) simpleGrading (1 1 1)
36 edges
40 boundary
42     frontAndBack
43     {
44         type patch;
45         faces
46         (
47             (3 7 6 2)
48             (1 5 4 0)
49         );
50     }
52     inlet
53     {
54         type patch;
55         faces
56         (
57             (0 4 7 3)
58         );
59     }
61     outlet
62     {
63         type patch;
64         faces
65         (
66             (2 6 5 1)
67         );
68     }
70     lowerWall
71     {
72         type wall;
73         faces
74         (
75             (0 3 2 1)
76         );
77     }
79     upperWall
80     {
81         type patch;
82         faces
83         (
84             (4 5 6 7)
85         );
86     }
89 // ************************************************************************* //