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

polyMeshPatches  1( slope );

boundary
{
    minX
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  minX;
    }

    maxX
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  maxX;
    }

    minY
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  minY;
    }

    maxY
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  maxY;
    }

}

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