openfoam/tutorials/basic/chtMultiRegionFoam/2DImplicitCyclic/system/topoSetDict.f1
2021-08-03 20:08:49 +00:00

60 lines
1.4 KiB
C++
Executable File

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2112 |
| \\ / A nd | Web: 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 (leftSolid);
}
{
name f1;
type faceSet;
action new;
source cellToFace;
option all;
sets (c1);
}
{
name c2;
type cellSet;
action new;
source zoneToCell;
zones (rightFluid);
}
{
name f2;
type faceSet;
action new;
source cellToFace;
option all;
sets (c2);
}
);
// ************************************************************************* //