586,096 active members*
3,164 visitors online*
Register for free
Login
Results 1 to 13 of 13
  1. #1
    Join Date
    Dec 2006
    Posts
    7

    cylindrical interpolation

    Hi


    We are the user of Mori seiki Horizontal machining center NH6300dcg. We have taken cylindrical interpolation option to machine the cam proffile on od. we have tried this but couldn't succed

    can anybody help me to How to use cylindrical interpolation on HMC.

    If possible please post an example

  2. #2
    Join Date
    Feb 2007
    Posts
    464
    Are you talking about circular or helical interpolation?
    What exactly are you trying to do?

  3. #3
    Join Date
    Dec 2006
    Posts
    7
    Definately, I am talking about only Cylindrical interpolation ON HMC

  4. #4
    Join Date
    Feb 2007
    Posts
    464
    You have to use the B-axis the same way you use X,Y.

    Straight run:
    G1Z-1F100
    Y-10
    B(Degrees to turn)


    Diagonal run:
    G1Z-1F100
    Y10B(Degrees to turn)

  5. #5
    Join Date
    Feb 2004
    Posts
    142
    you have to use G107... the information should be in the fanuc operator manual

  6. #6
    Join Date
    Dec 2006
    Posts
    7
    I had tried G107 & the information given intthe fanuc manual but i am not able to use this faunction.

    please find below the sample program i had tried on the machine but could not succed


    O5555(CYLINDRICAL INTERPOLATION TRIAL PROGRAM)
    G65P8000X0.Y209.933Z90.B0W3
    T30M6 ( end mill dia. 10 mm )
    M11
    G56
    G17
    G0G90X-30.Y120.B0.S2000F250M3
    G43H30Z100.
    Z5.0
    G07.1
    G1G42
    G1X0Y120.D30 (5.0)
    G01Z-0.5
    G1B30.
    G2Y90.B60.R30.
    G1Y70.
    G3Y60.B70.R10.
    G1B150.
    G3Y70.B190.R75.
    G1Y110.B230.
    G2Y120.B270.R75.
    G1B360.
    G1G40X-30.Y120.
    G07.1B0.
    M98P98(sub program for home position)
    M10
    M30

  7. #7
    Join Date
    Dec 2006
    Posts
    7
    i had tried the G107 & the information give in the Fanuc Manual but could not secessded

    pl find below the sample program i had tried on the machine


    O5555(CYLINDRICAL INTERPOLATION TRIAL PROGRAM)
    G65P8000X0.Y209.933Z90.B0W3
    T30M6 ( end mill dia. 10 mm )
    M11
    G56
    G17
    G0G90X-30.Y120.B0.S2000F250M3
    G43H30Z100.
    Z5.0
    G07.1
    G1G42
    G1X0Y120.D30 (5.0)
    G01Z-0.5
    G1B30.
    G2Y90.B60.R30.
    G1Y70.
    G3Y60.B70.R10.
    G1B150.
    G3Y70.B190.R75.
    G1Y110.B230.
    G2Y120.B270.R75.
    G1B360.
    G1G40X-30.Y120.
    G07.1B0.
    M98P98(sub program for home position)
    M10
    M30
    %

  8. #8
    Join Date
    May 2007
    Posts
    781
    Quote Originally Posted by rajeshtikar View Post
    I had tried G107 & the information given intthe fanuc manual but i am not able to use this faunction.

    please find below the sample program i had tried on the machine but could not succed
    You will get better answers if you give some detail.
    As why did it not work.
    What did the machine do or not do.
    What did you want the machine to do.
    How far into the program did it get.


    I have on other machines done stuff like this.
    Do up the CAD model in flat.
    Then scale model so that the direction that is to be wrapped is 360 units long, leave the other direction the size you want it to be.
    Looks like you are using Y and B axies so make the 360 unit length the X axis.
    Now run thru the CAM software just like you were doing a flat part.
    Edit the G code and replace the X with B. The machine I was doing this on was just a home hobby class machine and only had 3 axies so I just unplugged the X axis and plugged in the rotary.

  9. #9
    Join Date
    Jun 2006
    Posts
    629
    Looking at your print out you have G07.1 Not G107.1

    Could that be it????
    "It's only funny until some one get's hurt, and then it's just hilarious!!" Mike Patton - Faith No More Ricochet

  10. #10
    Join Date
    Dec 2006
    Posts
    7
    [quote=Andre' B;356125]You will get better answers if you give some detail.
    why did it not work.
    What did the machine do or not do.
    What did you want the machine to do.
    How far into the program did it get.


    Machine is generating P/S 20 alarm - overtolerence of Radius if we adjust the parameter 3410 value from 0.01 to 10. it will run the program but it will not compensate & overcutting happens.

    We can run the CAM program (absolute programming) on machine

    We dont want to use CAM Program because we have lot of variety of components

    We want to use standard program with cutter compensation

  11. #11
    Join Date
    Feb 2007
    Posts
    464
    Try this if it's possible to do it.You have X0 Y120 and then you have G42 and the same Y value.I think you need to have a Y value before G42 that is big enough to fit the cutter radius.The difference between the first Y value and the second one has to be bigger than the cutter radius.


    Code:
    O5555(CYLINDRICAL INTERPOLATION TRIAL PROGRAM) 
    G65P8000X0.Y209.933Z90.B0W3
    T30M6 ( end mill dia. 10 mm )
    M11
    G56
    G17
    G0G90X-30.Y140.B0.S2000F250M3 
    G43H30Z100.
    Z5.0 
    G07.1
    G1G42D30 (5.0)
    G1X0Y120.  
    G01Z-0.5 
    G1B30. 
    G2Y90.B60.R30. 
    G1Y70. 
    G3Y60.B70.R10. 
    G1B150.
    G3Y70.B190.R75.
    G1Y110.B230. 
    G2Y120.B270.R75. 
    G1B360.
    G1G40X-30.Y120.
    G07.1B0. 
    M98P98(sub program for home position) 
    M10
    M30
    %

  12. #12
    Join Date
    May 2006
    Posts
    265
    there are stuff missing at start up of the interpolation, check the manual a bit closer and you will find it.

  13. #13
    Join Date
    Mar 2009
    Posts
    7
    "You will get better answers if you give some detail."

    You will get better answers if you come across someone who can program.

    Here is a simple sample I wrote for you.
    This program starts at B0 Y0 Z2.5 (5" diameter part) and does a 1" radius at 90 degrees and the continues along it's merry way to B360. Yes, this is a proven program.

    Ready? Here goes:


    %
    O0005(C AXIS TEST)
    G0G91G28Z0
    T36
    M6
    M11
    G0G90G54X0Y5.B0M3S600 (Start at B0 Y0.)
    G43 H36 Z10.
    G1 Z2.5 F50. (5" diameter)
    G91G17Y0B0 (specifies your programmed arc plane. B substituted for X in G17)
    (notice G91 to prevent actual movement)
    G107B2.5 (turn on G107/7.1 and calculate profile on 2.5 radius part***important***)
    G90G1B67.0821F30.(start of 1" radius at 90 degrees)
    G2Y5.B112.9187R1.(end of 1" radius at 90 degrees)
    G1B360.
    G0Z10.
    G107B0. (Turn off G107/7.1)
    M30

    Special notice***
    in order for this to work set parameter 1022 as follows:
    x=1
    y=2
    z=3
    b=1

    this sets the substituted axis as X for calculating radii in G17 plane.

Similar Threads

  1. Cylindrical interpolation
    By davisboys in forum Fanuc
    Replies: 7
    Last Post: 01-01-2009, 03:46 PM
  2. Cylindrical grinding bearings
    By costast in forum Mechanical Calculations/Engineering Design
    Replies: 2
    Last Post: 05-13-2007, 10:18 PM
  3. Cylindrical interpolation Question????
    By theemudracer in forum G-Code Programing
    Replies: 4
    Last Post: 12-09-2006, 08:31 PM
  4. Cylindrical workpiece
    By MAX711 in forum SprutCAM
    Replies: 7
    Last Post: 12-04-2006, 03:11 AM
  5. cylindrical fixture
    By MBG in forum MetalWork Discussion
    Replies: 3
    Last Post: 06-24-2005, 03:50 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
  •