Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / multiphase / LTSInterFoam / wigleyHull / constant / polyMesh / blockMeshDict
blob2364a51d77e842f6f397cee6515a12d3f628ce88
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.org                      |
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.75 -0.75 -0.5)
22     ( 1.25 -0.75 -0.5)
23     ( 1.25  0.75 -0.5)
24     (-0.75  0.75 -0.5)
25     (-0.75 -0.75  0.0399)
26     ( 1.25 -0.75 0.0399)
27     ( 1.25  0.75  0.0399)
28     (-0.75  0.75  0.0399)
31 blocks
33     hex (0 1 2 3 4 5 6 7) (40 30 10) simpleGrading (1 1 1)
36 edges
40 boundary
42     inlet
43     {
44         type patch;
45         faces
46         (
47             (0 4 7 3)
48         );
49     }
51     outlet
52     {
53         type patch;
54         faces
55         (
56             (2 6 5 1)
57         );
58     }
60     atmosphere
61     {
62         type patch;
63         faces
64         (
65             (4 5 6 7)
66         );
67     }
69     sides
70     {
71         type symmetryPlane;
72         faces
73         (
74             (1 5 4 0)
75             (3 7 6 2)
76             (0 3 2 1)
77         );
78     }
82 // ************************************************************************* //