/*--------------------------------*- 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 waterToCopper;

        patchInfo
        {
            type mappedWall;
            sampleMode      nearestPatchFace;
            sampleRegion    copper;
            samplePatch     copperToWater;
        }
        constructFrom patches;
        patches (waterToCopperSalome_extruded);
    }
    
    {
        name inlet;

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

        patchInfo
        {
            type patch;
        }
        constructFrom patches;
        patches (mainFace_top);
    }

);

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