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

// Whether to convert internal faces only, and ignore any boundary faces that
// are in the selection
internalFacesOnly true;

// Example creating a wall baffle called 'blades'
baffles
{
    baffles // <-- group name
    {
        // Use a zone to select faces and orientation
        type        faceZone;
        zoneName    blades;

        owner
        {
            name        blades; // <-- patch name
            type        wall;
        }
        neighbour
        {
            $owner;
        }
    }
}


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