Files
phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/settings/geometryDict

77 lines
2.1 KiB
Plaintext
Raw Normal View History

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