/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | faSavageHutterFOAM                              |
|   \\  /    A nd           | Copyright (C) 2017 Matthias Rauter              |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant/faMesh";
    object      faMeshDefinition;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

polyMeshPatches  1( slope );

boundary
{
    in
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  in;
    }
    out
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  out;
    }
    frontback
    {
        type                patch;
        ownerPolyPatch      slope;
        neighbourPolyPatch  frontback;
    }
    
}

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