Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / multiphase / twoPhaseEulerFoam / bed2 / constant / polyMesh / blockMeshDict
blob58d5458be7c4440d97cb7c01976bd4b0a7a00a37
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     (0 0 -0.01)
22     (0.15 0 -0.01)
23     (0.15 1 -0.01)
24     (0 1 -0.01)
25     (0 0 0.01)
26     (0.15 0 0.01)
27     (0.15 1 0.01)
28     (0 1 0.01)
31 blocks          
33     hex (0 1 2 3 4 5 6 7) (30 200 1) simpleGrading (1 1 1)
36 edges           
40 boundary
42     inlet
43     {
44         type patch;
45         faces
46         (
47             (1 5 4 0)
48         );
49     }
50     outlet
51     {
52         type patch;
53         faces
54         (
55             (3 7 6 2)
56         );
57     }
58     walls
59     {
60         type wall;
61         faces
62         (
63             (0 4 7 3)
64             (2 6 5 1)
65         );
66     }
67     frontAndBackPlanes
68     {
69         type empty;
70         faces
71         (
72             (0 3 2 1)
73             (4 5 6 7)
74         );
75     }
78 mergePatchPairs
82 // ************************************************************************* //