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
I hope you're all doing well. I'm currently working on a robotics control project using Python and the CasADi library. I have some doubts regarding the calculation of tau, especially in determining the actual joint positions compared to the desired ones.
I'm wondering if anyone could provide some guidance on how to approach this challenge. Specifically, I'm unsure whether it's more appropriate to use a forward kinematics law to estimate the real joint positions or if I should opt for more complex simulations. My goal is to strike a balance between computational efficiency and control precision.
Additionally, I'm unsure how to determine the values of ( q_{\text{des}} ) (desired joint position) and ( q ) (actual joint position). Should I use trajectory planning algorithms or rely on sensor feedback for ( q )?
I'm using the following equations in my project:
The equation to solve for joint acceleration (ddq) is:
ddq = M^-1(tau - h)
Where:
M is the mass matrix,
h are the bias forces, and
tau are the joint torques.
The joint torques (tau) are calculated using a proportional-derivative (PD) control law:
tau = Kp(q_des - q) - Kd*dq
Where:
Kp and Kd are the proportional and derivative gains respectively,
q_des is the desired joint position,
q is the actual joint position, and
dq is the actual joint velocity.
I would greatly appreciate any insights, suggestions, or references to relevant resources that could help me tackle this issue effectively.
Thank you very much in advance for your assistance!
Hi everyone,
I hope you're all doing well. I'm currently working on a robotics control project using Python and the CasADi library. I have some doubts regarding the calculation of tau, especially in determining the actual joint positions compared to the desired ones.
I'm wondering if anyone could provide some guidance on how to approach this challenge. Specifically, I'm unsure whether it's more appropriate to use a forward kinematics law to estimate the real joint positions or if I should opt for more complex simulations. My goal is to strike a balance between computational efficiency and control precision.
Additionally, I'm unsure how to determine the values of ( q_{\text{des}} ) (desired joint position) and ( q ) (actual joint position). Should I use trajectory planning algorithms or rely on sensor feedback for ( q )?
I'm using the following equations in my project:
The equation to solve for joint acceleration (ddq) is:
ddq = M^-1(tau - h)
Where:
The joint torques (tau) are calculated using a proportional-derivative (PD) control law:
tau = Kp(q_des - q) - Kd*dq
Where:
I would greatly appreciate any insights, suggestions, or references to relevant resources that could help me tackle this issue effectively.
Thank you very much in advance for your assistance!
https://github.com/tommasoandina1/Doosan_h2515/edit/main/doosan_h25215.py
The text was updated successfully, but these errors were encountered: