phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/settings/geometryDict

77 lines
2.1 KiB
Plaintext
Raw Normal View History

2022-09-28 08:38:09 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName geometryDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2024-12-03 12:19:59 +00:00
motionModel stationary; // motion model can be rotatingAxis or stationary or vibrating
2022-09-28 08:38:09 +00:00
stationaryInfo
{
}
2022-09-28 08:38:09 +00:00
surfaces
{
cylinderShell
{
2024-12-03 12:19:59 +00:00
type cylinderWall; // other options: cuboidWall and planeWall
2024-12-03 12:19:59 +00:00
p1 (0.0 0.0 0.0); // begin point of cylinder axis
2024-12-03 12:19:59 +00:00
p2 (0.0 0.0 0.4); // end point of cylinder axis
2024-12-03 12:19:59 +00:00
radius1 0.1; // radius at p1
2024-12-03 12:19:59 +00:00
radius2 0.1; // radius at p2
2024-12-03 12:19:59 +00:00
resolution 36; // number of divisions
2024-12-03 12:19:59 +00:00
material wallMat; // material name of this wall
2022-09-28 08:38:09 +00:00
}
coneShell
{
2024-12-03 12:19:59 +00:00
type cylinderWall; // other options: cuboidWall and planeWall
2024-12-03 12:19:59 +00:00
p1 (0.0 0.0 -0.1); // begin point of cylinder axis
2024-12-03 12:19:59 +00:00
p2 (0.0 0.0 0.0); // end point of cylinder axis
2024-12-03 12:19:59 +00:00
radius1 0.02; // radius at p1
2024-12-03 12:19:59 +00:00
radius2 0.1; // radius at p2
resolution 36; // number of divisions
2024-12-03 12:19:59 +00:00
material wallMat; // material name of this wall
2022-09-28 08:38:09 +00:00
}
/*
This is a plane wall at the exit of silo
2022-09-28 08:38:09 +00:00
*/
2022-09-28 08:38:09 +00:00
exitGate
{
2024-12-03 12:19:59 +00:00
type planeWall; // other options: cuboidWall and cylinderWall
2024-12-03 12:19:59 +00:00
p1 (-0.02 -0.02 -0.1); // first point of the wall
2024-12-03 12:19:59 +00:00
p2 ( 0.02 -0.02 -0.1); // second point of the wall
2024-12-03 12:19:59 +00:00
p3 ( 0.02 0.02 -0.1); // third point of the wall
2024-12-03 12:19:59 +00:00
p4 (-0.02 0.02 -0.1); // fourth point of the wall
2024-12-03 12:19:59 +00:00
material wallMat; // material name of the wall
2022-09-28 08:38:09 +00:00
}
}
2024-05-28 08:54:34 +00:00