문제

단일 사다리 런에서 얼마나 많은 출력을 가질 수 있는지. 둘 이상이 있다면. 그것은 논리, 또는 논리일까요. 시리즈 또는 평행. 닫힌 입력 명령어로 지연 지침의 타이머를 사용하여 6 개의 조명을 플래시하려고합니다. Allen Bradley SLC 500 시리즈 PLC를 사용할 것입니다.

도움이 되었습니까?

해결책

In a ControlLogix or CompactLogix PLC 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.

다른 팁

If you are programming an SLC500 then you cannot have an OTE in the middle of a rung. It must be at the very right hand side of the rung. You may however (and is a common practice) create a branch around the OTE and have another OTE (or OTU, or OTL, or any other output) on its own branch (again at the very right of the branch).

So using this method you can have as many OTEs on any given rung. However a best practice is to limit the number (to say 10 or 20 per rung) for readability and split them onto several rungs as necessary.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top