588,129 active members*
4,966 visitors online*
Register for free
Login
IndustryArena Forum > Machine Controllers Software and Solutions > G-Code Programing > is there something wrong with my machine?
Page 1 of 3 123
Results 1 to 20 of 48
  1. #1
    Join Date
    Jul 2010
    Posts
    0

    is there something wrong with my machine?

    Hi Gang,

    confused, i can machine radii on my emco's no problem, but I have a machine with a fanuc oimb controller and i cannot make work.

    its a simple profile. I even used mastercam to create a program and its the same i was trying to use, but it doesn't work.

    its a 1/2 ball. 1.968 dia material. radius starts at xozo and its a rad of .984 and the end point is x1.968 Z-.984. can't be simpler.

    it should be written
    G00 X0 Z0
    G03 X1.968 Z-.984 R.984 (i've tried I-.984 or K-.984 or i.984 or k.984) The radius (if works) ends up at too small a diameter.

    please help

  2. #2
    Join Date
    Jan 2008
    Posts
    575
    Quote Originally Posted by Geo Girl View Post
    Hi Gang,

    confused, i can machine radii on my emco's no problem, but I have a machine with a fanuc oimb controller and i cannot make work.

    its a simple profile. I even used mastercam to create a program and its the same i was trying to use, but it doesn't work.

    its a 1/2 ball. 1.968 dia material. radius starts at xozo and its a rad of .984 and the end point is x1.968 Z-.984. can't be simpler.
    It can always be simpler, IMO

    Quote Originally Posted by Geo Girl View Post
    it should be written
    G00 X0 Z0
    G03 X1.968 Z-.984 R.984 (i've tried I-.984 or K-.984 or i.984 or k.984) The radius (if works) ends up at too small a diameter.

    please help
    If the radius is coming out too small with those same numbers in the code, I would guess that a G42 (cutter comp right) is active, and has the wrong value in the offset page. IE if you are programming from M.C. with a .0156 R tool, with comp. at the computer, and the G42 is active at the control, with a .0312 Radius in the offset page, it'll come out smaller. It needs to be cancelled(G40). Other than that it should work

    Robert
    The beaten path, is exclusively for beaten men.

  3. #3
    Join Date
    Jul 2010
    Posts
    0
    thanks for the reply.

    i made sure the cutter comp is off and ran it again. the tool radius is set at .020 so thats fine. still the same problem. I'm sure i'm doing something wrong.

    the program i ran is
    G03 x1.969 Z-.984 I0.0 K-.984 (the OD ends up at aprox .984 dia)

    if I run it with
    G03 x1.969 Z-.984 I0.0 K-1.968 the OD is aprox 1.703

    and both look egg shaped.

    heeelpppp!!!! please

  4. #4
    Join Date
    Feb 2006
    Posts
    1792
    Is this a lathe or a milling machine?

  5. #5
    Join Date
    Jul 2010
    Posts
    0
    Lathe

  6. #6
    Join Date
    Feb 2006
    Posts
    992
    Quote Originally Posted by Geo Girl View Post
    thanks for the reply.

    i made sure the cutter comp is off and ran it again. the tool radius is set at .020 so thats fine. still the same problem. I'm sure i'm doing something wrong.

    the program i ran is
    G03 x1.969 Z-.984 I0.0 K-.984 (the OD ends up at aprox .984 dia)

    if I run it with
    G03 x1.969 Z-.984 I0.0 K-1.968 the OD is aprox 1.703

    and both look egg shaped.

    heeelpppp!!!! please
    Egg shape cause by angle change..... program it for center of the tool that way tool will tangent to the surface.
    The best way to learn is trial error.

  7. #7
    Join Date
    Jul 2010
    Posts
    0
    But its also not turning it to the correct dia, not even close.
    How would you write a radii program?

  8. #8
    Join Date
    Feb 2006
    Posts
    992
    Post the program on here since it's lathe.
    The best way to learn is trial error.

  9. #9
    Join Date
    Feb 2006
    Posts
    992
    Quote Originally Posted by Geo Girl View Post
    But its also not turning it to the correct dia, not even close.
    How would you write a radii program?
    I have a feeling you program is not right and second thing is the ball endmill you put in the machine is not parallel to the axis that is cutting that's why it 's small.
    The best way to learn is trial error.

  10. #10
    Join Date
    Feb 2006
    Posts
    1792
    G00 X0 Z0;
    G03 X1.968 Z-.984 R.984 ;
    should work provided you have diameter programming on your machine.
    With radius programming, it should be
    G03 X.984 Z-.984 R.984;
    You can choose between diameter/radius programming with a parameter.

  11. #11
    Join Date
    Mar 2003
    Posts
    2932
    Sounds like maybe you're not accounting for the virtual tip?

    Try the attached code.
    Attached Thumbnails Attached Thumbnails Radius Problem.jpg  

  12. #12
    Join Date
    Nov 2005
    Posts
    1468
    Hang on a sec...

    Assuming your cutting clockwise surely you should set X0 Z0 at the vertex of your sphere? you should then go from X 0.984, Z 0.984 to X0, Z0. That's the way I would do it.

    No need to machine right over the vertex.

    If the resulting "sphere" is "M" shaped your tool is not to centre, if it's an inverted "V" shape, like a cone, your tool's past centre- jog your X0 accordingly. You can make a steel gauge by cutting a concave radius into a flat piece if steel, place it over the sphere and look for the profile (like using a steel rule to check a flat).

    I do this regularly except to a very high accuracy and use a Talysurf to check the form of the sphere.
    I love deadlines- I like the whooshing sound they make as they fly by.

  13. #13
    Join Date
    Jul 2010
    Posts
    0
    This is on a DMTG TruTurn bed lathe with an indexing tool block, so I am turning the radius clockwise.

    i dont believe its a cutter comp issue. the tool moves too far out of scope to be a cutter comp problem.

    i have a call in to DMTG, we will see how long it takes to get an answer.

    G00 X0 Z0;
    G03 X1.968 Z-.984 R.984 ;
    does not work, it machines an big egg shape to a dia of .984. and doubleing it does not work either.

    keep the ideas coming!

  14. #14
    Join Date
    Feb 2006
    Posts
    992
    Dcoupor attached pix show why it's egg shape and that's what i'm tried to tell you. Look at post #11.

    Why don't you post the whole program on here, so we can take a look at it.
    The best way to learn is trial error.

  15. #15
    Join Date
    Feb 2006
    Posts
    1792
    Possibly your program is using radius compensation with wrong tip direction (tool tip number).

  16. #16
    Join Date
    Jul 2010
    Posts
    0
    i'm so confused....

    my program

    T0202
    G00 X0 Z0
    G03 X1.969 Z-.984 R1.234 F.02
    G00 X3.0 Z5.0

    Running this program.. the tool moves to xo zo but the moves away from the part making a big radius then comes back to cut a little bit of the part.

    i tried the post below from the JPG and it also moves away from the part and comes around in a big radius and then around the and just touches the surface of the part at the z-. basically doesnt touch the part. I am test cutting on plastic

  17. #17
    Join Date
    Jan 2008
    Posts
    575
    Quote Originally Posted by Geo Girl View Post
    i'm so confused....

    my program

    T0202
    G00 X0 Z0
    G03 X1.969 Z-.984 R1.234 F.02
    G00 X3.0 Z5.0

    Running this program.. the tool moves to xo zo but the moves away from the part making a big radius then comes back to cut a little bit of the part.

    i tried the post below from the JPG and it also moves away from the part and comes around in a big radius and then around the and just touches the surface of the part at the z-. basically doesnt touch the part. I am test cutting on plastic
    If in fact that is all there is in the program, than the answer to your original question is yes there is something wrong with your machine.

    But I am thinking there is more to the code than that ; IE home position, spindle speed, Absolute positioning, or Incremental, an M1 maybe, more I am sure.

    Also I am guessing that it is in a canned cycle which is not posted. Post the entire program and let us look at it. There isn't any reason the tool should move away from the part based on what you have posted.
    The beaten path, is exclusively for beaten men.

  18. #18
    Join Date
    Mar 2003
    Posts
    2932
    Quote Originally Posted by Geo Girl View Post
    i'm so confused....

    my program

    T0202
    G00 X0 Z0
    G03 X1.969 Z-.984 R1.234 F.02
    G00 X3.0 Z5.0

    Running this program.. the tool moves to xo zo but the moves away from the part making a big radius then comes back to cut a little bit of the part.

    i tried the post below from the JPG and it also moves away from the part and comes around in a big radius and then around the and just touches the surface of the part at the z-. basically doesnt touch the part. I am test cutting on plastic
    Be sure you don't have an R- (minus) in the G03 block. That would cause the machine to interpolate the arc > 180 degrees.

  19. #19
    Join Date
    Jun 2007
    Posts
    3735
    Please give us a drawing.
    1. We need to see what your finished part should look like.
    2. We need to know the tool nose radius and shape.
    3. How did you set tool zero position?
    4. Are we doing the tool compensation or is the machine?
    Much easier (IMHO) if you use IK. Then we don't need to worry about -R confusion.
    Super X3. 3600rpm. Sheridan 6"x24" Lathe + more. Three ways to fix things: The right way, the other way, and maybe your way, which is possibly a faster wrong way.

  20. #20
    Join Date
    Feb 2006
    Posts
    1792
    Quote Originally Posted by Geo Girl View Post
    G03 X1.969 Z-.984 R1.234 F.02
    Change to
    G03 X1.968 Z-.984 R0.984 F.02
    and see what happens.

Page 1 of 3 123

Similar Threads

  1. Can anyone tell me where did i go wrong?
    By hug333bear in forum WoodWorking Topics
    Replies: 5
    Last Post: 07-23-2010, 10:01 PM
  2. What have I done wrong?
    By bekibutton in forum Laser Engraving / Cutting Machine General Topics
    Replies: 14
    Last Post: 03-22-2010, 10:35 AM
  3. wrong machine definition , post processor issue ??
    By luckyyyyyy in forum Mastercam
    Replies: 0
    Last Post: 02-10-2010, 11:10 AM
  4. 3D cut - What am doing Wrong!!
    By ScoobyDoo in forum FeatureCAM CAD/CAM
    Replies: 4
    Last Post: 06-25-2008, 10:53 AM
  5. anyone know what i am doing wrong
    By pauluk in forum Digitizing and Laser Digitizing
    Replies: 14
    Last Post: 02-16-2006, 05:48 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
  •