/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object blockMeshDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // scale 1; vertices ( (0 0 0) (200 0 0) (200 200 0) (0 200 0) (0 0 6000) (200 0 6000) (200 200 6000) (0 200 6000) ); blocks ( hex (0 1 2 3 4 5 6 7) (3 3 160) simpleGrading (1 1 80) ); edges ( ); boundary ( top { type patch; faces ( (4 5 6 7) ); } bottom { type wall; faces ( (0 1 2 3) ); } inlet { type cyclic; neighbourPatch outlet; faces ( (0 4 7 3) ); } outlet { type cyclic; neighbourPatch inlet; faces ( (1 2 6 5) ); } left { type cyclic; neighbourPatch right; faces ( (0 4 5 1) ); } right { type cyclic; neighbourPatch left; faces ( (3 7 6 2) ); } ); mergePatchPairs ( ); // ************************************************************************* //