/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// Geometry of Tank Details

convertToMeters 1;
// tank initial position
vertices
(
    (-0.023 -0.46 -0.31) // Vertex bllcb = 0 ; 
    (-0.023 0.46 -0.31) // Vertex brlcb = 1
    (-0.023 0.46 0.31) // Vertex bruct = 2
    (-0.023 -0.46 0.31) // Vertex bluct = 3

    (0.023 -0.46 -0.31) // Vertex bllcb = 4
    (0.023 0.46 -0.31) // Vertex brlcb = 5
    (0.023 0.46 0.31) // Vertex bruct = 6    
    (0.023 -0.46 0.31) // Vertex bluct = 7

);

blocks
(
     //block0
    hex (0 1 2 3 4 5 6 7)
    (50 50 10)
    simpleGrading (1 1 1)

);

patches
(
    patch walls
    (
        (0 1 5 4)
        (1 2 6 5)
        (2 3 7 6)
        (3 0 4 7)

    )

    empty front
    (
        (4 5 6 7)

    )

    empty back
    (
        (0 3 2 1)

    )
);

// ************************************************************************* //
