What's new
What's new

Problem with FANUC 16i-MA

GMoreno

Plastic
Joined
Sep 26, 2011
Location
Aguascalientes, Mexico
Hi everybody.
I have a problem with a program in fanuc 16i-MA controller.
The program starts normally, but when the program reads the first G01, the program doesn't jump to the next line.

The system doesn't show any alarm

Could anybody helps me?
 
Silly I know......but Is the feedrate override at 0% ?.......
Doors closed?
Machine Lock on?......

Run it again, when it hangs press the 'pos' button and see if it's showing any 'remaining distance' for Z.
 
Check for a G94 somewhere in your program before that line, make sure it is there. Use a decimal place at the end. Is it not moving at all or is it moving very slow?


Husker
 
Try posting a bit more code. It's possible that the machine is doing something else in the background and it's waiting for a confirmation signal to confirm the event before continuing. Something like putting a tool away after a tool change, and the tool changer hangs up or times out for example...
 
Check for a G94 somewhere in your program before that line, make sure it is there. Use a decimal place at the end. Is it not moving at all or is it moving very slow?


Husker

The machine doesn't move.
The part of the program is

N1
G21
M98P9005
M98P9010
G0G80G40G91G30Z0
G0G91G30X0Y0
M11
G28B0.0
M10
IF[#147EQ1]GOTO2
IF[#147NE1]THEN#3000=99
IF[#1000EQ1]THEN#3000=93
N2
M1


N60(N6 M14 PORTING TOOL)
T06
M6
M8M88M80
(G0G90B0.)
IF[#5024NE0]THEN#3000=10
(PART #1)
G0G90G54.1P21
G43H6X91.1Y16.7Z68.0T07M3S11500
Z62.0
G1Z38.0F2000.0 ----THIS LINE ISN'T EXECUTE
G0Z90.0
 
The machine doesn't move.
The part of the program is

N1
G21
M98P9005
M98P9010
G0G80G40G91G30Z0
G0G91G30X0Y0
M11
G28B0.0
M10
IF[#147EQ1]GOTO2
IF[#147NE1]THEN#3000=99
IF[#1000EQ1]THEN#3000=93
N2
M1


N60(N6 M14 PORTING TOOL)
T06
M6
M8M88M80
(G0G90B0.)
IF[#5024NE0]THEN#3000=10
(PART #1)
G0G90G54.1P21
G43H6X91.1Y16.7Z68.0T07M3S11500
Z62.0
G1Z38.0F2000.0 ----THIS LINE ISN'T EXECUTE
G0Z90.0


Insert a G94 after the G1.
 
I think I got it;) Next time it does it check in your custom atc screen to see if you have tool change door close confirmation. If not you either have a prox going bad on your cylinder, or it needs adjustment.


Husker
 








 
Back
Top