Files
OpenFOAM-12/tutorials/modules/multiRegion/film/hotBoxes/system/fluid/topoSetDict
Henry Weller c67a019ee1 tutorials/modules/multiRegion/film/hotBoxes: New film tutorial case
converted from the old modules/multicomponentFluid/hotBoxes tutorial case.
2023-05-17 14:35:34 +01:00

60 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
object topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
actions
(
{
name notBoxes;
type cellSet;
action clear;
}
{
name notBoxes;
type cellSet;
action invert;
}
{
name notBoxes;
type cellSet;
action delete;
source boxToCell;
box (0.4 0.1 0.1) (0.6 0.3 0.3);
}
{
name notBoxes;
type cellSet;
action delete;
source boxToCell;
box (0.4 0.1 0.4) (0.6 0.3 0.6);
}
{
name notBoxes;
type cellSet;
action delete;
source boxToCell;
box (0.4 0.4 0.1) (0.6 0.6 0.3);
}
{
name notBoxes;
type cellSet;
action delete;
source boxToCell;
box (0.4 0.4 0.4) (0.6 0.6 0.6);
}
);
// ************************************************************************* //