0
0
Ev-technologyConceptBeginner · 3 min read

G72 Facing Cycle in CNC Programming: What It Is and How to Use

The G72 facing cycle in CNC programming is a canned cycle used to automatically machine a flat surface (face) on a workpiece. It simplifies the process by controlling the tool to move back and forth across the face, removing material layer by layer until the desired depth is reached.
⚙️

How It Works

The G72 facing cycle works like a smart helper that machines a flat surface on the end of a workpiece. Imagine you want to smooth the top of a wooden block by moving a plane back and forth until the surface is even. The G72 cycle does this with a cutting tool on a CNC lathe.

It starts at a defined point and moves the tool across the face, cutting a layer of material. Then it retracts, steps down a little, and repeats the cut. This continues until the total depth you set is reached. This automatic back-and-forth motion saves time and ensures a smooth, flat finish without manually programming each pass.

💻

Example

This example shows a simple G72 facing cycle that machines a face 2 mm deep on a lathe. It starts at X100 and Z0, moves the tool across the face, and repeats until the depth is reached.
cnc
N10 G72 P100 Q200 U2.0 W0.2 F0.15
N100 G00 X100 Z0
N110 G72
N200 G00 X120 Z-10
Output
The tool moves from X100 Z0 across the face, cutting 2 mm deep in 0.2 mm steps with feed 0.15, then retracts to safe position.
🎯

When to Use

Use the G72 facing cycle when you need to quickly and accurately machine a flat surface on the end of a cylindrical workpiece. It is ideal for preparing the face before further turning or threading operations.

For example, if you have a metal rod that needs a smooth, flat end, the G72 cycle automates this task efficiently. It reduces programming time and ensures consistent results, especially useful in production environments where many parts require the same facing operation.

Key Points

  • G72 is a canned cycle for facing on CNC lathes.
  • It machines the face by repeated passes, stepping down each time.
  • Saves time by automating repetitive tool movements.
  • Requires setting start and end points, depth per pass, and feed rate.
  • Commonly used before other turning operations for a clean surface.

Key Takeaways

G72 automates facing by moving the tool back and forth to cut a flat surface.
It removes material in layers until the set depth is reached.
Use G72 to save programming time and get consistent facing results.
Set parameters like start/end points, depth per pass, and feed rate carefully.
Ideal for preparing workpiece ends before further machining.