Do you want to be a better CNC'er in 37 Seconds? Get Better Tool Life, Surface Finish, and Material Removal Rates Fast. It's that easy. You can install and get results now. |
![]() |
Canned Drilling Cycles |
What are Canned Drilling Cycles?
Until this point, all our motion has been done with G00/G01 for lines and G02/03 for arcs. In this chapter, we introduce the notion of "Canned Cycles", which allow more complex types of motion aimed at simplifying the programming of certain common operations such as drilling holes. Canned cycles are often modal just like the other motions. For example, once we select the high speed peck drilling cycle with G73, subsequent coordinates on later lines specify new hole locations where more peck drilling will be done.
What is "Peck Drilling"?
A term you'll hear a lot is "peck drilling". This is the practice of drilling a little ways (the peck distance), back off some distance, and then going back down to the bottom to take another peck. Think of the motion as being not unlike a woodpecker. The reason it's done is to evacuate the chips from the bore. Recutting chips is always a bad thing for tool life. There's only enough room down in the bore for the chips that fit in the flutes of the twist drill, and the deeper the hole, the harder it is to evacuate those chips out of the hole. Peck drilling helps in two ways. First, even a very short peck where the retraction is minimal helps to break off the chip resulting in shorter chips. Shorter chips are much easier to evacuate.
Second, if the twist drill retracts a substantial distance, this helps reduce the distance the helix of the twist drill has to carry chips.
One thing it that is important to avoid when peck drilling is letting the coolant or air/mist blast wash chips back down the hole. For that reason, the best peck drill cycles will not pull the twist drill completely clear of the hole.
There are some rules of thumb about when you need to start using a Peck Drilling Cycle as opposed to just plunging straight down. Most tooling manufacturers will suggest you start when the hole is 4 diameters deep. G-Wizard Calculator will remind you if you forget.
Different Types of Canned Drilling Cycles and Their Uses
Since there are quite a few different types of canned drilling cycles, it's easiest to classify them in tabular form:
G Code | Purpose | Peck | Retract | Bottom of Hole |
---|---|---|---|---|
G73 |
High-speed Peck Drilling for Shallow Holes |
Yes |
Rapid |
|
G74 |
Left-hand Tapping Cycle |
Feed |
Dwell -> Spindle CW |
|
G76 |
Fine Boring Cycle |
Rapid |
Oriented Stop |
|
G81 |
Drilling Cycle without Peck, |
Rapid |
||
G82 |
Spot Drilling Cycle |
Rapid |
Dwell |
|
G83 |
Peck Drilling for Deeper Holes |
Yes |
Rapid |
|
G84 |
Tapping Cycle |
Feed |
Dwell -> Spindle CCW |
|
G85 |
Boring Cycle |
Feed |
||
G86 |
Boring Cycle |
Rapid |
Spindle Stop |
|
G87 |
Back Boring Cycle |
Rapid |
Spindle CW |
|
G88 |
Boring Cycle |
Mnual |
Dwell -> Spindle Stop |
|
G89 |
Boring Cycle |
Feed |
Dwell |
As you can see, the cycles may be divided based on their purpose--drilling, boring, or tapping, whether they are peck cycles, how they retract, and anything special that happens at the bottom of the hole. For example, dwelling helps ensure a smooth bottom of hole finish and evacuates any chips from the bottom of the hole. Getting chips between the drill point and the hole bottom as the bit descends for another peck greatly increases tool wear, especially with work hardening materials like stainless steel.
Anatomy of a Basic Cycle: G81
There are a lot of parameters and options associated with the drilling cycles, so let's start with a relatively simple one: G81. G81 does no pecking and has no special operation at the bottom of the hole. It just goes down at the feedrate, and then retracts.
Let's use this example G81 block:
Z1.0 (Initial Z)
X10Y12 (XY for first hole)
G99 G81 R0.2 Z-0.7
X10Y14 (XY for second hole)
X10Y16 (XY for third hole)
G80 (Cancel canned cycle)
Here is a schematic of how it works:
Following along with the schematic:
- First, the machine rapids to the X and Y coordinates of the hole, or the corresponding pair of coordinates if a plane other than G17 is selected. For our example, those coordinates are X10Y12.
- Second, the tool rapids straight down to the R position, established by the "R" word of the cycle. We came in at a Z of 1.0". R is 0.2", so we rapid from 1.0" down to 0.2".
- Next we feed down an amount equal to Z. In other words, Z specifies the depth, not a particular coordinate. That depth is measured from R. So, with an R of 0.2", and a depth (Z) of 0.7", we are going down to Z = -0.5". Remember to do that math carefully, as R will always be a little above material top and you have to add it to the actual hole depth to get your Z.
- Lastly, we retract at rapids speed. Now retract can work in one of two ways, and is modified using G98 and G99.
Modifying Retract With G98 and G99
G98 and G99 are used to modify the retraction behavior of canned drilling cycles. If G98 is in effect (specified before the cycle such as the G99 shown above), retraction is back to the initial Z height. If G99 is in effect, retraction is to the R height. The option to retract to the original Z height using G98 is provided in case there are obstacles between the holes such as clamps or other features of the part.
Multiple Holes Until G80 Cancels the Cycle
As mentioned, these drilling cycles are modal. That means you can just real off a bunch of XY coordinates once the cycle is initiated, and the machine will happily execute the cycle at each location. To cancel the cycle, use G80. After executing the G80, the machine returns to G00 mode.
In the example above, we get 3 holes before the G80 cancels the canned cycle.
Simulating to Simplify, Understand, and Verify
By now, you're probably thinking the water is deep, it's cold, and it's moving pretty fast--canned cycles are complex!
It'll seem like it until you get used to them. The complexity is there to give you all the options you need to hand a myriad of situations. There is good news though, whether you're just trying to learn, or whether you're actively developing and testing canned cycles in your g-code. You can use a g-code simulator to help make them easier to understand and work with. If you haven't already, pop over to our G-Wizard G-Code Editor/Simulator and sign up. That will put a first class g-code simulator in your hands which will make understanding and working with canned cycles a whole lot easier.
Here is a shot of the portion of the GWE screen that shows a backplot of what the machine is doing as well as what we call a "hint" that explains the canned cycle in plain English:
Red lines are rapids and green lines are at feed speed...
The backplot clearly shows the three holes being drilled. The hint (the area in blue at the bottom) tells us the original line of code as well as 4 different hints:
- It reminds us that the G99 means to return to the initial R plane after each hole.
- It tells us G81 is a simple drilling cycle.
- We know retraction will be to Z = 0.2"
- Lastly, we know the bottom of the hole is at Z = -0.5", exactly where we wanted it.
It's really helpful to have these kinds of tools at hand when you're trying to work with canned cycles.
Relative vs Absolute and Repeats
In the G81 example above we saw how the canned cycle is modal, so we can just keep giving XY values and drill a buch of holes. There is another approach that can be used for multiple holes assuming they have regular spacing, and that's to use relative coordinates and repeats.
G82 - Drilling Cycle
G82 is a drilling cycle that doesn't peck, but instead dwells at the bottom of the hole. This increases the accuracy of the hole depth.
A typical G82 looks like this:
G82 XYZ R P F L
XY: Coordinates of the hole
Z: Hole bottom
R: Retract position in Z. Motions from initial Z to R are performed at rapids speeds. From R to hole bottom is done at feed speed.
P: Dwell time at bottom of hole.
F: Cutting feedrate
L: Number of repeats
Once the drill reaches the bottom of hole and has finished dwelling, retraction is at rapids speeds.
G83 - Deep Hole Peck Cycle
G83 is a drilling cycle that retracts all the way out of the hole with each peck. As such, it is well-suited to deeper holes than the G73 cycle can handle. G83 also allows for dwells at the bottom of the hole. This increases the accuracy of the hole depth.
A typical G83 looks like this:
G83 XYZ R P Q F L
XY: Coordinates of the hole
Z: Hole bottom
R: Retract position in Z. Motions from initial Z to R are performed at rapids speeds. From R to hole bottom is done at feed speed.
P: Dwell time at bottom of hole.
Q: Depth to increase on each peck.
F: Cutting feedrate
L: Number of repeats
Once the drill reaches the bottom of hole and has finished dwelling, retraction is at rapids speeds.
G84 - Tapping Cycle
G74 - Reverse (Left-hand) Tapping Cycle
G85 - Boring Cycle
G86 - Boring Cycle
G87 - Back Boring Cycle
G88 - Boring Cycle
G89- Boring Cycle
G76 - Precision Boring Cycle
Exercises
1. Dig out the programming book for your controller and read the chapter on canned cycles so you can see how they work.
2. Configure G-Wizard Editor properly for your controller's canned cycles.
3. Write some g-code that uses a canned drilling cycle.
4. Use the G-Wizard Conversational CNC tool in G-Wizard Editor to make a g-code program that uses canned drilling cycles. Take a look at how it works and compare to the program you wrote in #3.
Try the Free Trial Version of G-Wizard G-Code Editor...
No credit card required--just your name and email.
Next Article: Custom Deep Hole Drilling Cycles
Do you want to be a better CNC'er in 37 Seconds? Get Better Tool Life, Surface Finish, and Material Removal Rates Fast. It's that easy. You can install and get results now.
|
||||||||||||||||||
|