File: blockMeshDict

package info (click to toggle)
openfoam 4.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 163,028 kB
  • ctags: 58,990
  • sloc: cpp: 830,760; sh: 10,227; ansic: 8,215; xml: 745; lex: 437; awk: 194; sed: 91; makefile: 77; python: 18
file content (137 lines) | stat: -rw-r--r-- 3,315 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  4.x                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1.0e-3;

vertices
(
    ( 0.00  -2.50  -0.15)
    ( 5.00  -2.50  -0.15)
    ( 5.00  -0.15  -0.15)
    ( 7.00  -0.15  -0.15)
    ( 7.00  -2.50  -0.15)
    (17.00  -2.50  -0.15)
    (17.00  -0.15  -0.15)
    (17.00   0.15  -0.15)
    (17.00   2.50  -0.15)
    ( 7.00   2.50  -0.15)
    ( 7.00   0.15  -0.15)
    ( 5.00   0.15  -0.15)
    ( 5.00   2.50  -0.15)
    ( 0.00   2.50  -0.15)
    ( 0.00   0.15  -0.15)
    ( 0.00  -0.15  -0.15)

    ( 0.00  -2.50   0.15)
    ( 5.00  -2.50   0.15)
    ( 5.00  -0.15   0.15)
    ( 7.00  -0.15   0.15)
    ( 7.00  -2.50   0.15)
    (17.00  -2.50   0.15)
    (17.00  -0.15   0.15)
    (17.00   0.15   0.15)
    (17.00   2.50   0.15)
    ( 7.00   2.50   0.15)
    ( 7.00   0.15   0.15)
    ( 5.00   0.15   0.15)
    ( 5.00   2.50   0.15)
    ( 0.00   2.50   0.15)
    ( 0.00   0.15   0.15)
    ( 0.00  -0.15   0.15)
);

blocks
(
    hex ( 0  1  2 15 16 17 18 31) ( 50 24 1) simpleGrading (1 1 1)
    hex (15  2 11 14 31 18 27 30) ( 50  3 1) simpleGrading (1 1 1)
    hex (14 11 12 13 30 27 28 29) ( 50 24 1) simpleGrading (1 1 1)
    hex ( 2  3 10 11 18 19 26 27) ( 20  3 1) simpleGrading (1 1 1)
    hex ( 4  5  6  3 20 21 22 19) (100 24 1) simpleGrading (1 1 1)
    hex ( 3  6  7 10 19 22 23 26) (100  3 1) simpleGrading (1 1 1)
    hex (10  7  8  9 26 23 24 25) (100 24 1) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (15  0 16 31)
            (14 15 31 30)
            (13 14 30 29)
        );
    }

    outlet
    {
        type patch;
        faces
        (
            ( 5  6 22 21)
            ( 6  7 23 22)
            ( 7  8 24 23)
        );
    }

    walls
    {
        type wall;
        faces
        (
            ( 1  0 16 17)
            ( 2  1 17 18)
            ( 3  2 18 19)
            ( 4  3 19 20)
            ( 5  4 20 21)
            ( 9  8 24 25)
            (10  9 25 26)
            (11 10 26 27)
            (12 11 27 28)
            (13 12 28 29)
        );
    }

    frontBack
    {
        type empty;
        faces
        (
            ( 0 15  2  1)
            (15 14 11  2)
            (14 13 12 11)
            ( 2 11 10  3)
            ( 4  3  6  5)
            ( 3 10  7  6)
            (10  9  8  7)

            (16 17 18 31)
            (31 18 27 30)
            (30 27 28 29)
            (18 19 26 27)
            (20 21 22 19)
            (19 22 23 26)
            (26 23 24 25)
        );
    }
);

// ************************************************************************* //