openfoam/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict
Mark Olesen 500c7047b2 TUT: remove superfluous 'sourceInfo' (topo sets)
- update annotated dicts, remove tabs

- use point1/point2 for cylinder sources
2022-05-27 14:10:31 +02:00

59 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2206 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
actions
(
// leftSolid
{
name heaterCellSet;
type cellSet;
action new;
source boxToCell;
box (-0.1001 -100 -100 )(0.0 100 100);
}
{
name leftSolid;
type cellZoneSet;
action new;
source setToCellZone;
set heaterCellSet;
}
// rightFluid
{
name rightFluidCellSet;
type cellSet;
action new;
source boxToCell;
box (0.00 -100 -100 )(0.1001 100 100);
}
{
name rightFluid;
type cellZoneSet;
action new;
source setToCellZone;
set rightFluidCellSet;
}
);
// ************************************************************************* //