-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblockMeshDict_arc
More file actions
117 lines (107 loc) · 2.83 KB
/
blockMeshDict_arc
File metadata and controls
117 lines (107 loc) · 2.83 KB
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
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2406 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
scale 1;
vertices
(
(-1 -1.2 0) //0
(0 -1.2 0) //1
(0 -1.0 0) //2
(-1 -1.0 0) //3
(-1 -1.2 0.01) //4
(0 -1.2 0.01) //5
(0 -1.0 0.01) //6
(-1 -1.0 0.01) //7
(-1 1.0 0) //8
(0 1.0 0) //9
(0 1.2 0) //10
(-1 1.2 0) //11
(-1 1.0 0.01) //12
(0 1.0 0.01) //13
(0 1.2 0.01) //14
(-1 1.2 0.01) //15
(1.2 0.0 0) //16
(1.0 0.0 0) //17
(1.2 0.0 0.01) //18
(1.0 0.0 0.01) //19
);
blocks
(
hex (0 1 2 3 4 5 6 7) (50 20 1) simpleGrading (1 1 1)
hex (8 9 10 11 12 13 14 15) (50 20 1) simpleGrading (1 1 1)
hex (17 16 10 9 19 18 14 13) (20 80 1) simpleGrading (1 1 1)
hex (2 1 16 17 6 5 18 19) (20 80 1) simpleGrading (1 1 1)
);
edges
(
arc 13 19 (0.707 0.707 0.001)
arc 14 18 (0.849 0.849 0.001)
arc 09 17 (0.707 0.707 0)
arc 10 16 (0.849 0.849 0)
arc 06 19 (0.707 -0.707 0.001)
arc 05 18 (0.849 -0.849 0.001)
arc 02 17 (0.707 -0.707 0)
arc 01 16 (0.849 -0.849 0)
);
boundary
(
frontAndBack
{
type empty;
faces
(
(12 13 14 15)
(8 9 10 11)
(0 1 2 3)
(4 5 6 7)
(13 19 18 14)
(17 16 10 9)
(1 16 17 2)
(5 18 19 6)
);
}
inlet
{
type patch;
faces
(
(12 15 11 8)
);
}
outlet
{
type patch;
faces
(
(7 3 0 4)
);
}
walls
{
type wall;
faces
(
(15 14 10 11)
(12 13 9 8)
(7 6 2 3)
(4 5 1 0)
(13 19 17 9)
(14 18 16 10)
(5 18 16 1)
(6 19 17 2)
);
}
);
// ************************************************************************* //