585,997 active members*
4,793 visitors online*
Register for free
Login
IndustryArena Forum > Machine Controllers Software and Solutions > Fanuc > 197 C-AXIS COMMANDED IN SPINDLE MODE
Results 1 to 9 of 9
  1. #1
    Join Date
    Mar 2006
    Posts
    107

    197 C-AXIS COMMANDED IN SPINDLE MODE

    Machine is lathe Romi G15SM
    Control Fanuc 18i-TA
    Alarm: 197 C-AXIS COMMANDED IN SPINDLE MODE

    Here is whole program.
    Machine stops and alarms at point "PROBLEM" in red color.
    When machine reads this line "G0 X0", in DISTANCE TO GO there is value for X and C. Obviously it thinks it is still in circular interpolation?!

    Anyway, I have to push RESET, go to line "(CENTER DRILL 8 TM)" and than run program.
    There is same thing lower in the program (C-mode with circular interpolation and spindle mode after it), but there is no problem, no alarm.

    I attached M-code list of machine.

    %
    O0680 (PLATE-BRNO550-FIX-1)
    G90 G40 G18 G54

    T0004 (LONGEST)
    G0 Z20

    (PULLER)
    T0808
    G94 F3000
    G0 X30
    G0 Z-20
    M45
    M3 S20
    G4 P4000
    M5
    M46
    G1 X0
    G4 P2000
    M24
    G4 P2000
    G91
    G1 Z9.4
    G90
    G4 P2000
    M25
    G4 P2000
    G1 X30
    G0 Z2

    T0004 (LONGEST)
    G0 Z20

    (TURNING)
    T0101
    M45
    G95 F0.08
    G96 S100
    G92 S3500
    G0 X18
    M4
    G0 Z0
    G1 X-2
    G1 Z1
    M5
    M46

    T0004 (LONGEST)
    G0 Z20

    (CUT OFF 2.2)
    T0202
    M45
    G95 F0.1
    G92 S3000
    G96 S50
    G0 X18
    M3
    G0 Z-9.1
    G1 X8
    G1 X18 F0.5
    G0 Z2
    M5
    M46

    T0004 (LONGEST)
    G0 Z20

    (END MILL 12)
    T0606
    M45
    G97 S2000
    G94
    G0 X50
    M16
    M19 (C-AXIS ON)
    G28 G91 G0 C0
    G0 G90 C0
    G0 Z2
    G12.1 (CIRCULAR INTERPOLATION ON)
    G42
    G1 X-10.3 C12 F5000
    G1 Z-7.5
    G1 C0. F200
    G3 X10.3 C0. R5.15
    G1 C5.55
    G3 X8.9 C6.25 R0.7
    G1 X-8.5
    G3 X-9.9 C5.55 R0.7
    G1 C0.
    G3 X9.9 C0. R4.95
    G1 C5.55
    G3 X8.9 C6.05 R0.5
    G1 X-8.9
    G3 X-9.9 C5.55 R0.5
    G1 C4.55
    G2 X-23.9 C-4.989 R10.
    G1 Z2 F5000
    G40
    G13.1 (CIRCULAR INTERPOLATION OFF)
    M18 (C-AXIS OFF)
    M17
    M46
    M5

    T0004 (LONGEST)
    G0 Z20

    (CENTER DRILL 8 TM)
    T1212
    M45
    G95 F0.04
    G97 S2500
    G0 X0 (PROBLEM)
    G0 Z1
    M3
    G1 Z-3.6
    G4 P500
    G0 Z2
    M46
    M5

    T0004 (LONGEST)
    G0 Z20

    (DRILL 4 HSS)
    T1111
    M45
    G97 S2500
    G94
    G0 X0
    M3
    G0 Z1
    G1 Z-9.2 F110
    G1 Z2 F5000
    M46
    M5

    T0004 (LONGEST)
    G0 Z20

    (END MILL 7)
    T0404
    M45
    G97 S2500
    G94
    G0 X0
    M3
    G0 Z1
    G1 Z-3 F50
    G4 P500
    G1 Z2 F1000
    M46
    M5

    T0004 (LONGEST)
    G0 Z20

    (CHAMFER MILL)
    T1010
    M45
    G97 S2000
    G94
    G0 X50
    M16
    M19
    G28 G91 G0 C0
    G0 G90 C0
    G0 Z2
    G12.1
    G42
    G1 X20 C6.05 F5000
    G1 Z-4.5
    G1 X-9.9 F200
    G1 Z-3.5
    G1 C0.
    G3 X9.9 R4.95
    G1 C12
    G1 Z2 F5000
    G40
    G13.1
    M18
    M17
    M46
    M5

    T0004 (LONGEST)
    G0 Z20

    (CUT OFF 2.2)
    T0202
    M45
    G95 F0.1
    G97 S2000
    G0 X18
    G0 Z-9.1
    M3
    G1 X-1
    G1 Z-8
    G0 Z2
    M5
    M46

    T0004 (LONGEST)
    G0 Z20

    M99
    %
    Attached Files Attached Files
    Sorry for bad english

  2. #2
    Join Date
    Aug 2008
    Posts
    406
    I dont see a M43 C axis connect......

  3. #3
    Join Date
    Mar 2006
    Posts
    107
    Quote Originally Posted by gabedrummin View Post
    I dont see a M43 C axis connect......
    I think this is not used on my machine...
    For M43 manual says "Chuck Clean Off".

    I have done pretty much programing (cutting) with C-axis since now, always using same principle, and never had problem like this.
    Sorry for bad english

  4. #4
    Join Date
    Jun 2007
    Posts
    119
    try to put M3 before G0 X0 (PROBLEM)

  5. #5
    Join Date
    Mar 2006
    Posts
    167
    Looks ok to me. My only question would be is the line definitely G0 X0 and not C0 X0 in the machine?

  6. #6
    Join Date
    Mar 2006
    Posts
    107
    Quote Originally Posted by viorel26 View Post
    try to put M3 before G0 X0 (PROBLEM)
    Tried this before and now again, doesn't help.


    Quote Originally Posted by Ozemale6t9 View Post
    Looks ok to me. My only question would be is the line definitely G0 X0 and not C0 X0 in the machine?
    It is G0 X0 for sure. In other case, when I push RESET and continue program from this tool, at line (CENTER DRILL 8 TM), it would alarm again.
    But when I do that program runs OK.
    Sorry for bad english

  7. #7
    Join Date
    Mar 2006
    Posts
    107
    Any other ideas?

    I have tried to put G1 X0 F1 instead of G0 X0 but no help.
    I tried to put some other value for X different than 0. No help.

    In every case when machine reads this line in Distance to go there is value for X and for C. And alarm.

    After pressing OK and starting program from this line again, everything is OK... until it comes to this line again (after one cycle).
    Sorry for bad english

  8. #8
    Join Date
    Feb 2006
    Posts
    1792
    When you get the alarm, is G13.1 active?

  9. #9
    Join Date
    Mar 2006
    Posts
    107
    Quote Originally Posted by sinha_nsit View Post
    When you get the alarm, is G13.1 active?
    Very good question. I have not checked it before.
    Now I see that G13.1 IS ACTIVE when I get alarm.
    It means that circular interpolation is CANCELED.

    So why it wants to move "X and C" when I give X...
    Sorry for bad english

Similar Threads

  1. PMC-ALARM 202 "Commanded Tool in Spindle"
    By moldmker in forum Mori Seiki Mills
    Replies: 2
    Last Post: 04-23-2009, 04:58 AM
  2. Bridgeport EZTRAK Alarm: commanded X-axis move too far positive
    By Pribbs in forum Bridgeport / Hardinge Mills
    Replies: 4
    Last Post: 01-23-2009, 03:34 PM
  3. Alarm: commanded X-axis move too far positive
    By JonMatear in forum Bridgeport / Hardinge Mills
    Replies: 3
    Last Post: 08-06-2008, 02:41 PM
  4. parser: commanded z axis move to far possitive
    By tonymann in forum Bridgeport / Hardinge Mills
    Replies: 1
    Last Post: 11-10-2007, 06:05 AM
  5. Replies: 14
    Last Post: 01-08-2007, 06:10 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •