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

// Do a synchronisation of coupled points after creation of any patches.
// Note: this does not work with points that are on multiple coupled patches
//       with transformations (i.e. cyclics).
pointSync false;

// Patches to create. An empty patch list just removes patches with zero
// faces from $FOAM_CASE/constant/polyMesh/boundary.
patches
(
    {
        name            inlet;
        patchInfo
        {
            type        patch;
        }
        constructFrom   patches;
        patches         ( inlet );
    }

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

    {
        name            walls;
        patchInfo
        {
            type        wall;
        }
        constructFrom   patches;
        patches         ( walls );
    }
);

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