Mastering the G72 Facing Cycle is a rite of passage for any CNC programmer. While most beginners start with the G71 longitudinal roughing cycle, G72 is its powerful, perpendicular sibling essential for large-diameter parts, shallow faces, and specific geometries where traditional turning isn’t efficient.
In this comprehensive guide, we will break down the G72 cycle from the ground up, covering its syntax, application, and the critical differences that set it apart from other canned cycles.
1. What is the G72 Facing Cycle?
The G72 Canned Cycle is a high-level G-code instruction used on CNC lathes to perform roughing operations primarily in the X-axis (radial) direction. While G71 removes material along the Z-axis (lengthwise), G72 removes material by “facing” into the part toward the centerline.
This cycle is an “end face stock removal cycle.” It allows you to define a complex final profile using a few lines of code, and the machine’s controller automatically calculates all the intermediate roughing passes required to reach that shape.
2. When to Use G72 vs. G71
Choosing between G71 and G72 depends on the direction of your stock.
- Use G71 (Turning Cycle): When you have a long, thin part where most of the material needs to be removed from the outside diameter (OD).
- Use G72 (Facing Cycle): When you have a large-diameter “pancake” part or a flange where the majority of the material is on the front face.
Pro Tip: G72 is often safer for thin, large-diameter parts because the cutting forces are directed more toward the spindle/chuck, reducing the risk of part deflection or “chatter.”
3. The Anatomy of G72: Syntax and Parameters
Most modern Fanuc and Haas controls use a two-line format for the G72 cycle. Each letter (address) tells the machine exactly how to behave.
The First Line: The Cutting Logic
G72 W... R... ;
- W (Depth of Cut): This is the amount of material removed in each pass along the Z-axis. Note: This is an incremental value.
- R (Retract): The distance the tool pulls back from the face before returning for the next pass. This prevents the tool from dragging against the fresh surface.
The Second Line: The Profile Definition
G72 P... Q... U... W... F... ;
- P (Start Block): The sequence number (N-line) where your part profile begins.
- Q (End Block): The sequence number where your part profile ends.
- U (Finishing Allowance in X): The amount of material to leave on the diameter for a final finishing pass.
- W (Finishing Allowance in Z): The amount of material to leave on the face for a final finishing pass.
- F (Feed Rate): The speed at which the tool moves during the roughing passes.
4. Programming Example: A Simple Step Face
Imagine we are facing a part with a finished diameter of 40mm and a total depth of 10mm.
G-Code
G00 X45.0 Z2.0 ; (Rapid to start position)
G72 W1.0 R0.5 ; (1mm depth of cut, 0.5mm retract)
G72 P10 Q20 U0.5 W0.1 F0.2 ; (Leave 0.5mm on X, 0.1mm on Z)
N10 G00 Z-10.0 ; (Start of profile - move to depth)
G01 X40.0 ; (Face to diameter)
Z0 ; (Move out to face)
N20 X45.0 ; (End of profile - back to start diameter)
G70 P10 Q20 ; (Optional: Run G70 for finishing pass)
Breakdown of the Logic
- Approach: The tool rapids to a safe clearance point (
X45.0 Z2.0). - Roughing: The G72 cycle takes 1mm deep “shaves” off the face.
- Pathing: It follows the path defined between
N10andN20. - Finishing: Once the roughing is done, the G70 cycle is called to remove the small
UandWallowances at a higher precision.
5. Key Rules and Best Practices
To avoid common alarms (like the dreaded “P/Q Non-Monotonic” error), keep these rules in mind:
Rule 1: Monotonicity
For a standard G72 (Type 1), the profile coordinates must always move in one direction (either consistently getting larger or smaller). If your part has a “pocket” or a valley, you need a controller that supports Type 2 Roughing, which requires you to include both X and Z movements in your P block.
Rule 2: Start and End Points
The tool must be positioned at a “Start Point” before the G72 call that is outside the final dimensions of the part. If you start the tool inside the part geometry, the machine will likely crash or throw an alarm.
Rule 3: Use the Right Tooling
Facing cycles put a lot of pressure on the tool’s side. Ensure you are using a tool with a suitable lead angle. A 90-degree tool (like a WNMG or CNMG) is standard, but check your tool’s clearance for the specific profile you are cutting.
6. Troubleshooting Common G72 Alarms
| Alarm Code | Meaning | Fix |
| P/Q Not Found | The controller can’t find the N-numbers. | Check your N-line numbering; ensure P and Q match. |
| Overcut | The tool is gouging the part. | Check your U and W values. Ensure your tool radius isn’t too large for the profile. |
| Non-Monotonic | The profile changes direction. | Ensure the X-values only increase or decrease. If it has a “dip,” use Type 2 formatting. |
Summary
The G72 cycle is an indispensable tool for efficient face-turning. By automating the stock removal process, it reduces thousands of lines of code into a simple, two-line command. This not only saves time but also makes your programs much easier to read and edit on the fly.
