wrong motion of SCARA robot in dynamic

1 visualización (últimos 30 días)
elham
elham el 1 de Jul. de 2024
Respondida: Umar el 2 de Jul. de 2024
I have implemented a SCARA RRP robot in Simulink Matlab. The robot's movement is carried out correctly using kinematics, but when I use the output data from kinematics as the input for dynamics, the robot performs a rotational and unproductive movement... Should I perform any specific calculations on my trajectories in the dynamics input?

Respuestas (2)

Umar
Umar el 2 de Jul. de 2024
Hi Elham,
The only thing that comes to my mind to check if your trajectories consider the dynamics of the system accurately. You may need to incorporate additional calculations to account for dynamic effects and optimize the robot's performance. By refining your trajectory inputs to reflect the dynamics of the SCARA robot, you can enhance its behavior and achieve more accurate simulations.
Hope this will help you get started.
  1 comentario
elham
elham el 2 de Jul. de 2024
Do you have any solutions in this regard? I would appreciate it if you could guide me.

Iniciar sesión para comentar.


Umar
Umar el 2 de Jul. de 2024

Hi Elham,

I can definitely help you guide by providing an example to enhance your trajectory planning by considering dynamics in Matlab:

function optimizedTrajectory = planDynamicTrajectory(initialTrajectory)

    % Perform dynamic calculations here
    % Consider factors like inertia, friction, and motor dynamics
    optimizedTrajectory = initialTrajectory; % Placeholder, replace with actual optimized trajectory
end

In the planDynamicTrajectory function, you can implement the necessary dynamic calculations based on the specific dynamics of your SCARA robot. By updating the trajectory planning process with these calculations, you can improve the accuracy of your simulations and enhance the robot's performance.

Categorías

Más información sobre Robotics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by