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
|
/*--------------------------------*- 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;
vertices
(
(0.001 0 0)
(0.038 0 0)
(0.076 0 0)
(0.076 0.02687 0)
(0.02687 0.02687 0)
(0.0007071 0.0007071 0)
(0.076 0.114 0)
(0.02687 0.114 0)
(0 0.114 0)
(0 0.038 0)
(0 0.001 0)
(0.001 0 0.5)
(0.038 0 0.5)
(0.076 0 0.5)
(0.076 0.02687 0.5)
(0.02687 0.02687 0.5)
(0.0007071 0.0007071 0.5)
(0.076 0.114 0.5)
(0.02687 0.114 0.5)
(0 0.114 0.5)
(0 0.038 0.5)
(0 0.001 0.5)
);
blocks
(
hex (5 4 9 10 16 15 20 21) (60 30 1) simpleGrading (5 1 1)
hex (0 1 4 5 11 12 15 16) (60 30 1) simpleGrading (5 1 1)
hex (1 2 3 4 12 13 14 15) (50 30 1) simpleGrading (1 1 1)
hex (4 3 6 7 15 14 17 18) (50 50 1) simpleGrading (1 1 1)
hex (9 4 7 8 20 15 18 19) (30 50 1) simpleGrading (1 1 1)
);
edges
(
arc 0 5 (0.00092387 0.00038268 0)
arc 5 10 (0.00038268 0.00092387 0)
arc 1 4 (0.0351074 0.0145419 0)
arc 4 9 (0.0145419 0.0351074 0)
arc 11 16 (0.00092387 0.00038268 0.5)
arc 16 21 (0.00038268 0.00092387 0.5)
arc 12 15 (0.0351074 0.0145419 0.5)
arc 15 20 (0.0145419 0.0351074 0.5)
);
boundary
(
left
{
type symmetryPlane;
faces
(
(8 9 20 19)
(9 10 21 20)
);
}
right
{
type symmetryPlane;
faces
(
(2 3 14 13)
(3 6 17 14)
);
}
down
{
type symmetryPlane;
faces
(
(0 1 12 11)
(1 2 13 12)
);
}
up
{
type patch;
faces
(
(7 8 19 18)
(6 7 18 17)
);
}
hole
{
type patch;
faces
(
(10 5 16 21)
(5 0 11 16)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //
|