initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / twoPhaseEulerFoam / bed / constant / polyMesh / blockMeshDict
blob46813128f98b90b02f725448f9bfbde55811c653
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      blockMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 convertToMeters 1.0;
19 vertices
22     (0      0.0     0)
23     (0.5    0.0     0)
24     (0.5    0.0     2.50)
25     (0      0.0     2.50)
26     (0      0.1     0)
27     (0.5    0.1     0)
28     (0.5    0.1     2.50)
29     (0      0.1     2.50)
33 //          7 ---------- 6
34 //         /|           /|
35 //        / |          / |   z
36 //       3 ---------- 2  |   ^ 
37 //       |  |         |  |   |   y
38 //       |  4 --------|- 5   |  /
39 //       | /          | /    | /
40 //       |/           |/     |/
41 //       0 ---------- 1      -----> x
42 blocks
44     hex (0 1 5 4 3 2 6 7) (25 1 125) simpleGrading (1 1 1)
47 edges           
51 patches
53     patch top
54     (
55         (3 2 6 7)
56     )
58     patch bottom
59     (
60         (1 0 4 5)
61     )
63     wall walls
64     (
65         (2 1 5 6)
66         (0 3 7 4)
67     )
69     empty frontBack
70     (
71         (0 1 2 3)
72         (7 6 5 4)
73     )
76 // ************************************************************************* //