/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  plus                                  |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#include    "configDict"

actions
(
    // inlet
    {
        name    faceSetInlet;
        type    faceSet;
        action  new;
        source  patchToFace;
        sourceInfo
        {
            patch   fvWall;
        }
    }
    {
        name    faceSetInlet;
        type    faceSet;
        action  subset;
        source  boxToFace;
        sourceInfo
        {
            box ( $meshNozzleXMinus $meshNozzleYMinus -100 )( $meshNozzleXPlus $meshNozzleYPlus 100 );
        }
    }

    // fvSurfaceStructure
    {
        name    faceSetFvSurfaceStructure;
        type    faceSet;
        action  new;
        source  patchToFace;
        sourceInfo
        {
            patch  fvWallNextToSurfaceStructure;
        }
    }
    {
        name    faceSetFvSurfaceStructure;
        type    faceSet;
        action  subset;
        source  boxToFace;
        sourceInfo
        {
            box ( $meshSurfaceStructureXMinus $meshSurfaceStructureYMinus -100 )( $meshSurfaceStructureXPlus $meshSurfaceStructureYPlus 100 );
        }
    }
);

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