Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / icoUncoupledKinematicParcelFoam / hopper / hopperEmptying / constant / polyMesh / blockMeshDict
blob42fe275d03d8c77f2eaee7373427c115a937007a
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 0.001;
19 vertices
21     (0 77.9423 6.2)
22     (135 0 6.2)
23     (0 -77.9423 6.2)
24     (300 -77.9423 6.2)
25     (165 0 6.2)
26     (300 77.9423 6.2)
27     (300 500 6.2)
28     (0 500 6.2)
29     (0 77.9423 0)
30     (135 0 0)
31     (0 -77.9423 0)
32     (300 -77.9423 0)
33     (165 0 0)
34     (300 77.9423 0)
35     (300 500 0)
36     (0 500 0)
40 blocks
42     hex (8 13 14 15 0 5 6 7) (24 50 1) simpleGrading (1 1 1)
43     hex (9 12 13 8 1 4 5 0) (24 8 1) simpleGrading (1 1 1)
44     hex (10 11 12 9 2 3 4 1) (24 6 1) simpleGrading (1 1 1)
47 boundary
50     walls
51     {
52         type wall;
53         faces
54         (
55             //side walls
56             (0 7 15 8)
57             (1 0 8 9)
58             (13 14 6 5)
59             (12 13 5 4)
60             (2 1 9 10)
61             (11 12 4 3)
62         );
63     }
65     frontAndBack
66     {
67         type wall;
68         faces
69         (
70             //front and back walls
71             (4 5 0 1)
72             (5 6 7 0)
73             (15 14 13 8)
74             (8 13 12 9)
75             (3 4 1 2)
76             (12 11 10 9)
77         );
78     }
80     inlet
81     {
82         type patch;
83         faces
84         (
85             (15 7 6 14)
86         );
87     }
89     outlet
90     {
91         type patch;
92         faces
93         (
94             (3 2 10 11)
95         );
96     }
101 // ************************************************************************* //