@@ -90,7 +90,7 @@ struct RobotConstants
9090
9191 // The maximum speed that the trajectory planner is allowed to command the robot to
9292 // move at, while still leaving headroom for the PID to apply correction on lag. [m/s]
93- float robot_max_speed_trajectory_m_per_s ;
93+ float robot_trajectory_max_speed_m_per_s ;
9494
9595 // The maximum acceleration achievable by our robots [m/s^2]
9696 float robot_max_acceleration_m_per_s_2;
@@ -159,14 +159,14 @@ constexpr RobotConstants createRobotConstants()
159159
160160 // Robot's linear movement constants
161161 .robot_max_speed_m_per_s = 3 .0f ,
162- .robot_max_speed_trajectory_m_per_s = 2 . 5f ,
163- .robot_max_acceleration_m_per_s_2 = 2 .0f ,
164- .robot_max_deceleration_m_per_s_2 = 1 . 5f ,
162+ .robot_trajectory_max_speed_m_per_s = 3 . 0f ,
163+ .robot_max_acceleration_m_per_s_2 = 3 .0f ,
164+ .robot_max_deceleration_m_per_s_2 = 3 . 0f ,
165165
166166 // Robot's angular movement constants
167- .robot_max_ang_speed_rad_per_s = 6 .0f ,
168- .robot_max_ang_speed_trajectory_rad_per_s = 5 .0f ,
169- .robot_max_ang_acceleration_rad_per_s_2 = 10 .0f ,
167+ .robot_max_ang_speed_rad_per_s = 10 .0f ,
168+ .robot_max_ang_speed_trajectory_rad_per_s = 7 .0f ,
169+ .robot_max_ang_acceleration_rad_per_s_2 = 30 .0f ,
170170
171171 .wheel_radius_meters = 0 .03f ,
172172
0 commit comments