openfoam/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeaterImplicit/system/topoSetDict.f1
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

104 lines
2.2 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
(
// 0. Create cell sets
{
name c1;
type cellSet;
action new;
source zoneToCell;
zones (bottomAir);
}
{
name f1;
type faceSet;
action new;
source cellToFace;
option all;
sets (c1);
}
{
name c2;
type cellSet;
action new;
source zoneToCell;
zones (heater);
}
{
name f2;
type faceSet;
action new;
source cellToFace;
option all;
sets (c2);
}
{
name c3;
type cellSet;
action new;
source zoneToCell;
zones (leftSolid);
}
{
name f3;
type faceSet;
action new;
source cellToFace;
option all;
sets (c3);
}
{
name c4;
type cellSet;
action new;
source zoneToCell;
zones (rightSolid);
}
{
name f4;
type faceSet;
action new;
source cellToFace;
option all;
sets (c4);
}
{
name c5;
type cellSet;
action new;
source zoneToCell;
zones (topAir);
}
{
name f5;
type faceSet;
action new;
source cellToFace;
option all;
sets (c5);
}
);
// ************************************************************************* //