You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am using the diff_drive_controller, and I want the robot to accelerate slowly when speeding up and decelerate quickly to come to a stop. To achieve this, I have set min_acceleration and max_acceleration, and the robot behaves as expected when moving forward. However, when reversing, the acceleration is fast, and the deceleration is slow, so it does not work as expected.
Describe the solution you'd like
Would it be better to reverse the handling of min_acceleration and max_acceleration when reversing?
Thanks for reporting this, I'll have a look and fix that maybe with (or after) the PR in control_toolbox. We have a newer implementation of the speed limiter in the tricycle_controller package, where there is also a min_deceleration and max_deceleration parameter. Maybe we should consider using that one for all controllers, but it has different parameters and I'm not sure if we should change the well-established ones from diff_drive_controller.
Is your feature request related to a problem? Please describe.
I am using the
diff_drive_controller
, and I want the robot to accelerate slowly when speeding up and decelerate quickly to come to a stop. To achieve this, I have setmin_acceleration
andmax_acceleration
, and the robot behaves as expected when moving forward. However, when reversing, the acceleration is fast, and the deceleration is slow, so it does not work as expected.Describe the solution you'd like
Would it be better to reverse the handling of
min_acceleration
andmax_acceleration
when reversing?Describe alternatives you've considered
Additional context
I found the similar issue in ros_controllers(ros-controls/ros_controllers#290)
The text was updated successfully, but these errors were encountered: