/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.7                                   |
|   \\  /    A nd           | Web:      http://www.openfoam.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version         1.7;
    format          ascii;

    root            "";
    case            "";
    instance        "";
    local           "";

    class           dictionary;
    object          blockMeshDict;
}

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


convertToMeters 0.1;

vertices        
(
    (0 0 0)	// Punkt 0
    (1 0 0)	// Punkt 1
    (1 1 0)	// Punkt 2
    (0 1 0)	// Punkt 3
    (0 0 0.1)	// Punkt 4
    (1 0 0.1)	// Punkt 5
    (1 1 0.1)	// Punkt 6
    (0 1 0.1)	// Punkt 7
);

blocks          
(
    hex (0 1 2 3 4 5 6 7) (50 50 1) simpleGrading (1 1 1) // Block 1
);

edges           
(
);

patches         
(
    patch unten			// Seiteflaeche unten
    (
	(0 1 5 4)
    )

    patch links			// Seiteflaeche links
    (
        (0 4 7 3)
    )

    patch oben			// Seiteflaeche oben
    ( 
        (3 2 6 7)
    )

    patch rechts		// Seiteflaeche rechts
    ( 
        (2 1 5 6)
    )

    empty vorneUndHinten	// Seitenflaechen vorne und hinten
    (
        (0 1 2 3)
        (4 5 6 7)
    )
);

mergePatchPairs 
(
);


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