maxspahn / gym_envs_urdf

URDF environments for gym
https://maxspahn.github.io/gym_envs_urdf/
GNU General Public License v3.0
43 stars 14 forks source link

Commanding velocities to Prius #244

Open akansha2001 opened 8 months ago

akansha2001 commented 8 months ago

In the code, env.step(action) sends two commands for the motion of the Prius: the first is linear velocity, but it is not clear what the second command does: if it is angular velocity (as we assumed), the observations indicate very different values from the ones we command (however, the observed linear velocity is as expected). It would be very helpful if you could indicate what the second field is commanding to the vehicle (angular velocity or perhaps steering angle?).

maxspahn commented 8 months ago

The second action is the steering velocity, so how quickly you are turning the steering wheel.

akansha2001 commented 8 months ago

Thank you for clarifying