/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2312                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}

convertToMeters 1;

vertices
(
    (0 0 0)
    (2000 0 0)
    (2000 40 0)
    (0 40 0)
    (0 0 20)
    (2000 0 20)
    (2000 40 20)
    (0 40 20)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (800 16 80) simpleGrading (1 1 1)
);

boundary
(
    inlet { type patch; faces ((0 3 7 4)); }
    outlet { type patch; faces ((1 2 6 5)); }
    bottom { type wall; faces ((0 1 5 4)); }
    topAtm { type symmetryPlane; faces ((3 2 6 7)); }
    sides { type wall; faces ((0 1 2 3) (4 5 6 7)); }
);
