Question about planning in joint space #57
Replies: 3 comments 4 replies
-
Regarding which constraints are violated, you can pass You can plan for two end-effectors to reach targets like this example: https://curobo.org/source/getting_started/2b_isaacsim_examples.html#multi-arm-reacher We haven't added graph planner to the joint space planning api. We can look into this as a feature if the multi end-effector reacher is not working for you. |
Beta Was this translation helpful? Give feedback.
-
We added graph planner to the joint space planning mode. We also tuned the cost terms. Try out the latest release and let us know if joint space planning is better for your use case. |
Beta Was this translation helpful? Give feedback.
-
We also improved multi arm planning in the latest release so that might also resolve the issues you had with plan_single() |
Beta Was this translation helpful? Give feedback.
-
I am using a custom robot with 14 dof and two endeffectors and I want to generate motions in joint space. However, I am not quite sure what is the best way to do this. The
motion_gen.plan_single()
function solves IK internally so it cannot be used directly. I tried re-writing it and get a solution but also the status "Opt failed". This means that the optimizer fails generating a feasible motion.The second option I tried was using the function
motion_gen.plan_single_js()
. However, I ususally get the output " Fail: Constraints".Here is my code for the second option:
I have the following questions:
motion_gen.plan_single_js()
does only use the trajectory optimizer. Is there a way to use the graph planner in this setting and then optimize the result?Beta Was this translation helpful? Give feedback.
All reactions