01-07-2022, 09:35 AM
Hey Guys,
I've come across a potential issue where the depth of G81 drilling-cycles is not translated correctly. I tried to narrow it down and there seems to be a problem with the fusion360 integration. I compared the .apt file that is generated and then loaded to RoboDK with one I created with the "Generative Machining APT"-Post in fusion.
The following program should drill from height 18mm to height 15mm, so 3mm deep. The first version is correct and in accordance to the ASCII Generative Machining Standard, however, as far as I can tell, the second version is not, because the GOTO-point is already at the bottom of the final hole.
Generative Machining APT:
RoboDK-integration APT:
Maybe I am missing something..
I've come across a potential issue where the depth of G81 drilling-cycles is not translated correctly. I tried to narrow it down and there seems to be a problem with the fusion360 integration. I compared the .apt file that is generated and then loaded to RoboDK with one I created with the "Generative Machining APT"-Post in fusion.
The following program should drill from height 18mm to height 15mm, so 3mm deep. The first version is correct and in accordance to the ASCII Generative Machining Standard, however, as far as I can tell, the second version is not, because the GOTO-point is already at the bottom of the final hole.
Generative Machining APT:
Code:
CYCLE/DRILL, 3, MMPM, 333.3, 103, RAPTO, 50
GOTO/130, 1830, 18
RoboDK-integration APT:
Code:
CYCLE/DRILL, 3., MMPM, 333.333344, 118., RAPTO, 50.
FEDRAT/333.333344, MMPM
GOTO/130., 1830., 15.
Maybe I am missing something..