openfoam/tutorials/heatTransfer/chtMultiRegionTwoPhaseEulerFoam/solidQuenching2D/system/topoSetDict
2023-12-20 19:42:55 +01:00

61 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2312 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
actions
(
heater
{
name heaterCellSet;
type cellSet;
action new;
source boxToCell;
box (-0.01 29e-3 -1) (4.77e-3 70e-3 1);
}
{
name solid;
type cellZoneSet;
action new;
source setToCellZone;
set heaterCellSet;
}
{
name bottomWaterCellSet;
type cellSet;
action new;
source cellToCell;
set heaterCellSet;
}
{
name bottomWaterCellSet;
type cellSet;
action invert;
}
{
name water;
type cellZoneSet;
action new;
source setToCellZone;
set bottomWaterCellSet;
}
);
// ************************************************************************* //