0% found this document useful (0 votes)
34 views4 pages

Turning

The document contains a CNC program with instructions for machining different shapes. It includes commands for linear and circular interpolation to cut profiles like arcs, circles and chamfers using absolute coordinates. The program starts at coordinate 0,0 and cuts a series of shapes moving between defined points with specified radii and feed rates.

Uploaded by

C Mohan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views4 pages

Turning

The document contains a CNC program with instructions for machining different shapes. It includes commands for linear and circular interpolation to cut profiles like arcs, circles and chamfers using absolute coordinates. The program starts at coordinate 0,0 and cuts a series of shapes moving between defined points with specified radii and feed rates.

Uploaded by

C Mohan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

N1 G90 G71 G94 F100 ;

N2 G75 X0 Z0 ;
N3 M06 T06 D01 ;
N4 M03 S1000 ;
N5 M07 ;
N6 G00 X32 Z2 ;
N7 G01 X31 Z0 ;
N8 G01 X31 Z-70 ;
N9 G00 X32 Z-70 ;
N10 G00 X32 Z2 ;
N11 G01 X30 Z0 ;
N12 G01 X30 Z-70 ;
N13 G00 X32 Z-70 ;
N14 G00 X32 Z2 ;
N15 G01 X29 Z0 ;
N16 G01 X29 Z-70 ;
N17 G00 X32 Z-70 ;
N18 G00 X32 Z2 ;
N19 G01 X28 Z0 ;
N20 G01 X28 Z-70 ;
N21 G00 X32 Z2 ;
N22 G75 X0 Z0 ;
N23 M05 ;
N24 M09 ;
N25 M30
G90 Turning Cycle Example
N10 G50 S2000
G96 S180 M03
T0100
G00 X65.0 Z3.0 T0101
G90 X55.0 Z-20.0 F0.25
X50.0
X45.0
X40.0
X35.0
X30.0
X25.0
X20.5
X20.0
G00 X200.0 Z200.0 T0100
M30
O1234 (Corner Rounding and Chamfering Example);
T1 M6;
G00 G90 G54 X0. Y0. S3000 M3; (P1)
G43 H01 Z0.1 M08;
G01 Z-0.5 F20.;
Y40. ,R10.; (P2)
X50. ,C5.; (P3)
Y0.; (P4)
G00 Z0.1 M09;
G53 G49 Z0.;
G53 Y0.;
M30;
CNC PROGRAM
N40 G90 G00 X0 Y0
N50 G01 X-10 Y-20 R8 (P1)
N60 G01 X-50 R10 (P2)
N70 Y10 (P3)
N80 X-19.97 Y25.01 (P4)
N90 G03 X7.97 Y38.99 R18 (P5)
N100 G01 X30 Y50 (P6)
N110 G91 X10.1 Y-10.1 (P7)
N120 G90 G02 X59.9 Y20.1 R14 (P8)
N130 G01 X70 Y10 (P9)
N140 Y-20 R10 (P10)
N150 X50 (P11)
N160 G03 X30 R10 (P12)
N170 G01 X10 R8 (P13)
N180 X0 Y0
G M S T CODES EXPLANATION
CODE DESCRIPTION

G00 Rapid traverse


G01 Linear interpolation
G02 Circular interpolation CW
G03 Circular interpolation CCW
G90 Absolute command
G91 Increment command

You might also like