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