RoboDK Forum
Simulation of Robotiq-2F85 Gripper- Printable Version

+- RoboDK Forum (//www.sinclairbody.com/forum)
+-- Forum: RoboDK (EN) (//www.sinclairbody.com/forum/Forum-RoboDK-EN)
+ - - -论坛:通用RoboDK问题(//www.sinclairbody.com/forum/Forum-General-questions-about-RoboDK)
+--- Thread: Simulation of Robotiq-2F85 Gripper (/Thread-Simulation-of-Robotiq-2F85-Gripper)

Pages: 1 2


Simulation of Robotiq-2F85 Gripper-vasu536-03-30-2020

Hi,

I am currently trying to teach the current position by adjusting the d1 parameter of the Gripper robot and try to set it as a target and when I simulate it by clicking move to target the gripper fingers are not moving as expected. Can some one help me with how I can use this robotic gripper in tamdem with a UR3e arm to generate simulation programs


RE: Simulation of Robotiq-2F85 Gripper-Jeremy-03-31-2020

Hi vasu536,

Take a look at this webinar to learn how to use the 2 fingers gripper mechanisms in RoboDK:
https://youtu.be/HN9bHHGyVOk

Jeremy


RE: Simulation of Robotiq-2F85 Gripper-vasu536-04-01-2020

Hi. Thank you for the reply. That video helped alot. Also, how do I create custom objects in robodk. For example I need for the robot to move a wooden block of specific dimensions from point A to B along X-direction.


RE: Simulation of Robotiq-2F85 Gripper-Jeremy-04-01-2020

Hi Vasu,

You can simply drag and drop any .step, .iges, .stl file in RoboDK to import a custom object.
You cannot create the object in RoboDK, it needs to be created in a CAD software.

Jeremy


RE: Simulation of Robotiq-2F85 Gripper-vasu536-04-02-2020

Thank you very much for your response. Actually I am evaluating RoboDK software currently under the direction of my advisor who is contemplating getting the software as we work a lot on industrial and assistive robots (UR3s, UR5s, Kuka, Jaco). I want to know if we can generate feedback controllers in the simulation based on information from the inbuilt force sensor/external cameras. If yes, could you point me towards a tutorial where I start?

Thank you


RE: Simulation of Robotiq-2F85 Gripper-Jeremy-04-02-2020

Hi vasu,

That's possible, but you will need to use RoboDK's API.
More info here://www.sinclairbody.com/doc/en/PythonAPI/intro.html

Jeremy


RE: Simulation of Robotiq-2F85 Gripper-vasu536-04-02-2020

I am currently learning the RoboDK API for python. Could you point me out exactly where they are talking about this feature. I am having trouble finding it.


RE: Simulation of Robotiq-2F85 Gripper-Jeremy-04-03-2020

This is not an already developed integration, the API will let you interface the robot and RoboDK if, and only if, the robot controller lets you export the data from the force sensor and camera to an external PC.

But a good starting point could be the "UR_ActivateMonitoring" macro. You can find this macro in your RoboDK local library.
(Top left -> Blue folder -> Macros)

Jeremy


RE: Simulation of Robotiq-2F85 Gripper-vasu536-04-06-2020

What does this sentence mean "robot controller lets you export the data from the force sensor and camera to an external PC."? I can't quite follow


RE: Simulation of Robotiq-2F85 Gripper-Jeremy-04-06-2020

Simply that the robot needs to have a way to communicate with the PC running RoboDK.
And more than just communication, the robot controller needs to be able to send the data of the force sensor in realtime. This is part of the project is the integration part. You need to find a way to retrieve the data from the controller and push it to the Python script that will manage RoboDK.
Once you find a way to send the data in realtime from the controller to the PC running RoboDK, the API we provide will let you manage this data and make your robot react according to it.

Have a great day.
Jeremy