585,557 active members*
3,505 visitors online*
Register for free
Login

Search:

Type: Posts; User: mcode

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    647

    Re: XC609M SETUP OF AXIS MOVEMENT

    It has to be a number between 1 to 999999999, no decimals because it's a motor pulse count.
  2. Replies
    1
    Views
    1,790

    Re: programming blind hole radius help

    You can use the Spiral Plugin driven by the Geometry. You need to define the Profile in the X-Y Plane using the line and arc as if you were going to create a revolved surface or solid, then select...
  3. Replies
    21
    Views
    8,545

    Re: G72 and G70 wont both run in the same program

    Glad I can help. As far as I can tell NCPlot updates and improvements are not being made, It's too bad because It's a great programming tool.
  4. Replies
    21
    Views
    8,545

    Re: G72 and G70 wont both run in the same program

    I have found that checking "G00, G02, G03 are non modal" in the control settings will show all the tool path without inserting a G0
  5. Thread: work offsets

    by mcode
    Replies
    1
    Views
    735

    Re: work offsets

    Post your code, there may be something there, or calibration may have to be redone. If the tools are off the same amount calibration is needed otherwise it's most likely in the code.
  6. Replies
    21
    Views
    8,545

    Re: G72 and G70 wont both run in the same program

    If you insert a G0 before the Z0.25 it will work
  7. Replies
    2
    Views
    906

    Re: Help with programming multiple offsets

    Is this what you're trying to do?

    G20
    G0 G17 G40 G49 G80 G90
    (1/8 SPOTTING DRILL AND CHAMFER)
    T6 M6
    G187 P3 E.001
    G0 G90 G54 X-.5483 Y.056 S2139 M3
    G43 H6 Z.25
    G99 G81 Z-.045 R.25 F1.
  8. Re: Why does this program make the machine crash? - with video

    Sorry I missed the x-y plane test. The numbers for the Z positions look correct, but it looks like if you use K-261.404 that would work which would seem that in G18 mode the arc center K is added to...
  9. Re: Why does this program make the machine crash? - with video

    It seems to me the arc centers are absolute. Try specifying I,J,K's in relation to the work offset.
  10. Replies
    5
    Views
    1,397

    Re: C axis code in spindle mode

    Try putting a G18 after the first G03
  11. Replies
    1
    Views
    906

    Re: Missing Project onto Model

    It's GeoEdit Project in your Geometry Plug-Ins
  12. Replies
    3
    Views
    5,517

    Re: HMC Program Trouble with G03

    without a print or geometry It's hard to help. from what I see the math is wrong.
    try this code and see if it works for you.

    O51712(PRESSURE BLOCK)
    (MATERIAL -YELLOW BRONZE)
    (ORIGIN-X,Y,Z...
  13. Re: Milling an angle chamfer around slot with ballnose mill

    Check to see if Solidcam will output arcs when calculating tool path, otherwise you'll have to convert them yourself.
    this tool path was easy to convert. This is the first slot:

    G17 G21 G40 G80...
  14. Replies
    5
    Views
    1,315

    Re: G code problem - Fanuc Series 21i-MB

    Your first program you say doesn't rotate the spindle and there is no tool change. It doesn't make sense since M3 S6000 works in MDI
    If M6 T_ is the problem then the program should stop on that...
  15. Replies
    5
    Views
    1,315

    Re: G code problem - Fanuc Series 21i-MB

    The difference between /M3 S6000 and M3 S6000 is that a slash in the beginning of a line will be ignored when Block Delete is on. (a button or switch on the control)
  16. Replies
    13
    Views
    2,711

    Re: Chamfer on a cyclinder

    no cutter comp
  17. Replies
    13
    Views
    2,711

    Re: Chamfer on a cyclinder

    This is for part aligned in X, Hole at X0, Z0 at top of part, Metric

    N1T1M06
    G90G54G00X0Y0S6000M03
    G43Z2.H01M08
    G01Z-5.0F?(input feed)
    G03X11.5Y0I5.75J0F?(input feed)
    G01X11.484Y0.602Z-5.01...
  18. Replies
    13
    Views
    2,711

    Re: Chamfer on a cyclinder

    is the control in metric?
    Part aligned with x?
    position X or Y of hole?
  19. Replies
    13
    Views
    2,711

    Re: Chamfer on a cyclinder

    Need more machine info.
    Lathe/Mill
    If lathe does it have a Y axis
    If Mill are you using a rotary
    Control model

    Could not find that model online
  20. Replies
    3
    Views
    1,347

    Re: SPLIT CIRCLE IN GIBBS V12

    The one your looking for is GeoEdt-Split using equally spaced with a value of 2
    If you don't see that maybe you need to activate the geoedit.dll in plugin manager.
    you'll need to restart Gibbs to...
  21. Re: G02 bad arc error or just wanders off into space.

    Good catch, overlooked that, thanks
  22. Re: G02 bad arc error or just wanders off into space.

    If your setting the tool radius in the tool offset page then I would modify the program like this

    O01230
    (X-0 Y-0 MACHINE SIDE LEFT CORNER)
    (MACHINE RUNNING IN ABSOLUTE INCH COORDINATES)
    N005...
  23. Replies
    17
    Views
    3,202

    Re: 31i macro argument issues

    add this line after #104 is defined:
    #104=RND[#104*10000]/10000
    that will round to 4 decimal places
  24. Replies
    17
    Views
    3,202

    Re: 31i macro argument issues

    In your program the line:
    IF[#104EQ9.525THEN#142=7.5
    is missing close bracket before then
  25. Thread: Fanuc OM

    by mcode
    Replies
    6
    Views
    1,328

    Re: Fanuc OM

    Only one type can be used as far as I know.
  26. Thread: Fanuc OM

    by mcode
    Replies
    6
    Views
    1,328

    Re: Fanuc OM

    That is correct
  27. Re: Circular Interpolation - Milling a Circle on a Shaft OD.

    The H value should be X cutting rad. from spindle center (H65. or H65000) assuming your X Radius programming.
  28. Replies
    9
    Views
    3,318

    Re: Mill program GOTO condition

    The programming dept. should want to modify the tool change macro because it will eliminate the workaround in the post and also work when you call up a tool in MDI. If they won't you try this in your...
  29. Replies
    9
    Views
    3,318

    Re: Mill program GOTO condition

    you could modify your tool change macro like this:

    9026 (M6 CALL SERVO-ATC)
    (PRM6086=6)
    #3003=1
    G90 G53 Z0
    G90 G53 A0 Y0
    IF[#994 EQ #149]GOTO1
    M6
    N1
  30. Replies
    8
    Views
    2,672

    Re: HEF MILLING ( HIGH EFFICIENCY MILLING )

    It sounds like your helical plunge feeds & helical angle on the plunge moves need to be adjusted. I would also let your sales rep let you try different tools until you find something that works.
Results 1 to 30 of 102
Page 1 of 4 1 2 3 4