Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / windSimpleFoam / turbineSiting / constant / polyMesh / blockMeshDict
blob4d99ef4a7424f85c4d417b11de201ab25b50d1a8
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     ( 581321  4.78537e+06   930)
22     ( 582290  4.78537e+06   930)
23     ( 582290  4.78624e+06   930)
24     ( 581321  4.78624e+06   930)
25     ( 581321  4.78537e+06   1500)
26     ( 582290  4.78537e+06   1500)
27     ( 582290  4.78624e+06   1500)
28     ( 581321  4.78624e+06   1500)
32 blocks
34     hex (0 1 2 3 4 5 6 7) (30 30 20) simpleGrading (1 1 1)
37 edges
41 boundary
43     outlet
44     {
45         type patch;
46         faces
47         (
48             (2 6 5 1)
49         );
50     }
51     sides
52     {
53         type patch;
54         faces
55         (
56             (1 5 4 0)
57             (3 7 6 2)
58         );
59     }
60     inlet
61     {
62         type patch;
63         faces
64         (
65             (0 4 7 3)
66         );
67     }
68     ground
69     {
70         type wall;
71         faces
72         (
73             (0 3 2 1)
74         );
75     }
76     top
77     {
78         type patch;
79         faces
80         (
81             (4 5 6 7)
82         );
83     }
86 mergePatchPairs
91 // ************************************************************************* //