/*--------------------------------*- C++ -*----------------------------------*\
|                                                                             |
|                Generated by the CfdOF workbench for FreeCAD                 |
|                      https://github.com/jaheyns/CfdOF                       |
|                                                                             |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      createPatchDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

pointSync false;

// Patches to create.
patches
(
    {
        //- Master side patch
        name            MeshRefinement_M;
        patchInfo
        {
            type            cyclicAMI;
            matchTolerance  0.0001;
            neighbourPatch  MeshRefinement_S;
            transform       noOrdering;
        }
        constructFrom patches;
        patches (MeshRefinement);
    }

    {
        //- Slave side patch
        name            MeshRefinement_S;
        patchInfo
        {
            type            cyclicAMI;
            matchTolerance  0.0001;
            neighbourPatch  MeshRefinement_M;
            transform       noOrdering;
        }
        constructFrom patches;
        patches (MeshRefinement_slave);
    }
);


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