/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  13
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    object      createPatchDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

patches
{
    inlet
    {
        // Dictionary to construct new patch from
        patchInfo
        {
            type    patch;
        }

        // How to construct: either from 'patches' or 'zone'
        constructFrom zone;

        // Generate zone
        zone
        {
            type        box;
            box         (-0.035 -0.1 -1e-5)(0.035 0.1 1e-5);
        }
    }

    walls
    {
        // Dictionary to construct new patch from
        patchInfo
        {
            type    wall;
        }

        // How to construct: either from 'patches' or 'set'
        constructFrom patches;

        // If constructFrom = patches : names of patches. Wildcards allowed.
        patches ("CAD.*");
    }
}

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