Master Control Relay confusion

mikeking

Member
Join Date
Sep 2010
Location
Maryland
Posts
4
I'm reading the book Programmable Logic Controllers published by Newnes. I'm finding the section on Master Control Relays a little confusing. I have quoted the text from the book and interleaved my questions with it. The text explains the IL code at the bottom of this post.

"With M100 switched on but M101 off, the sequence is: rungs 1, 3, 4, 6, and so on."

How can rung 4 be evaluated? Also, if rung 4 is evaluated then shouldn't rung 5 be as well?

"The end of the M100 controlled section is indicated by the occurrence of the other MCR, M101."

What does "the other MCR" mean? There's only one, right? Under what circumstance does rung 5 get evaluated?

"With M101 switched on but M100 off, the sequence is: rungs 2, 4, 5, 6, and so on. The end of this section is indicated by the presence of the reset. This reset has to be used since the rung is not followed immediately by another MCR."

MCR just delimits the end of Master Control Relay and does not change any state, right?

LD X400 (* rung 1 *)
AND X401
OUT M100

LD X402 (* rung 2 *)
AND X403
OUT M101

MC M100

LD X404 (* rung 3 *)
OUT Y430

MC M101

LD X405 (* rung 4 *)
OUT Y431

MCR M101 (* rung 5 *)

and so on (* rung 6 *)
 

Similar Topics

Master Control Relay can mean different things to different individuals. For the context of this discussion, I am speaking of a device that is...
Replies
7
Views
5,815
Just a quick question...I know that a hardwired master control relay should be present and you should never rely on one programmed into a PLC...
Replies
8
Views
8,641
Does anyone know if you can reset a counter with the reset inside the boundaries of a master control relay, if the MCR is de-energized, leaving...
Replies
6
Views
6,328
I have to start out by saying I am not a PLC programmer and I have basic programming skills but mainly use software as a troubleshooting tool. I...
Replies
0
Views
138
My tutor asked me for this small project: using S7-200 control MM440 with PROFIBUS. Because S7-200 with PROFIBUS module EM277 can only be PROFIBUS...
Replies
4
Views
2,982
Back
Top Bottom