Results 1 to 9 of 9

Thread: G76 thread on Fanuc oi-t control

  1. #1
    Registered
    Join Date
    Mar 2009
    Location
    usa
    Posts
    2
    Downloads
    0
    Uploads
    0

    G76 thread on Fanuc oi-t control

    I need some help cutting a G76 thread on a Kia lathe
    .428 x 9.17 tpi. with .312 minor dia.

    Tried a G76 code but I kept getting an improper decimal point error!


  2. #2
    Registered
    Join Date
    Jan 2009
    Location
    canada
    Posts
    21
    Downloads
    0
    Uploads
    0
    Internal Thread Cutting Cycle Example.

    (Diameter Designation, Metric Input).

    NØØ9Ø.......... ;
    NØ1ØØGØØ X27.9 Z5.Ø ;
    NØ11ØG76 PØ4ØØ6Ø Q1ØØ RØ.Ø4 ;
    NØ12ØG76 X3Ø.Ø Z-4Ø.Ø P92Ø Q2ØØ F1.5 ;
    NØ13Ø.......... ;


    OUTSIDE

    (* TREAD HUB 16UN *)
    N310 T0326
    G00 X8.0 Z1.2 G97 S500 M03
    X1.844
    M24
    G92X1.7243 Z0.5 F0.0625
    X1.7103
    X1.6963
    X1.6843
    X1.6783
    X1.6763
    GOTO350

    G76 (Multiple Thread Cutting Cycle).

    The G76 command contains, within two blocks, all the information required to generate a standard thread form and pitch.
    A G76 uses one edge cutting to reduce the load on the tool tip.

    Show G76 Canned Cycle General Diagram.

    A G76 command is written in the following format:

    G76 P (A) / (B) / (C) Q (Min) R ;
    G76 X(U) Z(W) P (DEP) Q (1st) F ;

    where,
    P (A) is the number of thread finishing passes (1 to 99).
    P (B) is the chamfer amount. This is the angle at which the tool leaves the billet, at the end of the thread cutting cycle.
    P (C) is the angle of the tool tip (8ذ, 6ذ, 55°, 3ذ, 29° and ذ). Note - (A), (B) and (C) are all specified at the same time by the address P, eg, PØ36Ø6Ø = number of cuts is Ø3, chamfer amount of 6Ø and tool angle of 6ذ.
    Q (Min) is the minimum cutting depth (in microns). When the depth of the cut calculated by the CNC control becomes less than this limit, the cutting depth is clamped at this minimum value.
    R is the finishing allowance. This is the final, or finishing, cuts applied to the thread. The number of stages to complete this finishing allowance is determined by the value of P(A), ie, the value of R divided by the P(A) number of finishing passes equals the value of each finishing allowance stage.
    X(U) is the end position of the thread in the X axis (the core diameter).
    Z(W) is the end position of the thread in the Z axis.
    P (DEP) is the depth of the thread as a radius value (in microns).
    Q (1st) is the depth of the first pass as a radius value (in microns).
    F is the size of the thread pitch.


  3. #3
    Registered
    Join Date
    Jan 2009
    Location
    canada
    Posts
    21
    Downloads
    0
    Uploads
    0
    G76 General Notes Page.

    Note 1.
    When incremental dimensions are used, their signs (+ or -) are defined as follows :

    U and W = Plus/Minus (determined by the direction of the tool path).
    R = Plus/Minus (determined by the direction of the tool path).
    P = Plus (always).
    Q = Plus (always).

    Note 2.
    Four symmetrical patterns can be considered depending on the sign (plus or minus) of the X and Z axis movements.

    Note 3.
    It is possible to cut internal threads with the G76 command.

    Note 4.
    Thread cutting is repeated along the same tool path from rough cutting through to the final finishing cut, so the spindle speed must remain constant. The G96 command for constant surface speed must not be used when the thread cutting cycle is active, otherwise the pitch of thread could be incorrectly machined.

    Note 5.
    When possible, allow a 5mm run-in at the start of the thread pass, to allow for any lag in the machine drive system, etc.... Without a sufficient run-in the start of the thread could be machined with an incorrect pitch.

    Note 6.
    The feedrate override on the CNC control panel will be ineffective, ie, it is set at a fixed value of 1ØØ% during the entire thread cutting cycle.

    Note 7.
    Although the spindle override feature is not disabled whilst a thread is being cut, it should not be activated since an incorrect thread pitch will be generated.

    Note 8.
    The cycle stop key will not operate during a thread cutting cycle. The thread cutting operation can only be stopped using either the [RESET] key on the CNC controller panel or [EMERGENCY STOP] button.

    Note 9.
    The machine can be set to read one block at a time by pressing the [SINGLE BLOCK] key on the CNC controller panel. When operating in single block mode, one press of the [CYCLE START] key will activate one complete threading pass (cut on, thread pass, cut off and rapid back). If single block mode is activated during a threading operation, the tool motion will stop at the beginning (cut on) of the next complete threading pass.


  4. #4
    Registered
    Join Date
    Jan 2009
    Location
    canada
    Posts
    21
    Downloads
    0
    Uploads
    0
    G92 General Notes Page.

    Note 1.
    G92 can be used to cut both internal and external threads.

    Note 2.
    Plunge cutting is used with G92 to generate a thread, from the first pass to the last finishing pass.
    Plunge cutting involves the tool approaching the billet at 9Ø degrees to its surface, rather than approaching the billet at a run-in angle. Effectively, this means greater stresses are placed on the tool since both edges will be cutting. As the tool cuts further into the material, more surface area is in contact with the tool tip.

    Note 3.
    The same notes on thread cutting in G76 regarding speed, run-in, feed hold etc. are also relevant to G92.


  • #5
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2,502
    Downloads
    0
    Uploads
    0
    Why not post your code here so we can see it?


  • #6
    Moderator tobyaxis's Avatar
    Join Date
    Jan 2006
    Location
    USA
    Posts
    4,394
    Downloads
    0
    Uploads
    0
    Personally I stick with G92 for Threading. It allows for more control
    Toby D.
    "Imagination and Memory are but one thing, but for divers considerations have divers names"
    Schwarzwald

    (Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)

    www.refractotech.com


  • #7
    Registered
    Join Date
    May 2007
    Location
    USA
    Posts
    939
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by dcoupar View Post
    Why not post your code here so we can see it?
    +1 for Mr. Coupar. Kind of hard to trouble shoot a canned cycle without seeing your code. Then we could tell you exactly what is wrong without having to explain the meaning of every value in the cycle.


  • #8
    Registered
    Join Date
    Mar 2009
    Location
    usa
    Posts
    2
    Downloads
    0
    Uploads
    0
    Tried the g76 on the Kia with no decimals in P and Q and it worked well! Thanks Ski-doo. I'll try to post the code tom. Still got a few bugs in.


  • #9
    Registered
    Join Date
    Jan 2009
    Location
    canada
    Posts
    21
    Downloads
    0
    Uploads
    0
    I work with six YUNDAI-KIA machine
    SKT300
    SKT300-MS
    SKT460


  • Similar Threads

    1. thread cutting FANUC 0i TB
      By xavierdemoura in forum Fanuc
      Replies: 0
      Last Post: 09-23-2006, 09:07 PM
    2. Thread blunting on cnc hyundai w/ seimans control
      By nowwhat in forum CNCzone Club House
      Replies: 3
      Last Post: 07-01-2006, 07:13 PM
    3. Thread blunting on cnc hyundai w/ seimans control
      By nowwhat in forum CNCzone Club House
      Replies: 5
      Last Post: 06-29-2006, 02:52 PM
    4. Thread commands on 6T control
      By Ricardo Guedes in forum Fanuc
      Replies: 2
      Last Post: 02-03-2006, 01:21 AM
    5. Fanuc OT thread problem
      By mroy0404 in forum Fanuc
      Replies: 11
      Last Post: 07-11-2005, 03:35 PM

    Posting Permissions


     


    About CNCzone.com

      We are the largest and most active discussion forum from DIY CNC Machines to the Cad/Cam software to run them. The site is 100% free to join and use, so join today!

    Follow us on

    Facebook Dribbble RSS Feed


    Search Engine Friendly URLs by vBSEO ©2011, Crawlability, Inc.