What's new
What's new

G72 Cuts more than programed

KevinEwards

Plastic
Joined
Aug 15, 2018
Hey I can't find any one with this problem. I was working on a part and using my Doosan Lynx 220 Turning center. Graphed before running the part. The machine wants to cut .030 more than I programmed.

M00;
;
;
T101;
G50 S3000;
G96 S500 M03;
G00 G54 G42 X2.3 Z0.25;
M08;
G72 W0.05 R0.01 (0.05 IS TO SEED UP SIM);
G72 P05 Q09 U0.0 W0.0 F0.002;
N05 G01 X2.3 Z0.0;
Z0.0;
N09 X-0.033;
;
;

The last cut is Z-0.030 when it should be Z0.0
Many thanks in advanc.
 
Probably your cutter comp G42. Try it without.


When i run a G72 it would look like this:
T101;
G50 S3000;
G96 S500 M03;
G00 G54 G40 X2.3 Z0.25;
M08;
G72 W0.05 R0.01 (0.05 IS TO SEED UP SIM);
G72 P05 Q09 F0.002;
N05 G0 Z0.0;
N09 G1 X-0.033;
 
I'm pretty sure the G42 needs to be in the G72 cycle on the N05 line.
Even though the G72 doesn't read the G42 INSIDE the P and Q lines, the G70 will. And since you have it turned on before the cycle, that might be where your .03 is coming from... assuming you have .03 in your comp.
 
Hazzert, I used FingerCAM and I have tip 3 with a 0.015 R in tool geometry
Tom the G72 was an after thought. I am still learning G-Code at tech and thought a G71 could handle the whole thing.
I'll try turning off TNRC.
 
Hey I can't find any one with this problem. I was working on a part and using my Doosan Lynx 220 Turning center. Graphed before running the part. The machine wants to cut .030 more than I programmed.

M00;
;
;
T101;
G50 S3000;
G96 S500 M03;
G00 G54 G42 X2.3 Z0.25;
M08;
G72 W0.05 R0.01 (0.05 IS TO SEED UP SIM);
G72 P05 Q09 U0.0 W0.0 F0.002;
N05 G01 X2.3 Z0.0;
Z0.0;
N09 X-0.033;
;
;

The last cut is Z-0.030 when it should be Z0.0
Many thanks in advanc.

Hello Kevin,

1. As Tom points out, there is no need whatsoever in using TNR Comp on a Face Cut that is perpendicular to the Z axis.

2. The tool is to the Left of the Tool Path in the direction it travels, accordingly, G41 should be used, not G42; that is the reason for your over-cut.

Regards,

Bill
 








 
Back
Top