/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  8                                     |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      createPatchDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
pointSync false;
patches
(
    {   name inlet;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (inlet_extruded);
    }
    
    {   name solidBottom;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (solidBottom_extruded);
    }

    {   name outlet;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (outlet_extruded);
    }
    
    {   name solidTop;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (solidTop_extruded);
    }

    {   name solidWall1;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (solidWall1_extruded);
    }

    {   name solidWall2;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (solidWall2_extruded);
    }

    {   name frontAndBack;
        patchInfo
        {   type patch;     }
        constructFrom patches;
        patches (defaultFaces);
    }

    
);

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