openfoam/tutorials/multiphase/interFoam/laminar/vofToLagrangian/eulerianInjection/system/topoSetDict.createBlockage
2019-06-25 11:51:19 +01:00

41 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
actions
(
// Create blockage cellSet
{
name blockage;
type cellSet;
action new;
// source boxToCell;
// box (0.015 0.010 0.015) (0.035 0.015 0.035);
source cylinderToCell;
p1 (0.025 0.02 0.025);
p2 (0.025 0.022 0.025);
radius 0.01;
}
{
name blockage;
type cellSet;
action invert;
}
);
// ************************************************************************* //