Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / icoFoam / cavityClipped / constant / polyMesh / blockMeshDict
blob2590fdd0310c4b1853b5e36cc3668885eb5ea282
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.1;
19 vertices        
21     (0 0 0)
22     (0.6 0 0)
23     (0 0.4 0)
24     (0.6 0.4 0)
25     (1 0.4 0)
26     (0 1 0)
27     (0.6 1 0)
28     (1 1 0)
30     (0 0 0.1)
31     (0.6 0 0.1)
32     (0 0.4 0.1)
33     (0.6 0.4 0.1)
34     (1 0.4 0.1)
35     (0 1 0.1)
36     (0.6 1 0.1)
37     (1 1 0.1)
41 blocks          
43     hex (0 1 3 2 8 9 11 10) (12 8 1) simpleGrading (1 1 1)
44     hex (2 3 6 5 10 11 14 13) (12 12 1) simpleGrading (1 1 1)
45     hex (3 4 7 6 11 12 15 14) (8 12 1) simpleGrading (1 1 1)
48 edges           
52 boundary
54     lid
55     {
56         type wall;
57         faces
58         (
59             (5 13 14 6)
60             (6 14 15 7)
61         );
62     }
63     fixedWalls
64     {
65         type wall;
66         faces
67         (
68             (0 8 10 2)
69             (2 10 13 5)
70             (7 15 12 4)
71             (4 12 11 3)
72             (3 11 9 1)
73             (1 9 8 0) 
74         );
75     }
76     frontAndBack
77     {
78         type empty;
79         faces
80         (
81             (0 2 3 1)
82             (2 5 6 3)
83             (3 6 7 4)
84             (8 9 11 10)
85             (10 11 14 13)
86             (11 12 15 14)
87         );
88     }
91 mergePatchPairs
95 // ************************************************************************* //