phasicFlow/tutorials/sphereGranFlow/conveyorBelt/settings/geometryDict

76 lines
2.0 KiB
Plaintext
Raw Normal View History

2024-12-24 07:37:19 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName geometryDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2024-12-24 08:39:40 +00:00
motionModel conveyorBelt; // motion model can be rotatingAxis or stationary or vibrating
2024-12-24 08:59:42 +00:00
conveyorBeltInfo
2024-12-24 07:37:19 +00:00
{
conveyorBelt1
{
2024-12-24 14:52:18 +00:00
velocity (0.5 0 0);
2024-12-24 07:37:19 +00:00
}
2024-12-24 08:39:40 +00:00
}
2024-12-24 07:37:19 +00:00
surfaces
{
cylinderShell
{
type cylinderWall; // other options: cuboidWall and planeWall
p1 (0.0 0.0 0.0); // begin point of cylinder axis
p2 (0.0 0.0 0.4); // end point of cylinder axis
radius1 0.1; // radius at p1
radius2 0.1; // radius at p2
resolution 36; // number of divisions
material wallMat; // material name of this wall
}
coneShell
{
type cylinderWall; // other options: cuboidWall and planeWall
p1 (0.0 0.0 -0.1); // begin point of cylinder axis
p2 (0.0 0.0 0.0); // end point of cylinder axis
radius1 0.02; // radius at p1
radius2 0.1; // radius at p2
resolution 36; // number of divisions
material wallMat; // material name of this wall
}
belt
{
type stlWall; // type of the wall
file belt.stl; // file name in stl folder
material wallMat; // material name of this wall
2024-12-24 08:39:40 +00:00
motion conveyorBelt1; // motion component name
2024-12-24 07:37:19 +00:00
}
box
{
type stlWall; // type of the wall
file box.stl; // file name in stl folder
material wallMat; // material name of this wall
}
}