I am having a little problem with a g83 peck drill cycle.I need to eather feed out of the hole or some how limit the rapid speed to 5% in the program before the canned cycle and turn it back to 100% after the canned cycle. Can one of you programming geniuses tell me if there is a way to do that.
Thanks
I do not know of any way to adjust the rapid rate from within a program and I have to admit it puzzles me why you want to do this. I guess if you have macros activated on your machine you could always write your own 'canned cycle' macro that would give you full control over everything. Without macros I think you will have to do it the hard way. Write a peck drill routine and put it in a subroutine then call this subroutine at every location you want to drill at.
An open mind is a virtue...so long as all the common sense has not leaked out.
I've had to do this on lathes never had a problem with mills( which I dont understand why) the reason I had to do it was due to chips building up and breaking the solid carbide drills I was using . I ended up long coding the program and used feed rates for the rapids and no canned cycles.
Geof
I always wondered if there was a way to adjust the g83 canned cycle to start feeding farther back from where the default is. isnt the default like .025 from the start of the last peck depth? ( I am not sure what the distance is just curious).
Delw
I can't recall anything about changing the rapid re-entry distance between pecks. The only adjustments I know about are the ones to reduce the peck increment as the hole goes deeper and the retract above R to provide better chip clearance and coolant entry into the hole.
An open mind is a virtue...so long as all the common sense has not leaked out.
What a trip this subject came up today, I'm in the exact same predicament. I'm drilling 3" deep stepping down in drill size every inch from .375 then .242 then .177 for the last inch using carbide drills in Nitronic 60. (Nasty stuff, work hardens instantly with cobalt drills.) Anyway, I've been M00ing before the deepest hole and manually lowering my rapid to 25% to give the chips a chance to get out of the way. I burned up a grand worth of tooling before I got it right; I still pucker with every cycle. And I thought I over bid this job, now I see why they gave it to me.![]()
Oh, and FYI, Yes there is a setting you can change. I was drilling some holes that were only .002 dia with pecks about .001 deep and backing off .025 was not acceptable. I called Haas and they told me which one to change. I'm sorry though, I forget which one it was. But there is a parameter you can tweak. Might find it in the manual.
I'm still curious why you want the RETRACT speed to be slower. I can't see what this has to do with chip evacuation, cutter loads or anything else. Can somebody explain?
Greg
The reason I am needing to do this is I am counterboring a very deep hole in ABS. sounds easy, but the chips what to wrap around the pilot of the counter bore cutter and melt easily, so I need the time to blow them off with coolant as the cutter leaves the hole.
I thought well, I will just retract further out. But I have to peck every .100 to get the chip control I need and it looks like torture on the z axis watching this thing rapid at 1000ipm in and out of this hole. And the hole is so deep I feel better slowing the retract and decent in and out of the hole.
5% rapid gives me the results I need, no problem. I just need this machine to run by itself and I don't want to leave the machine at 5% rapid loosing time for the rest of the program. (The rest of the program is lengthy.)
Delw
I had not read my manual carefully enough. Setting 22 adjusts the approach distance when pecking.
22 Can Cycle Delta Z
This setting specifies the distance the Z-axis is retracted to clear chips during a G73 canned cycle. The range is 0.0 to 29.9999 inches (0-760 mm).
An open mind is a virtue...so long as all the common sense has not leaked out.
So--as Geof posted--extra retract height out of the hole won't solve your chip problem?
I wouldn't worry too much about the 1000 IPM rapids. If it bothers you, set the rapids for 50% which is still pretty darned fast. How many holes are you talking about per part? I don't think I'd worry about it if the 1000 IPM rapids are your root concern.
Greg
I had a similar problem tapping Delrin with the chips wrapping on the tap. I finished up building an air blast nozzle operated by M21 that would come in to within half an inch of the tap and blow the chips off between holes.
Possibly what you could do is write the peck a sequence of G82 commands separated by a G04 pause with the R for succeeding G82s slightly less than the Z on the preceding one.
G82 Z-0.2 R0.01 (FIRST PECK)
G04 P10. (PAUSE 10 SECONDS TO CLEAR CHIPS)
G82 Z-0.4 R-0.19 (SECOND PECK)
etc
An open mind is a virtue...so long as all the common sense has not leaked out.