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

pointSync false;

patches
(
    
    {
        name            inlet;
        
        patchInfo
        {
            type patch;
        }

        constructFrom   patches;

        patches         (inlet);
    }

    
    {
        name            outlet;

        patchInfo
        {
            type patch;
        }

        constructFrom   patches;

        patches         (outlet);
    }

    
    {
        name            wall_rest;

        patchInfo
        {
            type wall;
        }

        constructFrom   patches;

        patches         (wall_rest);
    }

    
    {
        name            wall_ribs1;

        patchInfo
        {
            type wall;
        }

        constructFrom   patches;

        patches
        (
            wall_ribs_bottom
            wall_ribs_top
        );
    }

    
    {
        name            wall_ribs2;

        patchInfo
        {
            type wall;
        }

        constructFrom   patches;

        patches
        (
            wall_ribs_bsides
            wall_ribs_mid
            wall_ribs_side
            wall_ribs_tsides
        );
    }
);


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