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

actions
(
    {
        name    calspacecell;	/* calculation space */
        type    cellSet;
        action  new;
        source  regionsToCell;
        insidePoints (
            (0 0 0.25)		/* point NOT including the wings */
        );
    }

    {
        name    flyingfishcell;		/* leg space */
        type    cellSet;
        action  new;
        source  cellToCell;
        set     calspacecell;	/* copy */
    }
    {
        name    flyingfishcell;
        type    cellSet;
        action  invert;			/* invert the cell region */
    }
);

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