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

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

pointSync false;

writeCyclicMatch  false;

patches
(
    {
        name airToCopper;

        patchInfo
        {
            type wall;
        }
        constructFrom patches;
        patches (airToCopperSalome_extruded);
    }
    
    {
        name left;

        patchInfo
        {
            type patch;

        }
        constructFrom patches;
        patches (top_extruded);
    }
    {
        name bottom;

        patchInfo
        {
            type patch;

        }
        constructFrom patches;
        patches (inlet_extruded);
    }
    {
        name right;

        patchInfo
        {
            type patch;

        }
        constructFrom patches;
        patches (bottom_extruded);
    }
    {
        name top;

        patchInfo
        {
            type patch;

        }
        constructFrom patches;
        patches (outlet_extruded);
    }
    {
        name front;

        patchInfo
        {
            type cyclic;
            neighbourPatch  back;
            
        }
        constructFrom patches;
        patches (mainFace_top);
    }
    {
        name back;

        patchInfo
        {
            type cyclic;
            neighbourPatch  front;
        }
        constructFrom patches;
        patches (mainFace);
    }

);

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