0
1.3kviews
To prepare a CNC part program to mill the component as per the drawing. Assume thickness = 20mm
1 Answer
0
18views

enter image description here

SIMULATION MODEL :-

enter image description here

Absolute mode (G90)

Program Description
N1 G00 G71 G90 G40 G80; Rapid, Metric, Absolute, Cancel Tool comp & canned cycle
N2 T01 M06; Tool change, Use tool 1
N3 G43 M07; Curtter radius comp, coolant ON
N4 S1000 M03 Z50; Assume Spindle speed = 1000 rpm, clockwise ON
N5 G00 X10 Y10; Go to point (10,10)
N6 G01 Z-20 F100; Depth -20 mm. Assume feed = 100 mm/min
N7 G01 X60 Y10; Go to point (60,10)
N8 G01 X60 Y50; Go to point (60,50)
N9 G01 X40 Y70; Go to point (40,70)
N10 G01 X20 Y70; Go to point (20,70)
N11 G01 X10 Y60; Go to point (10, 60)
N12 G01 X20 Y60; Go to point (20,60)
N13 G01 X20 Y40; Go to point (20,40)
N14 G01 X10 Y40; Go to point (10,40)
N15 G01 X10 Y10; Go to point (10,10)
N16 G00 Z50; Rapid to z-axis
N17 G00 X100 Y100 Z50; Rapid go to any point away from job
N18 M09; coolant off
N19 M05; spindle off
N20 M30; End of program, machine stop.
Please log in to add an answer.