RoboDK Forum
Question about MoveC- Printable Version

+- RoboDK Forum (//m.sinclairbody.com/forum)
+-- Forum: RoboDK (EN) (//m.sinclairbody.com/forum/Forum-RoboDK-EN)
+--- Forum: General questions about RoboDK (//m.sinclairbody.com/forum/Forum-General-questions-about-RoboDK)
+--- Thread: Question about MoveC (/Thread-Question-about-MoveC)



Question about MoveC-jacob70941-09-25-2020

Hello everyone!
Recently I'm doing a project making the robotic arm drawing full circles on specific plane.
The trajectory is shown in the picture down below.

The arm will start moving from the center to point c1 with MoveL command.
Then finish the circle with two MoveC commands from c1 to c3 and c3 back to c1.
However, there will always has a short slight stop between MoveC commands while running on RoboDK.
While running on the robot, the short slight stop becomes an abruptly stop.

有可能做一个光滑完整的循环在抢劫吗oDK?


RE: Question about MoveC-Albert-09-25-2020

By default RoboDK assumes that the robot does point to point movements (stopping at each point). So for each linear or circular movement it generates a uniform acceleration up to it reaches the maximum speed, then, uniform deceleration.

This behavior can be changed on the real robot from RoboDK if you use Program-Set Rounding instruction:
//m.sinclairbody.com/doc/en/Robot-Programs.html#InsSmooth
This instruction allows the robot to maintain a more constant speed while rounding the edges of the path, so the time will be faster on the real robot.


RE: Question about MoveC-jacob70941-10-05-2020

Thanks for the replied!
That solved the problem!