Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / discreteMethods / molecularDynamics / mdFoam / nanoNozzle / constant / polyMesh / blockMeshDict
blobfeb9cc18cfe465a42351d42e65bc3f5ef1051cda
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 3.2e-9;
19 vertices
21     (0 0 0)
22     (3.5 0 0)
23     (3.5 3 0)
24     (0 3 0)
25     (0 0 3)
26     (3.5 0 3)
27     (3.5 3 3)
28     (0 3 3)
29     (7.5 1 0.5)
30     (7.5 2 0.5)
31     (7.5 1 2.5)
32     (7.5 2 2.5)
33     (10 1 0.5)
34     (10 2 0.5)
35     (10 1 2.5)
36     (10 2 2.5)
37     (11.5 0.5 -0.5)
38     (11.5 2.5 -0.5)
39     (11.5 0.5 3.5)
40     (11.5 2.5 3.5)
41     (16 0.5 -0.5)
42     (16 2.5 -0.5)
43     (16 0.5 3.5)
44     (16 2.5 3.5)
47 blocks
49     hex (0 1 2 3 4 5 6 7) sectionA (20 16 16) simpleGrading (1 1 1)
50     hex (1 8 9 2 5 10 11 6) sectionA (20 16 16) simpleGrading (1 1 1)
51     hex (8 12 13 9 10 14 15 11) sectionB (29 16 16) simpleGrading (1 1 1)
52     hex (12 16 17 13 14 18 19 15) sectionC (17 16 16) simpleGrading (1 1 1)
53     hex (16 20 21 17 18 22 23 19) sectionC (20 16 16) simpleGrading (1 1 1)
56 edges
57 ();
59 boundary
61     sectionAEnd
62     {
63         type patch;
64         faces
65         (
66             (0 4 7 3)
67         );
68     }
70     sectionCEnd
71     {
72         type wall;
73         faces
74         (
75             (20 21 23 22)
76         );
77     }
79     front
80     {
81         type wall;
82         faces
83         (
84             (0 1 5 4)
85             (1 8 10 5)
86             (8 12 14 10)
87             (12 16 18 14)
88             (16 20 22 18)
89         );
90     }
92     back
93     {
94         type wall;
95         faces
96         (
97             (2 3 7 6)
98             (2 6 11 9)
99             (9 11 15 13)
100             (13 15 19 17)
101             (17 19 23 21)
102         );
103     }
105     top
106     {
107         type wall;
108         faces
109         (
110             (4 5 6 7)
111             (5 10 11 6)
112             (10 14 15 11)
113             (14 18 19 15)
114             (18 22 23 19)
115         );
116     }
118     bottom
119     {
120         type wall;
121         faces
122         (
123             (0 3 2 1)
124             (1 2 9 8)
125             (8 9 13 12)
126             (12 13 17 16)
127             (16 17 21 20)
128         );
129     }
132 mergePatchPairs
136 // ************************************************************************* //