-
Notifications
You must be signed in to change notification settings - Fork 5
E Motion Control and Planning for Szenergy
Ignéczi Gergő edited this page Apr 12, 2023
·
4 revisions
Speed Planning and Control Longitudinal planning happens in the trajectory_planner node, while some limitations and modifications are done in the motion_control. The control command message contains a limited, gradient limited speed target. The low level controller controls the vehicle speed in closed loop. The planner and the control nodes do the following:
- trajectory_planner
- has two parameters: planner/maximumDrivingSpeed (default: 3 m/s) and planner/maximumApproachSpeed (default 0.75 m/s).
- the planner takes these two parameters and use them as GLOBAL MAXIMUM VELOCITIES for the following states:
- planner/maximumDrivingSpeed value for DriveOff and Driving
- planner/maximumApproachSpeed for Approach
- 0 m/s for all other states (Stop and Standby).
- as a final step, the planner makes a limitation (the resulting speed must not be higher than the GLOBAL MAXIMUM VELOCITIES):
- based on the length of the trajectory in front of the vehicle, the speed is reduced.
- for this, the motionControl/minimumAcceleration parameter is used (default -0.3 m/s^2). This parameter represents the vehicle capabilities to decelerate. If the remaining length of the trajectory is shorter than the distance needed to stop from the given vehicles speed, considering the minimum acceleration, then the target speed is reduced accordingly.
- motion_control
- the target speed planned by the planner is included in the trajectory_coefficients topic, its 5th element represents the target speed in m/s.
- the motion controller takes this value and outputs it.
- as a last step, the planned speed is gradient limited, considering the motionControl/minimumAcceleration and motionControl/maximumAcceleration parameters. This ensures harsh acceleration and braking.
English
- Wiki home
ROS2migration- Version handling processes
- Xavier installation
- Startup Nissan Leaf
- Debug ROS
- Autoware universe
- Autoware msgs
- How to open rosbag files
ROS 2humble jeston dockerROS 2DDSROS 2joystick WSLROS 2steam deck
Hungarian
- Topics
- Transforms, frames
- Cheatsheet 🔥
- SSH no password
- Boot, systemd
- Diagnostics
- NDT basics
- NDT comparison
- CUDA install
- Szimulátor indítása parkolási feladathoz
- WSL-el kapcsolatos hasznos infók
- GPS-based pointcloud map
- Rviz video
- LIDAR detekció topicjai
Further: