Setting/determining the speed of the TCP- 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: Setting/determining the speed of the TCP (/Thread-Setting-determining-the-speed-of-the-TCP) |
Setting/determining the speed of the TCP-NelsonV-07-14-2021 I am trying to accurately simulate the cycle time of my process using a UR10e and I found documentation stating that 1000 mm/sec is the typical max speed for the TCP of a UR10e. Is it accurate to set the robot speed (using set speed) to 1000 mm/sec to simulate the TCP moving at 1000 mm/sec or is there a different way to simulate how fast the TCP would be moving. Thank you! RE: Setting/determining the speed of the TCP-Vineet-07-14-2021 Hello, You can calculate the distance between the previous point and the present point. And if you know the time in between, you will get the TCP speed at that time. Attached script does the same.
Code:
def joints_changed(j1, j2, tolerance=0.0001):
Run the script, and then run any program on your station or on your real robot if connected to a real robot. Keep in mind the time interval of obtaining pose from the actual robot isevery 4 ms. You can read more about Cycle Time here://www.sinclairbody.com/doc/en/General.html#CycleTime RE: Setting/determining the speed of the TCP-Jeremy-07-20-2021 Juste take a look at this video:https://www.youtube.com/watch?app=desktop&v=08udQJTlM9g&feature=youtu.be Jeremy |