587,473 active members*
3,495 visitors online*
Register for free
Login
IndustryArena Forum > CAD Software > Uncategorised CAD Discussion > how to dwell during a peck drilling cycle? HELP!!
Results 1 to 8 of 8
  1. #1
    Join Date
    May 2008
    Posts
    26

    how to dwell during a peck drilling cycle? HELP!!

    I have a question about drilling.

    I want to create a drilling cycle that will allow me to peck drill and dwell at the same time..
    The process I want is to move the bit to the x, y location, drill the material for a depth of 0.005”, dwell for 2 seconds, retract from the hole, dwell for 2 seconds, drop back in to the hole and drill for another 0.005” then dwell for 2 seconds and so on and so on until the hole is done and than the bit is moved to the ne location. I know how to do peck drilling (g83) but how do you dwell during a g83? I am drilling with a #75 drill bit, into lexan .250” deep, through hole. Any help would be great

    Regards
    Mike

  2. #2
    Join Date
    Dec 2009
    Posts
    528
    Pxxx where xxx is in milliseconds.

  3. #3
    Join Date
    May 2008
    Posts
    26
    so would this work?

    G81 X0.3870 Y0.0250 Z-0.005 R0.0500 F0.10 P2000
    G81 X0.3870 Y0.0250 Z-0.010 R0.0500 F0.10 P2000
    G81 X0.3870 Y0.0250 Z-0.015 R0.0500 F0.10 P2000

  4. #4
    Join Date
    Dec 2009
    Posts
    528
    Quote Originally Posted by matridium View Post
    so would this work?

    G81 X0.3870 Y0.0250 Z-0.005 R0.0500 F0.10 P2000
    G81 X0.3870 Y0.0250 Z-0.010 R0.0500 F0.10 P2000
    G81 X0.3870 Y0.0250 Z-0.015 R0.0500 F0.10 P2000
    Just looked up the fixed cycles. G81 does not have a P. G82, however, does. You'll also need a G99.

    Here's the G82 description;
    1. Rapid motion to XY position.
    2. Rapid motion to R-level
    3. Feedrate motion to Z-depth
    4. Dwell at the depth - in milliseconds (P)
    5. Rapid retract to R-level (with G99) or rapid retract to initial level (with G98).

  5. #5
    Join Date
    Jan 2004
    Posts
    3154
    You wont get a dwell at the retract plane. I don't know of any canned cycle that will. You could use G82 and 25% rapid overide to give it more out-of-material time.

    How about making a really repetitive sub-program
    www.integratedmechanical.ca

  6. #6
    Join Date
    Apr 2008
    Posts
    49
    I agreed with DareBee, regular drill cycle won't give you a dwell at retract plane, but if you mast have it just write a Drilling macro

  7. #7
    Join Date
    May 2008
    Posts
    26
    exactly waht is a sub program? and how do you write one?

    What about this...

    G82 X0.3870 Y0.0250 Z-0.005 R0.0500 F0.10 P2000
    G99 X0.3870 Y0.0250 R0.0500
    G04 P2000
    G82 X0.3870 Y0.0250 Z-0.010 R0.0500 F0.10 P2000
    G99 X0.3870 Y0.0250 R0.0500
    G04 P2000
    G82 X0.3870 Y0.0250 Z-0.015 R0.0500 F0.10 P2000
    G99 X0.3870 Y0.0250 R0.0500
    G04 P2000
    G00 X0.9090 Y0.0250 Z0.0500

    I can't see this not working? but what do you guys think?

    Regards
    Mike

  8. #8
    Join Date
    Jan 2004
    Posts
    3154
    Close but not quite.
    Your code would be for drill only (no X/Y) because you want to use it for every hole.

    I would do a subroutine like this
    Note - the control sees the M17 and won't start running the code until the first M30 thereafter.

    %
    L200 (subroutine)
    G90
    G82 G98 Z-0.005 R0.0500 F0.10 P2000
    G04 P2000
    G82 G98 Z-0.010 R0.0500 F0.10 P2000
    G04 P2000
    G82 G98 Z-0.015 R0.0500 F0.10 P2000
    G04 P2000
    etc.etc.etc.
    G00 Z0.0500
    M17
    M30
    G00 G40 G49 G80 G90 G17 G70 (MAIN PROGRAM)
    T12 M6 (Center Drill)
    G58 S2200. M3 M8
    X0.3870 Y0.0250
    L201 (run sub 200 - 1 time)
    X?? Y?? (next hole)
    L201
    X?? Y?? (last hole)
    G80
    M05 M09
    G91 G28 Z0.0
    G00 G90 E0 X5.0 Y9.5 A0.0
    M19
    M30
    %
    www.integratedmechanical.ca

Similar Threads

  1. peck drilling cycle
    By saravananraju76 in forum Hyundai Kia
    Replies: 1
    Last Post: 11-26-2009, 02:11 AM
  2. G99/G98 in peck drilling cycle
    By inflateable in forum EdgeCam
    Replies: 4
    Last Post: 10-24-2008, 01:21 PM
  3. programing a dwell cycle
    By pacnc in forum Fadal
    Replies: 2
    Last Post: 08-29-2008, 04:26 PM
  4. programing a dwell cycle
    By pacnc in forum Fanuc
    Replies: 10
    Last Post: 08-29-2008, 01:52 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •