/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | foam-extend: Open Source CFD                    |
|  \\    /   O peration     | Version:     5.0                                |
|   \\  /    A nd           | Web:         http://www.foam-extend.org         |
|    \\/     M anipulation  | For copyright notice see file Copyright         |
\*---------------------------------------------------------------------------*/

// Created: 2025-08-12 15:31:50


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

scale 1.0;

vertices
(
    ( -0.0075 -0.0075 -0.024 )
    (  0.0075 -0.0075 -0.024 )
    (  0.0075  0.0075 -0.024 )
    ( -0.0075  0.0075 -0.024 )
    ( -0.0075 -0.0075  0.006 )
    (  0.0075 -0.0075  0.006 )
    (  0.0075  0.0075  0.006 )
    ( -0.0075  0.0075  0.006 )
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (30 30 60) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    patchFaces
    {
        type patch;
        faces
        (
            (0 1 2 3)  // Front face
            (4 5 6 7)  // Back face
            (0 1 5 4)  // Bottom face
            (3 2 6 7)  // Top face
            (0 3 7 4)  // Left face
            (1 2 6 5)  // Right face
        );
    }
);

mergePatchPairs
(
);

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