Fixed Codes of RDB

This commit is contained in:
omid.khs
2023-02-07 18:59:13 +03:30
parent 4827570411
commit 1fb2c06de9
7 changed files with 3027 additions and 128 deletions

View File

@ -2,49 +2,61 @@
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName geometryDict;
objectType dictionary;
/* ------------------------------------------------------------------------- */
// motion model: all surfaces are fixed
motionModel rotatingAxisMotion;
surfaces
{
Shell
body
{
type stlWall; // type of the wall
file shell.stl; // file name in stl folder
material wallMat; // material name of this wall
motion rotAxis; // motion component name
// 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;
}
/*
This is a plane wall at the rear end of cylinder
*/
wall1
/* This is a Cylinder Wall at the rear of cylinder */
CylinderRear1
{
type planeWall; // type of the wall
p1 (-0.4 0.10 0.0); // first point of the wall
p2 ( 0.0 0.10 0.0); // second point
p3 ( 0.0 0.35 0.0); // third point
p4 (-0.4 0.35 0.0); // fourth point
material wallMat; // material name of the wall
motion rotAxis; // motion component name
// type of the wall
type cylinderWall;
// first point for the axis of rotation
p1 (-0.1974 0.2269 -0.001);
// second point for the axis of rotation
p2 (-0.1974 0.2269 0.0);
// Radius of p1
radius1 0.0001;
// Radius of p2
radius2 0.12;
// material name of the wall
material wallMat;
// motion component name
motion rotAxis;
}
/*
This is a plane wall at the front end of cylinder
*/
wall2
/* This a cylinder Wall at the front of Cylinder */
CylinderFront2
{
type planeWall; // type of the wall
p1 (-0.4 0.10 0.1); // first point of the wall
p2 ( 0.0 0.10 0.1); // second point
p3 ( 0.0 0.35 0.1); // third point
p4 (-0.4 0.35 0.1); // fourth point
material wallMat; // material name of the wall
motion rotAxis; // motion component name
// type of the wall
type cylinderWall;
// first point for the axis of rotation
p1 (-0.1974 0.2269 0.0989);
// second point for the axis of rotation
p2 (-0.1974 0.2269 0.0990);
// Radius of p1
radius1 0.0001;
// Radius of p2
radius2 0.12;
// material name of the wall
material wallMat;
// motion component name
motion rotAxis;
}
}
// information for rotatingAxisMotion motion model
@ -52,12 +64,15 @@ rotatingAxisMotionInfo
{
rotAxis
{
p1 (-0.1974 0.2269 0); // first point for the axis of rotation
p2 (-0.1974 0.2269 0.1); // second point for the axis of rotation
omega 2.38733; // rotation speed (rad/s) => 15 rpm
// first point for the axis of rotation
p1 (-0.1974 0.2269 0);
// second point for the axis of rotation
p2 (-0.1974 0.2269 0.1);
// rotation speed (rad/s) => 15 rpm
omega 2.38733;
// Start time of Geometry Rotating
startTime 2;
// End time of Geometry Rotating
endTime 9.5;
}
}