Why Should Emergency Stop in PLC Programming Be Wired as Normally Open?

Why Should Emergency Stop in PLC Programming Be Wired as Normally Open?In PLC programming, the physical contact of the stop button is generally connected as normally closed, while in the program, it is written as normally open. This type of stop button only serves as a signal in this equipment.Why is the emergency stop in PLC programming opposite to that of a regular emergency stop button? In fact, writing it as normally open is not only for the emergency stop but also for thermal relays, temperature control, and other contacts with protective functions. The specific reasons are detailed below:First, the emergency stop button is also connected to the PLC’s DI point as a normally closed contact:Why Should Emergency Stop in PLC Programming Be Wired as Normally Open?The above image shows a part of the wiring diagram for connecting the emergency stop button to the PLC, where you can see that it is connected as a normally closed contact! The advantage of connecting as a normally closed contact is that when the circuit of the emergency stop button is broken, the program can immediately reflect this, or in other words, it is equivalent to the emergency stop button being pressed, turning the normally closed contact into a normally open contact, thus achieving monitoring of the disconnection state!Next, let’s take a look at the PLC program:Why Should Emergency Stop in PLC Programming Be Wired as Normally Open?In this program, the start condition 1 (I0.2) and start condition 2 (I0.3) are both connected to the PLC as normally open buttons, while the emergency stop button (E_StopPB) is connected to the PLC as a normally closed button! — From the circle ① in the image, it can be seen that when none of the three buttons are pressed, only E_StopPB is connected. When all three buttons are pressed, as shown in circle ②, the states of start conditions 1 and 2 are connected, while the state of E_StopPB shows as disconnected!The difference in these two states explains why the emergency stop button is wired as normally closed at the PLC hardware level, while in the PLC program it is used as normally open! — This is because the digital input (DI) points of the PLC module are designed such that when the peripheral circuit is connected, the program internally shows as connected, and when the peripheral circuit is disconnected, the program internally shows as disconnected. This is a result of the hardware circuit design of the PLC’s DI points!Additionally, because the emergency stop signal is a very important point, people utilize the hardware characteristics of the PLC’s digital input (DI) points to stipulate that the wiring of the emergency stop button should be connected as a normally closed point! — Because the normally closed point keeps the circuit continuously connected, the program must use a normally open point, ensuring that when there is no emergency stop, the program logic can remain connected!Disclaimer:This article is a network reprint, and the copyright belongs to the original author.The reprinted articles do not represent the views of this public account or its responsibility for their authenticity.However, due to the numerous reprints, it is impossible to confirm the true original author. If there are any copyright issues, please contact us in a timely manner, and we will delete the content to ensure your rights!

Leave a Comment