586,500 active members*
1,890 visitors online*
Register for free
Login
Results 1 to 8 of 8
  1. #1
    Join Date
    Nov 2008
    Posts
    21

    Red face Canned OD cycle?

    Is there a canned OD cycle?

    Like the OD version of a G12?

    Thanks!
    Allan:wave:
    jettawagonautocross.blogspot.com

  2. #2
    Join Date
    Jul 2005
    Posts
    12177
    Not that I am aware of, just use G02 with a Z increment. Are you familiar with tool compensation?
    An open mind is a virtue...so long as all the common sense has not leaked out.

  3. #3
    Join Date
    Nov 2008
    Posts
    21

    Talking

    Yeah I'm familiar with Cutter Comp. I was just looking for the lazy way out. HAHA!!!
    Thanks!
    jettawagonautocross.blogspot.com

  4. #4
    Join Date
    Jul 2005
    Posts
    12177
    I made my own "OD canned cycle" just using different tool diameters and the same helical G02 in a subroutine. Start with a tool diameter that is larger than the tool, go to the subroutine and do one pass down the helix, cancel tool comp on the return and then use the correct tool diameter and go back to the subroutine again.

    Or you can get fancy and write yourself a Macro.
    An open mind is a virtue...so long as all the common sense has not leaked out.

  5. #5
    Join Date
    Nov 2008
    Posts
    21
    Hummmmmm...... I like!
    Yeah I think I'm gonna make a program and just call it as a subprogram when needed.

    How would I work the G90's and G91's if I was going to use it at multiple locations on the same part?

    I know I could use G54 G55 G56 .... but I need to do 18 OD's on one part.

    Thanks again!
    jettawagonautocross.blogspot.com

  6. #6
    Join Date
    Jul 2005
    Posts
    12177
    Quote Originally Posted by VWbmx View Post
    .....How would I work the G90's and G91's if I was going to use it at multiple locations on the same part?...
    You don'tuse either G91 or all the G55's 56, etc., you use G52. For the sake of example I will make your 18 ODs at 1" dia and 1" high on a 6 by 3 array at 2" spacing and put G54 at the center of the array; this means that you have ODs at;

    X+/- 1.0, 3.0, 5.0 and Y+/- 2.0, 0.0 2.0

    In the body of your program you would have:


    G10 L12 G90 P21 R1.5 (These three lines set your different tool diameters)
    G10 L12 G90 P11 R1.0
    G10 L12 G90 P01 R0.2


    G54(This is not needed really because it is the default)
    G52 X5.0 Y2.0 (This creates a local work zero at these coordinates in G54)
    M97 P1000 (Got to the first subroutine)
    G52 X5.0 Y0.0 (Next OD)
    M97 P1000
    etc etc
    G52 X0.0 Y0.0 (Cancel local work zero)
    G53 G00 Z0.0 (Take Z home)
    etc
    etc
    M30
    =========
    N1000 G00 X0.0 Y0.0 Z0.1 (Move to zero in the local work zero)
    G41 D21 Y0.5 Z0.01 M97 P2000
    G41 D11 Y0.5 Z0.01 M97 P2000
    G41 D01 Y0.5 Z0.01 M97 P2000
    M99
    ==========
    N2000 G91 G02 I0.0 J-0.5 Z-.202 F50. L5 (Interpolate down to Z-1.0)
    G90 G02 I0.0 J-0.5 (Clean up the end of the helical ramp)
    G01 X0.2 (Move away tangentially so you don't leave a witness mark)
    G00 Z0.1 (Lift Z clear)
    G40 Y0.0 (Cancel tool comp)
    M99


    Obviously I have left a lot out but I think what is there is correct.

    G52 is VERY useful for this sort of thing.
    An open mind is a virtue...so long as all the common sense has not leaked out.

  7. #7
    Join Date
    Nov 2008
    Posts
    21
    Quote Originally Posted by Geof View Post
    G52 is VERY useful for this sort of thing.
    HA! I see that!

    I've always wondered if there was anything like that!!

    Thanks!!! I'll let ya know how I make out!
    jettawagonautocross.blogspot.com

  8. #8
    Join Date
    Nov 2008
    Posts
    21
    Geof, You the man!!!! Thanks so much! That was SOOO easy!!!!:cheers:
    jettawagonautocross.blogspot.com

Similar Threads

  1. Canned Drilling Cycle Help
    By chuppe in forum G-Code Programing
    Replies: 14
    Last Post: 09-30-2012, 03:23 AM
  2. G84 CANNED TAPPING CYCLE
    By mmussack in forum Mastercam
    Replies: 15
    Last Post: 11-25-2008, 05:02 PM
  3. G76 Canned cycle
    By Stebedeff in forum Fanuc
    Replies: 1
    Last Post: 02-07-2008, 06:42 PM
  4. Canned drilling cycle on 0TB
    By guhl in forum Fanuc
    Replies: 0
    Last Post: 11-22-2007, 01:33 PM
  5. canned cycle on Haas
    By GITRDUN in forum G-Code Programing
    Replies: 6
    Last Post: 11-22-2006, 06:44 PM

Posting Permissions

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