Canned Cycles G81 thru G89

The canned cycles G81 through G89 have been implemented as described in this section. Two examples are given with the description of G81 below.
 

Contents:
o G81 Cycle
+ Example
+ Example
o G82 Cycle
o G83 Cycle
o G84 Cycle
o G85 Cycle
o G86 Cycle
o G87 Cycle
o G88 Cycle
o G89 Cycle

 

All canned cycles are performed with respect to the currently selected plane. Any of the three planes (XY, YZ, ZX) may be selected. Throughout this section, most of the descriptions assume the XY-plane has been selected. The behavior is always analogous if the YZ or XZ-plane is selected.

 

Rotational axis words are allowed in canned cycles, but it is better to omit them. If rotational axis words are used, the numbers must be the same as the current position numbers so that the rotational axes do not move.

 

All canned cycles use X, Y, R, and Z numbers in the NC code. These numbers are used to determine X, Y, R, and Z positions. The R (usually meaning retract) position is along the axis perpendicular to the currently selected plane (Z-axis for XY-plane, X-axis for YZ-plane, Y-axis for XZ-plane). Some canned cycles use additional arguments.

 

For canned cycles, we will call a number “sticky” if, when the same cycle is used on several lines of code in a row, the number must be used the first time, but is optional on the rest of the lines. Sticky numbers keep their value on the rest of the lines if they are not explicitly programmed to be different. The R number is always sticky.

 

In incremental distance mode: when the XY-plane is selected, X, Y, and R numbers are treated as increments to the current position and Z as an increment from the Z-axis position before the move involving Z takes place; when the YZ or XZ-plane is selected, treatment of the axis words is analogous. In absolute distance mode, the X, Y, R, and Z numbers are absolute positions in the current coordinate system.

 

The L number is optional and represents the number of repeats. L=0 is not allowed. If the repeat feature is used, it is normally used in incremental distance mode, so that the same sequence of motions is repeated in several equally spaced places along a straight line. In absolute distance mode, L > 1 means “do the same cycle in the same place several times,” Omitting the L word is equivalent to specifying L=1. The L number is not sticky.

 

When L>1 in incremental mode with the XY-plane selected, the X and Y positions are determined by adding the given X and Y numbers either to the current X and Y positions (on the first go-around) or to the X and Y positions at the end of the previous go-around (on the repetitions). The R and Z positions do not change during the repeats.

 

The height of the retract move at the end of each repeat (called “clear Z” in the descriptions below) is determined by the setting of the retract mode: either to the original Z position (if that is above the R position and the retract mode is G98, OLD_Z), or otherwise to the R position. See Section 3.5.20

 

It is an error if:
· X, Y, and Z words are all missing during a canned cycle,
· a P number is required and a negative P number is used,
· an L number is used that does not evaluate to a positive integer,
· rotational axis motion is used during a canned cycle,
· inverse time feed rate is active during a canned cycle,
· cutter radius compensation is active during a canned cycle.

 

When the XY plane is active, the Z number is sticky, and it is an error if:
· the Z number is missing and the same canned cycle was not already active,
· the R number is less than the Z number.

 

When the XZ plane is active, the Y number is sticky, and it is an error if:
· the Y number is missing and the same canned cycle was not already active,
· the R number is less than the Y number.

 

When the YZ plane is active, the X number is sticky, and it is an error if:
· the X number is missing and the same canned cycle was not already active,
· the R number is less than the X number.
3.5.16.1 Preliminary and In-Between? Motion

 

At the very beginning of the execution of any of the canned cycles, with the XY-plane selected, if the current Z position is below the R position, the Z-axis is traversed to the R position. This happens only once, regardless of the value of L.

 

In addition, at the beginning of the first cycle and each repeat, the following one or two moves are made:

 

* 1. a straight traverse parallel to the XY-plane to the given XY-position,
* 2. a straight traverse of the Z-axis only to the R position, if it is not already at the R position.

 

If the XZ or YZ plane is active, the preliminary and in-between motions are analogous.

 

G81 Cycle

 

The G81 cycle is intended for drilling. Program G81 X- Y- Z- A- B- C- R- L-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate to the Z position.
* 2. Retract the Z-axis at traverse rate to clear Z.

 

Example

 

Example 1. Suppose the current position is (1, 2, 3) and the XY-plane has been selected, and the following line of NC code is interpreted.

 

G90 G81 G98 X4 Y5 Z1.5 R2.8

 

This calls for absolute distance mode (G90) and OLD_Z retract mode (G98) and calls for the G81 drilling cycle to be performed once. The X number and X position are 4. The Y number and Y position are 5. The Z number and Z position are 1.5. The R number and clear Z are 2.8. Old Z is 3. The following moves take place.

 

* 1. a traverse parallel to the XY-plane to (4,5,3)
* 2. a traverse parallel to the Z-axis to (4,5,2.8)
* 3. a feed parallel to the Z-axis to (4,5,1.5)
* 4. a traverse parallel to the Z-axis to (4,5,3)

 

Example

 

Example 2. Suppose the current position is (1, 2, 3) and the XY-plane has been selected, and the following line of NC code is interpreted.

 

G91 G81 G98 X4 Y5 Z-0.6 R1.8 L3

 

This calls for incremental distance mode (G91) and OLD_Z retract mode (G98) and calls for the G81 drilling cycle to be repeated three times. The X number is 4, the Y number is 5, the Z number is -0.6 and the R number is 1.8. The initial X position is 5 (=1+4), the initial Y position is 7 (=2+5), the clear Z position is 4.8 (=1.8+3), and the Z position is 4.2 (=4.8-0.6). Old Z is 3.

 

The first move is a traverse along the Z-axis to (1,2,4.8), since old Z < clear Z.

 

The first repeat consists of 3 moves.

 

* 1. a traverse parallel to the XY-plane to (5,7,4.8)
* 2. a feed parallel to the Z-axis to (5,7, 4.2)
* 3. a traverse parallel to the Z-axis to (5,7,4.8)

 

The second repeat consists of 3 moves. The X position is reset to 9 (=5+4) and the Y position to 12 (=7+5).

 

* 1. a traverse parallel to the XY-plane to (9,12,4.8)
* 2. a feed parallel to the Z-axis to (9,12, 4.2)
* 3. a traverse parallel to the Z-axis to (9,12,4.8)

 

The third repeat consists of 3 moves. The X position is reset to 13 (=9+4) and the Y position to 17 (=12+5).

 

* 1. a traverse parallel to the XY-plane to (13,17,4.8)
* 2. a feed parallel to the Z-axis to (13,17, 4.2)
* 3. a traverse parallel to the Z-axis to (13,17,4.8)

 

G82 Cycle

 

The G82 cycle is intended for drilling. Program G82 X- Y- Z- A- B- C- R- L- P-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate to the Z position.
* 2. Dwell for the P number of seconds.
* 3. Retract the Z-axis at traverse rate to clear Z.

 

G83 Cycle

 

The G83 cycle (often called peck drilling) is intended for deep drilling or milling with chip breaking. The retracts in this cycle clear the hole of chips and cut off any long stringers (which are common when drilling in aluminum). This cycle takes a Q number which represents a “delta” increment along the Z-axis. Program G83 X- Y- Z- A- B- C- R- L- Q-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate downward by delta or to the Z position, whichever is less deep.
* 2. Rapid back out to the clear_z.
* 3. Rapid back down to the current hole bottom, backed off a bit.
* 4. Repeat steps 1, 2, and 3 until the Z position is reached at step 1.
* 5. Retract the Z-axis at traverse rate to clear Z.

 

It is an error if:
· the Q number is negative or zero.

 

G84 Cycle

 

The G84 cycle is intended for right-hand tapping with a tap tool.
Program G84 X- Y- Z- A- B- C- R- L-

 

* 0. Preliminary motion, as described above.
* 1. Start speed-feed synchronization.
* 2. Move the Z-axis only at the current feed rate to the Z position.
* 3. Stop the spindle.
* 4. Start the spindle counterclockwise.
* 5. Retract the Z-axis at the current feed rate to clear Z.
* 6. If speed-feed synch was not on before the cycle started, stop it.
* 7. Stop the spindle.
* 8. Start the spindle clockwise.

 

The spindle must be turning clockwise before this cycle is used. It is an error if:
· the spindle is not turning clockwise before this cycle is executed.

 

With this cycle, the programmer must be sure to program the speed and feed in the correct proportion to match the pitch of threads being made. The relationship is that the spindle speed equals the feed rate times the pitch (in threads per length unit). For example, if the pitch is 2 threads per millimeter, the active length units are millimeters, and the feed rate has been set with the command F150, then the speed should be set with the command S300, since 150 x 2 = 300.

 

If the feed and speed override switches are enabled and not set at 100%, the one set at the lower setting will take effect. The speed and feed rates will still be synchronized.

 

G85 Cycle

 

The G85 cycle is intended for boring or reaming, but could be used for drilling or milling. Program G85 X- Y- Z- A- B- C- R- L-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate to the Z position.
* 2. Retract the Z-axis at the current feed rate to clear Z.

 

G86 Cycle

 

The G86 cycle is intended for boring. This cycle uses a P number for the number of seconds to dwell. Program G86 X- Y- Z- A- B- C- R- L- P-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate to the Z position.
* 2. Dwell for the P number of seconds.
* 3. Stop the spindle turning.
* 4. Retract the Z-axis at traverse rate to clear Z.
* 5. Restart the spindle in the direction it was going.

 

The spindle must be turning before this cycle is used. It is an error if:
· the spindle is not turning before this cycle is executed.

 

G87 Cycle

 

The G87 cycle is intended for back boring.
Program G87 X- Y- Z- A- B- C- R- L- I- J- K-

 

The situation, as shown in Figure 1, is that you have a through hole and you want to counterbore the bottom of hole. To do this you put an L-shaped tool in the spindle with a cutting surface on the UPPER side of its base. You stick it carefully through the hole when it is not spinning and is oriented so it fits through the hole, then you move it so the stem of the L is on the axis of the hole, start the spindle, and feed the tool upward to make the counterbore. Then you stop the tool, get it out of the hole, and restart it.

 

This cycle uses I and J numbers to indicate the position for inserting and removing the tool. I and J will always be increments from the X position and the Y position, regardless of the distance mode setting. This cycle also uses a K number to specify the position along the Z-axis of the controlled point top of the counterbore. The K number is a Z-value in the current coordinate system in absolute distance mode, and an increment (from the Z position) in incremental distance mode.

 

* 0. Preliminary motion, as described above.
* 1. Move at traverse rate parallel to the XY-plane to the point indicated by I and J.
* 2. Stop the spindle in a specific orientation.
* 3. Move the Z-axis only at traverse rate downward to the Z position.
* 4. Move at traverse rate parallel to the XY-plane to the X,Y location.
* 5. Start the spindle in the direction it was going before.
* 6. Move the Z-axis only at the given feed rate upward to the position indicated by K.
* 7. Move the Z-axis only at the given feed rate back down to the Z position.
* 8. Stop the spindle in the same orientation as before.
* 9. Move at traverse rate parallel to the XY-plane to the point indicated by I and J.
* 10. Move the Z-axis only at traverse rate to the clear Z.
* 11. Move at traverse rate parallel to the XY-plane to the specified X,Y location.
* 12. Restart the spindle in the direction it was going before.

 

When programming this cycle, the I and J numbers must be chosen so that when the tool is stopped in an oriented position, it will fit through the hole. Because different cutters are made differently, it may take some analysis and/or experimentation to determine appropriate values for I and J.

 

G88 Cycle

 

The G88 cycle is intended for boring. This cycle uses a P word, where P specifies the number of seconds to dwell. Program G88 X- Y- Z- A- B- C- R- L- P-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate to the Z position.
* 2. Dwell for the P number of seconds.
* 3. Stop the spindle turning.
* 4. Stop the program so the operator can retract the spindle manually.
* 5. Restart the spindle in the direction it was going.

 

G89 Cycle

 

The G89 cycle is intended for boring. This cycle uses a P number, where P specifies the number of seconds to dwell. program G89 X- Y- Z- A- B- C- R- L- P-

 

* 0. Preliminary motion, as described above.
* 1. Move the Z-axis only at the current feed rate to the Z position.
* 2. Dwell for the P number of seconds.
* 3. Retract the Z-axis at the current feed rate to clear Z.

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to Top