52 lines
1.2 KiB
C++
52 lines
1.2 KiB
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 injection;
|
|
type cellSet;
|
|
action new;
|
|
source boxToCell;
|
|
box (0 -1 0.0) (0.005 1 0.01);
|
|
}
|
|
|
|
{
|
|
name injection;
|
|
type cellZoneSet;
|
|
action new;
|
|
source setToCellZone;
|
|
set injection;
|
|
}
|
|
|
|
{
|
|
name outlet;
|
|
type cellSet;
|
|
action new;
|
|
source boxToCell;
|
|
box (0 -1 0.89) (0.025 1 0.9);
|
|
}
|
|
|
|
{
|
|
name outlet;
|
|
type cellZoneSet;
|
|
action new;
|
|
source setToCellZone;
|
|
set outlet;
|
|
}
|
|
);
|
|
|
|
// ************************************************************************* //
|