/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: http://www.foam-extend.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object blockMeshDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // convertToMeters 1.0e-02; vertices ( // Background mesh (-4 -4 -0.1) (16 -4 -0.1) (16 4 -0.1) (-4 4 -0.1) (-4 -4 0.1) (16 -4 0.1) (16 4 0.1) (-4 4 0.1) // Cylinder, back ( 0 -1 -0.1) ( 1 0 -0.1) ( 0 1 -0.1) (-1 0 -0.1) ( 0 -2 -0.1) ( 2 0 -0.1) ( 0 2 -0.1) (-2 0 -0.1) // Cylinder, front ( 0 -1 0.1) ( 1 0 0.1) ( 0 1 0.1) (-1 0 0.1) ( 0 -2 0.1) ( 2 0 0.1) ( 0 2 0.1) (-2 0 0.1) ); blocks ( // Background hex (0 1 2 3 4 5 6 7) background (140 60 1) simpleGrading (1 1 1) // Front hex (8 12 13 9 16 20 21 17) front (15 20 1) simpleGrading (1 1 1) hex (9 13 14 10 17 21 22 18) front (15 20 1) simpleGrading (1 1 1) hex (10 14 15 11 18 22 23 19) front (15 20 1) simpleGrading (1 1 1) hex (11 15 12 8 19 23 20 16) front (15 20 1) simpleGrading (1 1 1) ); edges ( // Inner arc, back arc 8 9 ( 0.707067 -0.707067 -0.1) arc 9 10 ( 0.707067 0.707067 -0.1) arc 10 11 (-0.707067 0.707067 -0.1) arc 11 8 (-0.707067 -0.707067 -0.1) // Inner arc, front arc 16 17 ( 0.707067 -0.707067 0.1) arc 17 18 ( 0.707067 0.707067 0.1) arc 18 19 (-0.707067 0.707067 0.1) arc 19 16 (-0.707067 -0.707067 0.1) // Outer arc, back arc 12 13 ( 1.414213 -1.414213 -0.1) arc 13 14 ( 1.414213 1.414213 -0.1) arc 14 15 (-1.414213 1.414213 -0.1) arc 15 12 (-1.414213 -1.414213 -0.1) // Outer arc, front arc 20 21 ( 1.414213 -1.414213 0.1) arc 21 22 ( 1.414213 1.414213 0.1) arc 22 23 (-1.414213 1.414213 0.1) arc 23 20 (-1.414213 -1.414213 0.1) ); patches ( patch in ( (0 4 7 3) ) patch out ( (2 6 5 1) ) wall top ( (3 7 6 2) ) wall bottom ( (1 5 4 0) ) wall cylinder ( (8 16 17 9) (9 17 18 10) (10 18 19 11) (11 19 16 8) ) patch outerCylinder ( (12 13 21 20) (13 14 22 21) (14 15 23 22) (15 12 20 23) ) empty frontAndBack ( (0 3 2 1) (4 5 6 7) (8 9 13 12) (9 10 14 13) (10 11 15 14) (11 8 12 15) (16 20 21 17) (17 21 22 18) (18 22 23 19) (19 23 20 16) ) ); mergePatchPairs ( ); // ************************************************************************* //