LeCAR-Lab / CoVO-MPC

Official implementation for the paper "CoVO-MPC: Theoretical Analysis of Sampling-based MPC and Optimal Covariance Design" accepted by L4DC 2024. CoVO-MPC is an optimal sampling-based MPC algorithm.

Home Page:https://lecar-lab.github.io/CoVO-MPC/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ› Wired single quadrotor dynamics

jc-bao opened this issue Β· comments

Video

meshcat_1694285145189.tar.mp4

Next step

design input to verify the dynamcis.

Problem identified as a visualizer issue

def set_frame(i, name, pos, quat):
    # convert quat from [x,y,z, w] to [w, x,y,z]
--> quat = np.array([quat[3], quat[0], quat[1], quat[2]])
    transform = tf.translation_matrix(pos) @ tf.quaternion_matrix(quat)

Please be careful for different quaternion definition in different packages.