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
We (with @SamHybz) need to set symbolic parameters in the biorbd_model but we failed to do it. here is a minimal example. It works for segment with DOF but not if there is no DOF.
importbiorbd_casadiasbiorbdfrombiorbd_casadiimportRotoTrans# Fail Process finished with exit code 139 (interrupted by signal 11:SIGSEGV)sym_rototranslation_matrix=RotoTrans(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)
biorbd_model.segment(1).setLocalJCS(biorbd_model, sym_rototranslation_matrix)
# Ideally but fails tooz_rotation_angle=MX.sym("z_rot", 1, 1)
sym_rototranslation_matrix=RotoTrans.fromEulerAngles(rot=angles, trans=MX.zeros(3, 1), seq="xyz")
biorbd_model.segment(1).setLocalJCS(biorbd_model, sym_rototranslation_matrix)
We (with @SamHybz) need to set symbolic parameters in the biorbd_model but we failed to do it. here is a minimal example. It works for segment with DOF but not if there is no DOF.
With the pendulum
The text was updated successfully, but these errors were encountered: