Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / boundaryFoam / boundaryLaunderSharma / constant / polyMesh / blockMeshDict
blobdffce3f0fe9e1699496b17d49871e90d80c3bf5e
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 0.05;
19 vertices
21     (0 -1 0)
22     (0 0 0)
23     (0 1 0)
24     (0.1 -1 0)
25     (0.1 0 0)
26     (0.1 1 0)
27     (0 -1 0.1)
28     (0 0 0.1)
29     (0 1 0.1)
30     (0.1 -1 0.1)
31     (0.1 0 0.1)
32     (0.1 1 0.1)
35 blocks
37     hex (0 3 4 1 6 9 10 7) (1 40 1) simpleGrading (1 100 1)
38     hex (1 4 5 2 7 10 11 8) (1 40 1) simpleGrading (1 0.01 1)
41 edges
45 boundary
47     lowerWall
48     {
49         type wall;
50         faces
51         (
52             (0 3 9 6)
53         );
54     }
56     upperWall
57     {
58         type wall;
59         faces
60         (
61             (2 8 11 5)
62         );
63     }
65     front
66     {
67         type cyclic;
68         neighbourPatch back;
69         faces
70         (
71             (9 3 4 10)
72             (10 4 5 11)
73         );
74     }
76     back
77     {
78         type cyclic;
79         neighbourPatch front;
80         faces
81         (
82             (0 6 7 1)
83             (1 7 8 2)
84         );
85     }
88 mergePatchPairs
92 // ************************************************************************* //