Posts: 9
Threads: 3
Joined: Oct 2019
Reputation:
0
HI,
I have an old CRS A465 robot and it does not have the circular move function (MoveC, language is RAPL-3).
It does have a follow path function which requires an array of joint moves.
Is there an easy way to output a file with only joint moves, xy points or cartesian locations?
Cheers
Posts: 9
Threads: 3
Joined: Oct 2019
Reputation:
0
As an Update, i just noticed that if I import a curve from solidworks I do not get curcular move, Yay.
All i need to do now is split long linear moves (MoveL) in to shorter ones.
Is there a way to limit the length of linear moves or insert a linear move between two current linear moves?
Cheers
Posts: 9
Threads: 3
Joined: Oct 2019
Reputation:
0
HI Jacob,
Thanks for your reply I really appreciate it.
That code you linked to looks like it will be very useful.
You mentioned using point creation to divide up linear moves, could you please elaborate on this? Do you mean to use one of those API examples to create a point list for the whole program?
I will look into the API examples and try to nut out how to use them.
Thanks for the help
Cheers
Posts: 20
Threads: 4
Joined: Nov 2019
Reputation:
1
No problem, I wish my programming skills were faster! If you already have some linear moves you should be able to convert/extract those points. Then you can divide them into many points. You may also be able to create points off the curve since the many stepped linear move wont actually arc. I am not sure if there is an 3 point arc to MoveL in the api or not, but that could be another way to go if you are unable to extract points from a curve.
For the linear move dividing I believe it is example 5.4. It also moves along point list. Creating the points you could maybe do by making a machining project or curve follow project with your imported curve and then use a script to edit out the moveC's if any.
Another thought is that if you are able to use joint moves you could use MoveJ_Test from api to check if you break things or target is reachable instead of using MoveL's. Pretty sure you need your part and any jigs loaded in when you go for collision detection and move testing.
Posts: 9
Threads: 3
Joined: Oct 2019
Reputation:
0
Thanks Guys for your help with this issue, changing those options has split my linear moves exactly how I want.
I really appreciate the help.
Cheers