/*--------------------------------*- 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 0.001; vertices ( (0 0 0) // 0 (1 0 0)// 1 (1 1 0)// 2 (0 1 0)// 3 (0 0 1) (1 0 1)// 5 (1 1 1)// 6 (0 1 1) (2 0 0)// 8 (2 1 0)// 9 (2 0 1)// 10 (2 1 1)// 11 ); blocks ( hex (0 1 2 3 5 5 6 6) (1 1 1) simpleGrading (1 1 1) // tangential, axial, radial direction hex (1 8 9 2 5 5 6 6) (1 1 1) simpleGrading (1 1 1) // tangential, axial, radial direction ); edges ( ); boundary ( inlet { type patch; faces ((1 8 5 5) (1 5 5 0) ); } outlet { type patch; faces ((2 6 6 9) (2 3 6 6) ); } upperWall { type wall; faces ((9 6 5 8) (0 5 6 3) ); } lowerWall { type wall; faces ((9 8 1 2) (2 1 0 3) ); } frontAndBack { type empty; faces ( ); } ); mergePatchPairs ( ); // ************************************************************************* //