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

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

actions
(
    // make the mesh a little more interesting...
    {
        name    c0;
        type    cellSet;
        action  new;
        source  boxToCell;
        box     (-100 -100 -100) (100 0.1 0.25);
    }
    {
        name    c0;
        type    cellSet;
        action  add;
        source  boxToCell;
        box     (-100 -100 0.45) (100 0.1 100);
    }
    {
        name    c0;
        type    cellSet;
        action  add;
        source  boxToCell;
        box     (-100 0.05 0.33) (100 0.1 0.38);
    }
    {
        name    c0;
        type    cellSet;
        action  invert;
    }
);


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