Azzera filtri
Azzera filtri

How can I draw delta robot workspace in 3D graphic?

10 visualizzazioni (ultimi 30 giorni)
Hello
I want to know how to draw a 3D graphic of workspace of my delta robot as shown in the image below.
I got forward kinematics & inverse kinematics MATLAB code for the robot.
Please help me out. I can't even find a clue....

Risposte (1)

Abhinaya Kennedy
Abhinaya Kennedy il 6 Giu 2024
Here are the general steps involved in visualizing a delta robot workspace using MATLAB:
  1. Define the Workspace Boundaries: Set the range of desired positions (x, y, and z) that the end effector of your robot should reach within the workspace.
  2. Sample the Workspace: Iterate through the defined positions in steps that are small enough to capture the detail of your workspace.
  3. Use Forward Kinematics: For each sampled position, use your forward kinematics code to calculate the corresponding joint angles required to reach that position.
  4. Filter Out Inaccessible Points: Some calculated joint angle combinations may not be reachable by the robot due to its physical limitations.
  5. Plot the Workspace: Use the collection of reachable positions (x, y, z) to create a 3D plot of the workspace.
There are several ways to visualize the workspace in MATLAB, including scatter plots, mesh plots, or isosurface plots. The best method will depend on the specific information you want to convey.
You can look into this link to explore the various ways of creating 3D plots: https://www.mathworks.com/help/matlab/visualize/creating-3-d-plots.html

Community Treasure Hunt

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

Start Hunting!

Translated by