controllogix monitor local fuses logic

simmo231

Member
Join Date
Mar 2011
Location
newtown
Posts
12
Hi all,
i would like to be able to assign a bit in my program to show if an output modules electronic fuse has popped. does any one know if monitoring the individual fuses is possible within the ladder logic.

cpu= 1756-l55
outputs = 1756-ob8ei

many thanks
 
One suggestion you might consider...and this does not apply to the module you are using. But consider using the FuseBlown tag in the NEQ and as the source of the MSG instead of the Fault tag.

For the module you are using though, the suggested logic above is all you need. It works just fine. For that module the fault tag will mirror the fuse tag. Whenever a fuse is blown it turns on the specific FuseBlown tag and that in turn causes the Fault tag to turn on. That module has no other types of faults it can detect.

But there are other modules that can detect different types of faults. These are mainly with what they call "diagnostic" modules (part # ends with a "D" like a 1756-OB16D). They can detect: FuseBlown, NoLoad, OutputVerifyFault, and some can also detect the loss of field power. Each of those fault types trigger their own tags. For example, if a wire comes loose and it doesn't detect a load on output #4 when we turn it on, then the NoLoad.4 tag turns on which would also turn on the Fault.04 tag. We wouldn't want to try to reset the fuse when a NoLoad fault has occurred.

These diagnostic modules are not commonly used as they are expensive. But I have run into them a few times. In those cases, we write different logic to reset the different types of faults.

But again, for your module the logic above works as is.

OG
 
You are correct that I could've used the module input status tag Local:2:I.FuseBlown in my code but it was the first time I had done it and the method I used is what was advised where I got the solution from. At the time I did the project in my screenshot I wasn't aware the tag you've identified existed. It would make sense to use the tag if it's there, but as you've pointed out both methods work.
 
Rockwell has a Tech Note describing how to do this and they also use the Fault tag as the source of the MSG. They didn't have the NEQ in their example, just a BOOL to trigger. But I also use the NEQ like you show it.

OG
 

Similar Topics

I am trying to add three AB 1426-M6E Power Monitor 5000s to the Device Tree of my Control logix application. Processor is L62 v. 20.12 Logix5000...
Replies
3
Views
1,742
Trying to test a Contactor-delivered app that apparently never worked properly. So I wrote a test procedure and assumed I would be able to force...
Replies
4
Views
2,415
I'm trying to integrate a Beckhoff IPC with a Controllogix PLC. There is some documentation, on the Beckhoff website, on how to do a PLC-PLC comms...
Replies
0
Views
64
Why does the controllogix redundancy modules use a single mode fiber vs multimode fiber?
Replies
1
Views
89
Hello, I have two 16 point input cards and 1 16 point output card showing module faulted on my IO tree in Logix Designer. The fault code is...
Replies
7
Views
223
Back
Top Bottom