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 138
|
/*--------------------------------*- 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 1e-06;
vertices
(
(0 0 0)
(3000 0 0)
(0 100 -4.36609429085)
(3000 300 -13.0982828726)
(0 400 -17.4643771634)
(3000 700 -30.562660036)
(0 800 -34.9287543268)
(3000 1000 -43.6609429085)
(0 1600 -69.8575086536)
(3000 1600 -69.8575086536)
(0 100 4.36609429085)
(3000 300 13.0982828726)
(0 400 17.4643771634)
(3000 700 30.562660036)
(0 800 34.9287543268)
(3000 1000 43.6609429085)
(0 1600 69.8575086536)
(3000 1600 69.8575086536)
);
blocks
(
hex (0 1 3 2 0 1 11 10)
(75 30 1)
edgeGrading (1 1 1 1 0.1666667 1 1 0.1666667 1 1 1 1)
hex (2 3 5 4 10 11 13 12)
(75 40 1)
edgeGrading (1 1 1 1 20 1 1 20 1 1 1 1)
hex (4 5 7 6 12 13 15 14)
(75 15 1)
simpleGrading (1.0 1.0 1.0)
hex (6 7 9 8 14 15 17 16)
(75 15 1)
simpleGrading (1.0 1.0 1.0)
);
edges
(
);
boundary
(
axis
{
type empty;
faces
(
(0 1 1 0)
);
}
inlet
{
type patch;
faces
(
(0 0 10 2)
);
}
walls
{
type wall;
faces
(
(2 10 12 4)
(4 12 14 6)
(6 14 16 8)
);
}
atmosphere
{
type patch;
faces
(
(8 16 17 9)
(7 9 17 15)
(5 7 15 13)
(3 5 13 11)
(1 3 11 1)
);
}
front
{
type wedge;
faces
(
(0 1 11 10)
(10 11 13 12)
(12 13 15 14)
(14 15 17 16)
);
}
back
{
type wedge;
faces
(
(0 2 3 1)
(2 4 5 3)
(4 6 7 5)
(6 8 9 7)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //
|