38 lines
999 B
C++
38 lines
999 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 12
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
object topoSetDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
actions
|
|
(
|
|
{
|
|
name outlet;
|
|
type cellSet;
|
|
action new;
|
|
source cylinderToCell;
|
|
point1 (0.435 0 0);
|
|
point2 (0.44 0 0);
|
|
radius 0.015875;
|
|
}
|
|
|
|
{
|
|
name outlet;
|
|
type cellZoneSet;
|
|
action new;
|
|
source setToCellZone;
|
|
set outlet;
|
|
}
|
|
);
|
|
|
|
// ************************************************************************* //
|