2023-07-04 10:35:26 +00:00
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
objectName geometryDict;
|
|
|
|
objectType dictionary;
|
2023-09-25 14:09:22 +00:00
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2025-02-20 13:57:36 +00:00
|
|
|
|
|
|
|
// motion model: rotating object around an axis
|
|
|
|
motionModel rotatingAxis;
|
2023-07-04 10:35:26 +00:00
|
|
|
|
2024-12-28 10:16:09 +00:00
|
|
|
rotatingAxisInfo
|
|
|
|
{
|
|
|
|
rotAxis
|
|
|
|
{
|
2025-02-20 14:03:55 +00:00
|
|
|
p1 (0 0 0.0); // first point for the axis of rotation
|
|
|
|
p2 (0 0 1.0); // second point for the axis of rotation
|
|
|
|
omega 3.14; // rotation speed (rad/s)
|
|
|
|
startTime 1; // when t>1 s, rotation starts
|
|
|
|
endTime 30; // when t>30 s, rotation stops
|
2024-12-28 10:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-04 10:35:26 +00:00
|
|
|
|
2025-02-20 13:57:36 +00:00
|
|
|
|
2023-07-04 10:35:26 +00:00
|
|
|
surfaces
|
|
|
|
{
|
|
|
|
helix
|
|
|
|
{
|
2025-02-20 13:57:36 +00:00
|
|
|
type stlWall; // type of the wall
|
|
|
|
file screw.stl; // file name in stl folder
|
|
|
|
material prop1; // material name of this wall
|
|
|
|
motion rotAxis; // motion component name
|
2023-07-04 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shell
|
|
|
|
{
|
2025-02-20 13:57:36 +00:00
|
|
|
type stlWall; // type of the wall
|
|
|
|
file shell.stl; // file name in stl folder
|
|
|
|
material prop1; // material name of this wall
|
|
|
|
motion none; // this surface is not moving ==> none
|
2023-07-04 10:35:26 +00:00
|
|
|
}
|
2025-02-20 13:57:36 +00:00
|
|
|
|
2023-07-04 10:35:26 +00:00
|
|
|
}
|
|
|
|
|
2024-12-28 10:16:09 +00:00
|
|
|
|
|
|
|
|