Inst ToolsInst ToolsInst Tools
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Search
  • Books
  • Software
  • Projects
  • Process
  • Tools
  • Basics
  • Formula
  • Power Plant
  • Root Cause Analysis
  • Electrical Basics
  • Animation
  • Standards
  • 4-20 mA Course
  • Siemens PLC Course
Reading: PLC Emergency Stop Example Program
Share
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • Design
  • PLC
  • Interview
  • Control System
Search
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > PLC Tutorials > PLC Emergency Stop Example Program

PLC Emergency Stop Example Program

In the PLC emergency stop example program, when the emergency button is pressed, the elevator stops immediately and doors open.

Last updated: May 13, 2024 3:44 pm
Editorial Staff
PLC Tutorials
No Comments
Share
7 Min Read
SHARE

In the PLC emergency stop example program, when the emergency button is pressed, the elevator stops immediately and doors open.

Contents
Emergency Stop Example ProgramPLC Automation TrainingInputs and OutputsLadder LogicProgram DescriptionSimulation ResultsWhen the Emergency Button is pressedWhen the Reset Button is pressed

Note: This is an example of PLC logic to practice programming with basic applications. This is for students to learn PLC.

Emergency Stop Example Program

Problem Statement:

Design a PLC ladder logic for the following application.

We are using three toggle switches to control the Elevator and Doors.

When the Emergency Button is pressed, stop the elevator immediately. Open the doors once stopped.

When the Reset Button is pressed, it clears the faults, i.e. the doors will close and the Elevator will start again.

PLC Automation Training

Elevator Emergency Stop PLC Example Logic

Inputs and Outputs

Digital Inputs:

Start Button: I0.0

Emergency Button: I0.1

Reset Button: I0.2

Digital Outputs:

Elevator: Q0.0

Doors: Q0.1

Ladder Logic

PLC Emergency Stop Example Program

Program Description

We have used Normally Open Contacts for Start Button(I0.0), Emergency Button (I0.1), Reset Button (I0.2), Memory Bit 1 (M0), and Memory Bit 2 (M1).

We have used Normally Closed Contacts for Memory Bit 1 (M0) and Memory Bit 2 (M1).

In Rung 0:

  1. Normally Open Contact is used for the Start Button (I0.0)  to Turn ON the output Elevator (Q0.0).
  2. Normally Closed Contact is used for Memory Bit 1 (M0) to turn OFF the output Elevator (Q0.0).

In Rung 1:

  1. Normally Open Contact is used for Memory Bit 1 (M0)  to Turn ON the output Doors (Q0.1).

In Rung 2:

  1. Normally Open Contact is used for the Emergency Button (I0.1)  to Turn ON Memory Bit 1 (M0).
  2. Normally Closed Contact is used for Memory Bit 2 (M1) to turn OFF Memory Bit 1 (M0).
  3. Memory Bit 1 (M0) is latched so that when the Emergency Button (I0.1) is turned OFF, Memory Bit 1 (M0) still remains ON.

In Rung 3:

  1. Normally Open Contact is used for the Reset Button (Q0.2)  to Turn ON Memory Bit 2 (M0).
  2. Memory Bit 2 (M1) is latched so that when the Reset Button (I0.2) is turned OFF, Memory Bit 2 (M1) still remains ON.

Simulation Results

Now we will simulate our PLC logic and discuss the results.

When the Emergency Button is pressed

When the Start Button (I0.0) is turned ON, the output Elevator (Q0.0) will turn ON as Normally Open Contact used for the Start Button (I0.0) will be in True state and allow the signal to flow through it.

In a false State, Normally Closed Contact used for Memory Bit 1 (M0) will also pass the signal to the output Elevator (Q0.0) and the output Elevator (Q0.0) will turn ON.

When the Emergency Button is pressed

When the Emergency Button (I0.1) is pressed in Rung2, Memory Bit 1 (M0) will turn ON as Normally Open Contact used for Emergency Button (I0.1) will be in True state and allow the signal to flow through it.

In a false State, Normally Closed Contact used for Memory Bit 2 (M1) will also pass signal to Memory Bit 1 (M0), and Memory Bit 1 (M0)will turn ON. Memory Bit 1 (M0) is latched so that when the Emergency Button (I0.1) is turned OFF, Memory Bit 1 (M0) still remains ON.

Basic E-stop PLC programming example

When Memory Bit 1 (M0) turns ON in Rung2, Normally Closed Contact used for Memory Bit 1 (M0) in Rung0 will be in True State and does not allow the signal to flow through it and the output Elevator (Q0.0) will turn OFF (Elevator will Stop immediately).

Also when Memory Bit 1 (M0) turns ON in Rung2, Normally Open Contact used for Memory Bit 1 (M0) will be in True state and will pass the signal to turn ON the output Doors (Q0.1) and the output Doors will turn ON (Doors will Open).

When the Reset Button is pressed

When Reset Button (I0.2) is pressed in Rung3 (the fault is cleared), Memory Bit 2 (M1) will turn ON as in True state, Normally Open Contact used for Reset Button (I0.2) will pass the signal to turn ON Memory Bit 2 (M1). Memory Bit 2 (M1) is latched so that when the Reset Button (I0.2) is turned OFF, Memory Bit 2 (M1) still remains ON.

When Memory Bit 2 (M1) turns ON in Rung3, Normally Closed Contact used for Memory Bit 2 (M1) in Rung2 will be in True State and does not allow the signal to flow through it and Memory Bit 1 (M0) will turn OFF.

When the Reset Button is pressed

When Memory Bit 1 (M0) turns OFF in Rung2, Normally Open Contact used Memory Bit 1 (M0) will be in a false state and does not allow the signal to flow through it and the output Doors (Q0.1) will turn OFF ( Doors will close).

Also when Memory Bit 1 (M0) turns OFF in Rung2, Normally Closed Contact used for Memory Bit 1 (M0) in Rung0 will be in a false State and will allow the signal to flow through it and the output Elevator (Q0.0) will turn ON (Elevator will start again).

If you liked this article, please subscribe to our YouTube Channel for PLC and SCADA video tutorials.

You can also follow us on Facebook and Twitter to receive daily updates.

Read Next:

  • Single Loop Controller Problems
  • Shift and Rotate Instructions in PLC
  • PLC Logic Auto Sugar Bag Filling Station
  • SCADA Level Control System Software
  • PLC Programming Two-Hand Control Logic
Don't Miss Our Updates
Be the first to get exclusive content straight to your email.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
You've successfully subscribed !

Continue Reading

Automatic Highway Lights Program using RTC in Omron PLC
Rockwell Automation Allen Bradley PLC for Smaller and Medium Projects
PLC Analog Input Conversion Formula
Download Free HMI software – CODESYS
How to Use Encode and Decode Instructions in PLC ?
How to Interchange ON Delay Timer and OFF Delay Timer in a PLC
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

128.3kFollowersLike
69.1kFollowersFollow
210kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

PLC Logic for Analog Alarms using Functional Block Diagram
Program Flow Control Instructions in PLC Programming
PLC Analog Input Sampling Ladder Logic
XG5000 Example of Simple Conveyor Control PLC Program
Automatic Curtain Control – PLC Programming Solution
Various Communication Protocols in PLC
Preventive Maintenance of Variable Frequency Drive (VFD)
PLC Panel and MCC Panel Interface Signals

Keep Learning

What is a Tag in SCADA

What is a Tag? Types of Tags in SCADA

PLC Timer Programming Examples – TON, TOF, TP and TONR

Grounding Electronic Equipment

Importance of Grounding Electronic Equipment

Communication between Intouch Scada and Allen Bradley PLC

Communication between InTouch Scada and Allen Bradley PLC

PLC Logic Example on Multiple Switches and Motors

PLC Logic Example on Multiple Switches and Motors

Hardwired IO and Serial IO - Differences Explained

Hardwired I/O and Serial I/O – Differences Explained

PLC Programming in Hindi - Siemens Tia Portal Full Course

PLC Programming in Hindi – Siemens Tia Portal Full Course Free

Types of Instructions in PLC Programming

Types of Instructions in PLC Programming

Learn More

Thermal Differential Level Measurement

What is Thermal Differential Level Measurement?

PLC Automatic Control of Two Outputs with one Input

PLC Automatic Control of Two Outputs with one Input

Tie rods double acting cylinder

What is a Pneumatic Cylinder?

Limit Switch Working

Limit Switch Animation

Fire Detectors Working Principle

Basics of Fire Detection and Alarm System

How to Select a Flow Meter

How to Select a Flow Meter

Structured Text PLC Programming for Two-Tanks Level Control

Structured Text PLC Programming for Two-Tanks Level Application

Control Valve Tips and Tricks

Control Valve Tips and Tricks

Menu

  • About
  • Privacy Policy
  • Copyright

Quick Links

  • Learn PLC
  • Helping Hand
  • Part Time Job

YouTube Subscribe

Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?