
Originally Posted by
Species8472
Leaving the formatting aside. There seems to be a difference in the machine's response to the "X" exit move. This can be best seen when making a blunt start thread (higbee). When using a G32 the to do the higbee the feather edge is removed but it makes a long ramp out of the first thread instead of a blunt start. When using a G92 cycle for the higbee the machine seems to get out of the way a lot faster on the the "X" re-track move so you get nice blunt start. It looks a lot the higbee on a thread gauge. What's going on in the controller to make this difference.
G32 is a thread cutting.
G92 is a threading cycle.
G32 make the machine behave a certain way (like G1 or G2 does).
When in G32...
- It ingores the Feedrate Override Control, performs at 100%
- It ingnores Single Block
- It looks at a "Dog" on the spindle and coordinates movement with rotation.
It's up to the programmer to control all it's movements...
Code:
G0 X1. Z.1
G32X.9F.0625
Z-1.
X1.
G0Z.1
G32 X.8 F.0625
Z-1.
X1.
G0Z.1
(SO ON AND SO FORTH)
The G92 cycle is a macro that performs thread cutting and looks to a machine paramater on how to behave at thread pullout. Too, it most likely uses G32 internally.
Code:
G0 X1. Z.1
G92X.1Z-1.F.0625
X.8
X.7
X.6
X.5
G0X1.
So depending on your paramater settings that effect G92 pull out and how you prgrammed the exit using G32, you can get a variety of different results.
Hope this helps.