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 (98 lines) | stat: -rw-r--r-- 1,675 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
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant/polyMesh";
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

/*

 A ------------------------------- B
  /  H                          /
 C\                            /
     \                        /
        \                    /
           \                /     G
              \            /
                 \        /
                    \    /
                       \/
                         D
*/

Ax  0.438912;    Ay  0.000000;
Bx  18.28800;    By  0.000000;
Cx  0.310358;    Cy  -0.310358;
Dx  12.931569;   Dy  -12.931569;

Hx  0.405502;    Hy  -0.167964;
Gx  16.895909;   Gy  -6.998515;

Z_DB_low  -0.88706;
Z_AC_low  -1.07;
Z_high  4.39208;

vertices
(
   ($Cx  $Cy  $Z_AC_low)  //0
   ($Dx  $Dy  $Z_DB_low)  //1
   ($Bx  $By  $Z_DB_low)  //2
   ($Ax  $Ay  $Z_AC_low)  //3
   ($Cx  $Cy  $Z_high)    //4
   ($Dx  $Dy  $Z_high)    //5
   ($Bx  $By  $Z_high)    //6
   ($Ax  $Ay  $Z_high)    //7
);

blocks
(
   hex (0 1 2 3 4 5 6 7)    (47 10 4) simpleGrading (41.6669 1 1)
);

edges
(
  arc 0 3 ($Hx $Hy $Z_AC_low)
  arc 4 7 ($Hx $Hy $Z_high)

  arc 1 2 ($Gx $Gy $Z_DB_low)
  arc 5 6 ($Gx $Gy $Z_high)
);

patches
(
   patch maxX
   (
       (1 2 6 5)
   )
   patch minX
   (
       (0 4 7 3)
   )
   patch maxY
   (
       (3 7 6 2)
   )
   patch minY
   (
       (1 5 4 0)
   )
   patch maxZ
   (
       (4 5 6 7)
   )
   patch minZ
   (
       (0 3 2 1)
   )
);

mergePatchPairs
(
);

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