0% found this document useful (0 votes)
65 views1 page

Programming For Turning Cycle

The G90 cycle performs four distinct moves to remove stock in a parallel tool path for turning operations. It rapidly moves to the X position, feeds to the Z position, feeds back to the start X position, and then rapidly retracts to the start Z position. The format specifies the X and Z coordinates and feed rate. An example program uses the G90 cycle to define multiple depth of cuts by progressively moving to lower X positions at the specified Z depth and feed rate to turn down the material.

Uploaded by

Sandeep Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
65 views1 page

Programming For Turning Cycle

The G90 cycle performs four distinct moves to remove stock in a parallel tool path for turning operations. It rapidly moves to the X position, feeds to the Z position, feeds back to the start X position, and then rapidly retracts to the start Z position. The format specifies the X and Z coordinates and feed rate. An example program uses the G90 cycle to define multiple depth of cuts by progressively moving to lower X positions at the specified Z depth and feed rate to turn down the material.

Uploaded by

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

Programming For Turning Cycle (G90)

Turning Cycle (G90):


This cycle is used for stock removal in parallel tool path. This cycle performs four distinct moves with one
line of information. It is equivalent of
Rapid to X position.

Feed to Z position.

Feed to start X position.

Rapid to start Z position.

Format:
X Diameter to which the movement is being made.
Z Z-axis coordinate to which the movement is being made.
F Feed Rate.
O1004

Program Name

G21 G98

Initial settings

G28 U0 W0

Going to home position

T0101

Tool change position No. 01

M03 S1200

Spindle clockwise with 1200 RPM

G00 X26 Z5

Move tool entry point of X33 Z5 at rapid traverse

G90 X24 Z-26 F80

Calling G90 Cycle and defining first depth of cut

X23

Defining second depth of cut

X22
X21
G90 X20 Z-14 F80
X19
X18
X17
X16
X15
G28 U0 W0
M05
M30

You might also like