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


actions
(
    {
        name spark;
        type cellSet;
        action new;
	source cylinderToCell;

        p1 (0 0 0);          // 円柱の底面の中心座標
        p2 (0 0 1);          // 円柱の上面の中心座標
        radius 0.1;          // 円柱の半径
    }
);

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