67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2106 |
|
|
| \\ / A nd | Web: 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;
|
|
sourceInfo
|
|
{
|
|
box (-0.1001 -100 -100 )(0.0 100 100);
|
|
}
|
|
}
|
|
{
|
|
name leftSolid;
|
|
type cellZoneSet;
|
|
action new;
|
|
source setToCellZone;
|
|
sourceInfo
|
|
{
|
|
set heaterCellSet;
|
|
}
|
|
}
|
|
|
|
// rightFluid
|
|
{
|
|
name rightFLuidCellSet;
|
|
type cellSet;
|
|
action new;
|
|
source boxToCell;
|
|
sourceInfo
|
|
{
|
|
box (0.00 -100 -100 )(0.1001 100 100);
|
|
}
|
|
}
|
|
{
|
|
name rightFluid;
|
|
type cellZoneSet;
|
|
action new;
|
|
source setToCellZone;
|
|
sourceInfo
|
|
{
|
|
set rightFLuidCellSet;
|
|
}
|
|
}
|
|
);
|
|
|
|
|
|
// ************************************************************************* //
|