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

actions
(
    {
        name    c0;
        type    cellSet;
        action  new;
        source  cylinderToCell;
        sourceInfo
        {
            p1 (-0.1 0 -1);
	    p2 (-0.1 0 1);
            radius 0.01128;
        }
    }
    {
        name    heater1;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo
        {
            set c0;
        }
    }
{
        name    c1;
        type    cellSet;
        action  new;
        source  cylinderToCell;
        sourceInfo
        {
            p1 (0.1 0 -1);
	    p2 (0.1 0 1);
            radius 0.01128;
        }
    }
    {
        name    heater2;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo
        {
            set c1;
        }
    }
{
        name    c2;
        type    cellSet;
        action  new;
        source  boxToCell;
        sourceInfo
        {
            box (-0.2 -0.2 -1) (0.2 0.2 1); 
        }
    }
{
        name    c2;
        type    cellSet;
        action  subtract;

        source  cylinderToCell;
        sourceInfo
        {
            p1 (-0.1 0 -1);
	    p2 (-0.1 0 1);
            radius 0.01128;
        }
    }
{
        name    c2;
        type    cellSet;
        action  subtract;

        source  cylinderToCell;
        sourceInfo
        {
            p1 (0.1 0 -1);
	    p2 (0.1 0 1);
            radius 0.01128;
        }
    }
    {
        name    fluid;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo
        {
            set c2;
        }
    }
);

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