1. Introduction — Why Automatic Tool Setting Matters in CNC Machines
Tool calibration (“tool setting”) is fundamental to CNC machining accuracy.
Traditional manual calibration:
- Is time-consuming
- Depends on operator skill
- Increases scrap risk
- Causes downtime
Automatic tool setting with a tool setter greatly improves:
- Z-height accuracy
- Repeatability
- Production efficiency
This article explains tool setter working principles, wiring, PLC logic, and troubleshooting.
2. Working Principles of Tool Setters
Tool setters detect the exact moment when the tool touches the probe.
2.1 Contact (Electrical Conductive) Tool Setter
Operation:
- Tool tip touches the conductive surface
- Circuit closes and sends a trigger signal
- PLC records the contact point
Advantages:
Simple and inexpensive.
2.2 Pressure-Type Tool Setter
Uses mechanical displacement + switch sensing.
More durable for harsh environments.
2.3 Laser Tool Setter (Non-Contact)
Features:
- High precision
- Detect broken tools
- No physical wear
Used in high-end CNC machines.
3. Tool Setter Signal Circuit
3.1 Tool Setter → PLC Input Wiring
Connected to digital input (X point):
- NO / NC contact
- 24V input
- Shielded cable recommended
Conductive type: the tool and probe must share a reference ground.
3.2 Choosing NO / NC
- NO (Normally Open): closes when tool touches probe
- NC (Normally Closed): opens on contact — safer in case of cable damage
3.3 Shielded Cable
Reduces signal noise from:
- Spindles
- Servo motors
- VFDs
4. PLC Logic for Automatic Tool Setting
A typical automatic tool setting cycle:
4.1 Slow Down the Z Axis Before Probe Contact
High speed → risk of damage
Use:
- Fast descent to safe height
- Switch to slow descent near probe
4.2 Detect Trigger Signal
PLC monitors input:
IF X_ToolSetter = ON THEN
Stop Z Axis
END_IF
4.3 Stop Z Movement & Record Position
PLC reads:
- Current encoder position
- Current servo pulse count
- Current Z value
This becomes tool length reference.
4.4 Apply Offset Compensation
Store offset value:
Z_Offset = Z_ProbePosition - Z_ToolTouchPosition
PLC/CNC system updates tool length table.
4.5 Return to Safe Height
After calibration, Z retracts automatically.
5. CNC Operator Workflow
Steps:
- Return to machine home
- Select “Auto Tool Setting” mode
- Move tool above probe
- Start auto calibration cycle
- System detects tool touch
- Machine stores Z offset
Used daily in CNC machining.
6. Common Engineering Problems
6.1 Tool Setter Not Sensitive
Causes:
- Dirt/oil buildup
- Weak electrical contact
- Probe aging
6.2 Contact Oxidation
Solution:
- Clean probe surface
- Apply anti-oxidation coating if needed
6.3 Signal Noise Causing False Triggers
Causes:
- Long cable
- EMI from VFD
- Poor grounding
Solutions:
- Shielding
- Ferrite cores
- Using NC logic
6.4 Incorrect Offset Value
Often caused by:
- Wrong approach speed
- Wrong zero reference
- Tool slipping in holder
7. Best Practices
✔ Use High-Speed Input for Tool Setter Signal
Reduces risk of missing trigger pulse.
✔ Clean the Probe Before Calibration
Improves consistency.
✔ Use “Slow Approach Zone”
Reduce speed before final contact.
✔ Apply Debounce Filtering
Removes false triggers.
Tambah komentar
Anda harus masuk untuk berkomentar.