-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblockMeshDict_flowOverPrism
More file actions
98 lines (86 loc) · 2.2 KB
/
blockMeshDict_flowOverPrism
File metadata and controls
98 lines (86 loc) · 2.2 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
/*--------------------------------*- 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
(
(0 0 0) // 0
(1 0 0)
(1 2 0)
(0 2 0)
(0 0 2)
(1 0 2)
(1 2 2)
(0 2 2) // 7
(1.5 1 0) // 8
(1.5 2 0) // 9
(1.5 1 2) // 10
(1.5 2 2) // 11
(2 0 0) // 12
(2 2 0) // 13
(2 0 2) // 14
(2 2 2) // 15
(5 0 0) // 16
(5 2 0) // 17
(5 0 2) // 18
(5 2 2) // 19
);
blocks
(
hex (0 1 2 3 4 5 6 7) (20 40 40) simpleGrading (1 1 1)
hex (1 8 9 2 5 10 11 6) (10 40 40) simpleGrading (1 1 1)
hex (8 12 13 9 10 14 15 11) (10 40 40) simpleGrading (1 1 1)
hex (12 16 17 13 14 18 19 15) (60 40 40) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
inlet
{
type patch;
faces
(
(0 3 7 4)
);
}
outlet
{
type patch;
faces
(
(18 19 17 16)
);
}
/*
walls
{
type wall;
faces
(
);
} */
prism
{
type wall;
faces
(
(5 1 8 10)
(14 12 8 10)
);
}
);
// ************************************************************************* //