What's new
What's new

Multiple programs used for just OD bevel Pin threading connection

P.D

Plastic
Joined
Jun 18, 2021
Hi new here,
working on a lathe fanuc controller.
using CIMCO 7.1 as my CAM
gcode.

turning same thread connections that require different OD bevel dimensions (45' chamfers)on different work pieces depending on the Overall OD.

the problem i am trying to solve is we have 3-5 sets of programs tuning the exact same thread for each size of connection we cut and is using up all the memory. my goal is to seek assistance in converting it into 1 program and just changing the x and z values on the program at the machine itself. EX) a mazak mazatrol so i dont have to delete and reload programs back and forth when required.


ex of program used (end of finishing turn)
N65 X5.2189 Z-4.4376
N66 X5.2263 Z-4.4375 F.006
N67 X5.9588
N68 G3 X6.025 Z-4.4512 R.0469 F.013
N69 G1 X6.739 Z-4.8082
N70 X6.8097 Z-4.7728
N71 X6.8252 Z-4.7651 F.2667
N72 G97 S252
N73 M9
N74 G53 X0. Z-50.
N75 M1


thanks in advance
 
What do you mean by thread connection? Also I wasnt aware of cimco having any cam capabilities.
 
Hi new here,
working on a lathe fanuc controller.
using CIMCO 7.1 as my CAM
gcode.

turning same thread connections that require different OD bevel dimensions (45' chamfers)on different work pieces depending on the Overall OD.

the problem i am trying to solve is we have 3-5 sets of programs tuning the exact same thread for each size of connection we cut and is using up all the memory. my goal is to seek assistance in converting it into 1 program and just changing the x and z values on the program at the machine itself. EX) a mazak mazatrol so i dont have to delete and reload programs back and forth when required.


ex of program used (end of finishing turn)
N65 X5.2189 Z-4.4376
N66 X5.2263 Z-4.4375 F.006
N67 X5.9588
N68 G3 X6.025 Z-4.4512 R.0469 F.013
N69 G1 X6.739 Z-4.8082
N70 X6.8097 Z-4.7728
N71 X6.8252 Z-4.7651 F.2667
N72 G97 S252
N73 M9
N74 G53 X0. Z-50.
N75 M1


thanks in advance

Something like this but you would have to keep going I naturally only did the one line.

#101 = 6.739(Outside diameter)

N65 X5.2189 Z-4.4376
N66 X5.2263 Z-4.4375 F.006
N67 X5.9588
N68 G3 X6.025 Z-4.4512 R.0469 F.013
N69 G1 X#101 Z-4.4512-[#101-6.025]/2
N70 X6.8097 Z-4.7728
N71 X6.8252 Z-4.7651 F.2667
N72 G97 S252
N73 M9
N74 G53 X0. Z-50.
N75 M1
 








 
Back
Top