Normal vector of wall is included into the wall velocity calculations

This commit is contained in:
Hamidreza
2025-07-22 13:54:23 +03:30
parent e62ba11a8d
commit c340040b40
14 changed files with 187 additions and 134 deletions

View File

@ -7,14 +7,18 @@ objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
// motion model can be rotatingAxis or stationary or vibrating
motionModel conveyorBelt;
conveyorBeltInfo
{
conveyorBelt1
{
tangentVelocity (0.5 0 0);
// linear velocity of belt
linearVelocity 0.5;
// normal vector of velocity plate
// The velocity vector is tangent to this plane
normal (0 -1 0);
}
}

View File

@ -34,7 +34,7 @@ writeFormat ascii; // data writting format (ascii
timersReport Yes; // report timers
timersReportInterval 0.01; // time interval for reporting timers
timersReportInterval 0.1; // time interval for reporting timers

View File

@ -38,7 +38,7 @@ surfaces
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
motion none; // this surface is not movng ==> none
}
}