ROS 导航模块move_base 输出的/cmd_vel topic指定了为机器人规划的线速度和角速度, 但是这个输出值还是不够友好导致机器人运动不够流畅,这就需要对这个输出速度值进行一个平滑的过程。ROS中的yocs_smoother_velocity是一个非常好的速度插值的包, 可以对速度、加速度进行限制,用来防止机器人的速度、转速变化过快或过慢, 是其运行平滑流畅. 下面做个具体介绍.
~raw_cmd_vel (geometry_msgs/Twist)
~odometry (nav_msgs/Odometry)
里程计数据,这个可以是直接的里程计,也可以是经过位姿估计调整后的里程计
~robot_cmd_vel (geometry_msgs/Twist)
这个数据一般是base_controller实际发送给机器人电机的速度值,把这个值发布出来,yocs_smoother_velocity可以参考这个值避免大的数据波动。
~smooth_cmd_vel (geometry_msgs/Twist)
输出的cmd_vel. Bas_ controller 的输入topic。不使用yocs_smoother_velocity的话,base controller的输入是move_base的输出/cmd_vel, 现在就是用/smooth_cmd_vel了
~accel_lim_v (double)
~accel_lim_w (double)
~speed_lim_v (double)
~speed_lim_w (double)
~decel_factor (double, default: 1.0)
减或加速度系数,需要紧急减速时有用,例如高惯性的机器人急刹车时,此系数越大,越有效
~frequency (double, default: 20.0)
输出数据的频率, 不管输入的数据频率,velocity smoother会保持这个频率发布数据
~robot_feedback (int, default: 0)
机器人对此发布数据的反馈。详细解释可以参考官方文档。
安装很简单了,Ubuntu18.04 melodic 为例,
运行sudo apt-get install ros-melodic-yocs_velocity_smoother
Launch 文件的配置例子如下:
<arg name="config_file" value="$(arg config_file)"/> //配置参数的yaml文件
配置参数是yaml文件格式,一个例子如下:
# Example configuration:
# - velocity limits are around a 10% above the physical limits
# - acceleration limits are just low enough to avoid jerking
# Mandatory parameters
speed_lim_v: 0.6
speed_lim_w: 0.5
accel_lim_v: 0.1
accel_lim_w: 0.25
# Optional parameters
frequency: 20.0
decel_factor: 20.0
# Robot velocity feedback type:
# 0 - none
# 1 - odometry
# 2 - end robot commands
robot_feedback: 0
http://wiki.ros.org/yocs_velocity_smoother