On a single ladder rung how many outputs can you have. If you have more than one. Would it be AND Logic, or OR Logic. Series, or parallel. I'm trying to make six lights flash using timer on delay instructions with a closed input instruction. I will using an Allen Bradley SLC 500 series PLC.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

A ladder logic rung may have as many outputs (OTE) as you like, both at the right hand end of logic rung and even in the middle of a logic rung.

Each output is controlled only by the logic leading up to it. If you have multiple outputs at the same point in the rung, they will all have the output reflecting the logic condition from the rung start up to that point. This is a common method used to drive several outputs with the same signal at once.

If you have multiple outputs at different points in the rung, each will have outputs that correspond to the logic leading to that output. Logic downstream from an OTE acts as if the OTE wasn't present.

Now, you may have complex devices (e.g., Timer) controlled by logic within a rung. Obviouosly, further logic that depends on the output of the complex device (e.., Timer Done) will not be independent of the behaviour of complex device. But just like OTEs, you may have lots of complex devices in a rung.

link|improve this answer
Side note, it depends on the implementation. However I believe with Rockwell stuff this is true. Of course, you can always use additional rungs to make the equivalent statement. – rlbond Nov 30 '09 at 2:50
I'll admit I only worked seriously on Rockwell controllers. Which of the other controllers offer only a simpler style of rung? – Ira Baxter Nov 30 '09 at 5:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.