phasicFlow/tutorials/sphereGranFlow/V-blender/settings/geometryDict

55 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-02-06 19:41:07 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName geometryDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2023-02-06 19:41:07 +00:00
// motion model: rotating object around an axis
motionModel rotatingAxisMotion;
surfaces
{
2023-02-07 15:58:37 +00:00
body
2023-02-06 19:41:07 +00:00
{
2023-02-07 15:58:37 +00:00
// type of the wall
type stlWall;
// file name in stl folder
file body.stl;
// material name of this wall
material wallMat;
// motion component name
motion rotAxis;
2023-02-06 19:41:07 +00:00
}
}
// information for rotatingAxisMotion motion model
rotatingAxisMotionInfo
{
rotAxis
{
2023-02-07 15:58:37 +00:00
// first point for the axis of rotation
p1 (0.128228 0.116446 0.297901);
// second point for the axis of rotation
p2 (0.722596 0.116459 0.297901);
// rotation speed (rad/s)
omega 3.14;
// start time of rotation
startTime 3;
// end time of rotation
2023-02-06 19:41:07 +00:00
endTime 10;
}
}