-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add max_vel_trans parameter #19
base: noetic
Are you sure you want to change the base?
Conversation
To be merged after: #18 |
Can you make this PR independent of the other? |
@renan028 I have removed the acceleration constraint parts from this pr and it seems to be working fine. max_vel_trans.mp4 |
xt::view(state.cvy, xt::all(), xt::range(0, -1)); | ||
const bool is_holo = isHolonomic(); | ||
const double max_vel_trans = control_constraints_.max_vel_trans; | ||
for (unsigned int i = 0; i != state.vx.shape(0); i++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Q: can't we do colum-major access as they do with eigen:
https://github.com/ros-navigation/navigation2/blob/main/nav2_mppi_controller/include/nav2_mppi_controller/motion_models.hpp#L83
?
(invert i with j)
nice! looks good |
AB#48593