586,076 active members*
3,702 visitors online*
Register for free
Login
Results 1 to 9 of 9
  1. #1
    Join Date
    Apr 2013
    Posts
    12

    Multiple Machining program Fagor 8050

    I am trying to write a program for a part that will be repeated in a grid pattern I am trying to use the multiple machining code g62. The manual says I can make a subroutine modal and can repeate it using G62 but I don't see where it says how to do that. here is what I have so far:


    G00 Z3.00000
    G00 X5.89375 Y16.32500
    G01 Z-0.25 F200
    G01 X6.89375 Y16.32500
    G01 X5.89375 Y16.32500

    G62 X35.2125 I12.2724 Y65.7 J16.425

    G00 Z3.00000
    G00 X2.70625 Y2.90625
    G01 Z-0.75 F200
    G01 X10.08125 Y2.90625
    G01 X10.08125 Y14.96875
    G01 X2.70625 Y14.96875
    G01 X2.70625 Y2.90625

    G62 X35.2125 I12.2724 Y65.7 J16.425

  2. #2
    Join Date
    Jul 2003
    Posts
    1220

    Re: Multiple Machining program Fagor 8050

    I've never used G62 but this may help.

    1. Move the tool to start position.
    2. Define the sub. eg(Sub(222))
    3. Define the multiple operation.

    G00 Z3.
    G00 X5.8937 Y16.325
    G01 Z-0.25 F200
    G01 X6.8937 Y16.325
    G01 X5.8937 Y16.325
    (Sub(222))
    G62 X35.2125 K3.? Y65.7 D4.
    ------------------------------------------------
    Save as Program 222
    (These figures increments?)
    G91
    G00 Z3.00000
    G00 X2.70625 Y2.90625
    G01 Z-0.75 F200
    G01 X10.08125 Y2.90625
    G01 X10.08125 Y14.96875
    G01 X2.70625 Y14.96875
    G01 X2.70625 Y2.90625
    G90

  3. #3
    Join Date
    Apr 2013
    Posts
    12

    Re: Multiple Machining program Fagor 8050

    The program should cut a key hole slot and an outside perimeter. It should cut 20 parts in a 4x5 grid pattern. After reading the manual a little more I think the following might be correct. I am not at my machine right now. If any one has suggestions to do this better I am open.



    (MCALL 10)
    G62 X35.2125 I12.2724 Y65.7 J16.425
    (MDOFF)
    G90 G00 X0 Y0


    (MCALL 20)
    G62 X35.2125 I12.2724 Y65.7 J16.425
    (MDOFF)
    G90 G00 X0 Y0

    (SUB 10)
    G00 Z3.00000
    G00 X5.89375 Y16.32500
    G01 Z-0.25 F200
    G01 X6.89375 Y16.32500
    G01 X5.89375 Y16.32500
    G00 Z3.00000
    (RET)


    (SUB 20)
    G00 Z3.00000
    G00 X2.70625 Y2.90625
    G01 Z-0.75 F200
    G01 X10.08125 Y2.90625
    G01 X10.08125 Y14.96875
    G01 X2.70625 Y14.96875
    G01 X2.70625 Y2.90625
    G00 Z3.00000
    (RET)

  4. #4
    Join Date
    Jul 2003
    Posts
    1220

    Re: Multiple Machining program Fagor 8050

    Hi My thoughts are that Block G62 X35.2125 I12.2724 Y65.7 J16.425 should be G62 X35.2125 I8.8031 Y65.7 J21.9 or G62 X35.2125 K5. Y65.7 D4.
    Pic attached of how I think the grid pattern is?
    Also I think the subs should be G91 ( incremental )
    Just my 2 cents worth.
    Attached Thumbnails Attached Thumbnails Capture1.JPG  

  5. #5
    Join Date
    Jul 2003
    Posts
    1220

    Re: Multiple Machining program Fagor 8050

    This may also be the layout??
    All a bit of a guessing game with limited information.
    Attached Thumbnails Attached Thumbnails Capture2.JPG  

  6. #6
    Join Date
    Jul 2003
    Posts
    1220

    Re: Multiple Machining program Fagor 8050

    Quote Originally Posted by Molsongr View Post
    ...... If any one has suggestions to do this better I am open.......
    Here is another possibility?
    A little feed back may help.
    Attached Thumbnails Attached Thumbnails Capture3.JPG  

  7. #7
    Join Date
    Jul 2003
    Posts
    1220

    Re: Multiple Machining program Fagor 8050

    Here is another possibility, surely one of these is correct.

  8. #8
    Join Date
    Apr 2013
    Posts
    12

    Re: Multiple Machining program Fagor 8050

    Here is the pattern I am trying to do. This is the code for just the key hole slot up top. it will do the first cut move to the position of the second cut move back to the position of the first cut and then do the fist cut again. so it will move to the position of every cut but move back and repeat the first cut every time. I tried to make the sub incremental but it did some strange things also.

    G70 ;INCHES
    G16 XY
    G54
    G90

    T2 D2
    M6
    G43
    G00 Z1.25000

    S10000 M3

    G00 X5.89375 Y16.32500
    (MCALL 30)
    G62 I11.7375 K4 J16.425 D5
    (MDOFF)
    G00 Z1.25

    G00 X1.35000 Y88.24875
    (MCALL 40)
    G60 X16.4250 K2
    (MDOFF)
    G00 Z1.25

    ;KEY SLOT 1
    (SUB 30)
    G00 X5.89375 Y16.32500
    G01 Z0.375
    G01 X6.89375 Y16.32500
    G01 X5.89375 Y16.32500
    G00 Z1.25
    (RET)

    ;KEY SLOT 2
    (SUB 40)
    G00 X1.35000 Y88.24875
    G01 Z0.375
    G01 X1.35000 Y89.24875
    G01 X1.35000 Y88.24875
    G00 Z1.25
    (RET)

    M30




    Attachment 239036
    Attached Thumbnails Attached Thumbnails Pro_frame1.jpg  

  9. #9
    Join Date
    Jul 2003
    Posts
    1220

    Re: Multiple Machining program Fagor 8050

    Your code G62 I11.7375 K4 J16.425 D5 doesn't appear to match the Y dimensions on your drawing.

Similar Threads

  1. Multiple Machining program Fagor 8050
    By Molsongr in forum Fagor Automation
    Replies: 0
    Last Post: 05-25-2014, 05:27 PM
  2. FAGOR CNC 8050 T Standard Moodern
    By KingMd in forum Fagor Automation
    Replies: 4
    Last Post: 09-12-2013, 11:37 AM
  3. Jogging Motion Master SB-480 w/ Fagor 8050
    By Molsongr in forum Commercial CNC Wood Routers
    Replies: 0
    Last Post: 04-14-2013, 02:12 AM
  4. Fagor 8050 M need help
    By Nadrik in forum Fagor Automation
    Replies: 0
    Last Post: 10-03-2012, 09:03 PM

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
  •