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
Yes, my model uses simple xdot=Vcos(theta), Ydot=Vsin(theta),
theta_dot=(v/L)tan(delta) . Your model is just an extension. So in your
hybrid A*, you will have 4 states, I believe (In my case, there are 3
states X, Y theta.) You maintain continuous and discrete states and so on.
I built a tutorial of this on youtube, You can check it.
A*- https://www.youtube.com/watch?v=CwD9elei0Ow
Hybrid A*-https://www.youtube.com/watch?v=QAzyG2DB8Io
Best
Jasvir.
Hi, jvirdi2
Thank you for your share!
I have one question about the bicycle model.
Where I read 'hybrid_a_star_optimised.py', I didn't see the bicycle kinematics model on 'find path' function
neighbour_x_cts = chosen_c_node[0] + (velocity * math.cos(math.radians(chosen_c_node[2]))) neighbour_y_cts = chosen_c_node[1] + (velocity * math.sin(math.radians(chosen_c_node[2]))) neighbour_theta_cts = math.radians(chosen_c_node[2]) + (velocity * math.tan(math.radians(delta))/(float(self.vehicle_length)))
Could use tell me how to use this model?
The text was updated successfully, but these errors were encountered: