Learn PLCs free
Safety SystemsBeginnerEssential
6 min read
Updated
Beginner

Emergency Stop (E-Stop): Function, Reset & Testing

E-Stop - Emergency Stop

Quick answer

An emergency stop is a manually initiated complementary protective function intended to avert or reduce an existing or impending hazard. It must override normal commands, remain latched until deliberately reset and must not cause an automatic restart when reset.

Key Takeaways

  • An emergency stop is a manually initiated complementary protective function intended to avert or reduce an existing or i...
  • Beginner-level topic in Safety Systems
  • Commonly used in: Machinery emergency-stop devices and pull-cord systems, Stopping hazardous motion or process energy in an emergency

Detailed Definition

An emergency stop is a machine safety function, not an ordinary stop pushbutton and not a single PLC input. The complete function includes the actuator, input devices, safety logic, final switching elements, stored-energy behavior, stopping performance, reset and restart prevention. ISO 13850 specifies functional requirements and design principles; IEC 60204-1 covers electrical realization and stop categories.

The emergency-stop function is complementary protection. It does not replace guarding, presence sensing, safe design or isolation for maintenance. A standard PLC may monitor a validated safety-system status for sequencing and HMI display, but ordinary logic must not be represented as the safety function unless the complete implementation is safety-rated and validated for the required risk reduction.

Evidence and scope

The safety boundary is based on ISO 13850 and IEC 60204-1 publication records. This page explains design and validation concepts; it cannot determine the required PL, SIL, stop category or architecture for a particular machine. Those decisions require a documented risk assessment and competent safety engineering.

Technical review:

Emergency-stop function boundary from operator actuator through safety logic and final energy-control elements
Editorial illustration: the emergency-stop function is an end-to-end path, not a single input bit
Risk-based decision diagram comparing emergency-stop category zero and category one stopping behavior
Editorial illustration: stopping behavior is selected from hazard analysis and machine stopping performance

Critical behavior

  • Resetting an emergency-stop device permits the safety system to become ready; it must not by itself restart hazardous motion.
  • The required stop response depends on the hazard and risk assessment. “Remove all power immediately” is not universally the safest response.
  • The safety function includes sensors, logic, final elements and stored energy—not only the red mushroom actuator.
  • A standard PLC rung that observes EStopHealthy is status or process logic, not proof of achieved PL or SIL.
  • Fault detection, discrepancy timing, contactor feedback and restart interlocks must be validated as part of the complete safety function.

Verification checklist

  1. 1Trace the safety requirement to a named input, logic solver, final element and feedback path.
  2. 2Test every actuator location and each credible single fault defined by the validation plan.
  3. 3Measure stopping time or distance at the worst credible load and speed.
  4. 4Verify that reset never initiates motion and that a maintained start cannot cause restart.
  5. 5Record device versions, configuration signatures, results, witnesses and corrective actions.

IEC and vendor terminology

Similar-looking instructions do not always have identical execution, initialization or storage behavior.

PlatformCommon termWhat to verify
ISO 13850Emergency-stop functionComplementary protective function with defined actuation, latching, reset and restart principles; it does not replace primary safeguarding.
IEC 60204-1Stop category 0 or 1Electrical stop behavior is selected from the risk assessment. Category 2 is not an emergency-stop category under ISO 13850.
Safety relay / safety PLCSafety functionMonitors input channels and final elements using a validated architecture suitable for the required risk reduction.
Standard PLC / HMIEStopHealthy statusMay inhibit normal sequence logic and show diagnostics, but must not be mistaken for the certified safety path.

Separate the safety function from standard sequence logic

The standard controller can consume a validated healthy status, but the risk-reduction path remains in the safety-rated system.

Emergency-stop state and restart table

The table describes functional intent only. Actual channel logic and reset monitoring belong in approved safety components and their validated configuration.

State / phaseSafety demandReset availableHazardous motion allowed
Normal and healthyNoNot requiredOnly under normal control
E-stop actuatedYesNoNo
Actuator releasedDemand clearedYes, if all diagnostics healthyNo
Reset completedNoReady stateNo automatic restart
Separate start requestNoReset already completeOnly if all normal permissives are true
A reset restores readiness; a distinct start action and normal permissives control any subsequent movement.
Emergency-stop state model separating actuation, hazard removal, device reset and controlled restart request
Editorial illustration: device reset and machine restart are separate, deliberate transitions
Emergency-stop evidence chain connecting risk assessment, design, calculation, validation and signed test records
Editorial illustration: a safety claim needs traceable evidence from requirement through field result

Working LD and ST example

Standard logic may monitor safety status without implementing it

Use the validated safety-system status to inhibit a normal sequence and expose diagnostics. The example does not implement the safety function.

Ladder Diagram

|----[ Safety_System_Healthy ]----[ Start_Request ]----( ) Cycle_Enable----|
|----[/ Safety_System_Healthy ]------------------------( ) Safety_Status_Alarm|

Structured Text

CycleEnable := SafetySystemHealthy AND StartRequest AND NormalPermissives;
SafetyStatusAlarm := NOT SafetySystemHealthy;

// SafetySystemHealthy is supplied by the validated safety system.
// This standard task must not command or bypass the safety outputs.

Expected result: Loss of the healthy status immediately inhibits the normal cycle command. Restoring it does not create a start request or reset the safety system.

Emergency-stop validation matrix covering channel faults, welded final elements, reset and restart prevention
Editorial illustration: fault injection reveals diagnostic and restart behavior that a normal push test misses
Generic safety validation workbench with emergency-stop devices, safety controller, contactor feedback and measurement equipment
Editorial illustration: representative test equipment supports measured stopping and diagnostic evidence without depicting a branded installation

Failure modes and diagnostic checks

SymptomLikely causeCheck next
Machine restarts when the mushroom is releasedReset and restart were combined or a maintained start request was accepted immediately.Require a deliberate reset followed by a separate start transition and test every operating mode.
E-stop input changes but hazardous motion continuesFinal elements, drive safe function, stored energy or wiring were not included in the validated path.Trace the complete safety function and measure stopping response under worst credible conditions.
One channel fault is not diagnosedChannel architecture, discrepancy monitoring or test-pulse compatibility is incorrect.Run the approved single-fault tests and inspect device-specific diagnostics.
HMI says safe while a contactor remains weldedThe displayed bit is a command rather than verified final-element feedback.Use monitored feedback in the safety design and label command, status and proof distinctly.

Current primary and technical sources

These sources support the behavior summarized on this page. The project's controller, firmware and IDE help remain authoritative for implementation.

Continue with the practical guide

Common Questions

What is Emergency Stop?

An emergency stop is a manually initiated complementary protective function intended to avert or reduce an existing or impending hazard. It must override normal commands, remain latched until deliberately reset and must not cause an automatic restart when reset.

When should I use Emergency Stop?

Emergency Stop is particularly useful in scenarios such as Machinery emergency-stop devices and pull-cord systems and Stopping hazardous motion or process energy in an emergency. Consider implementing it when you need reliable, efficient solutions for these types of applications.

What should I verify before using Emergency Stop?

Trace the safety requirement to a named input, logic solver, final element and feedback path. Test every actuator location and each credible single fault defined by the validation plan. Measure stopping time or distance at the worst credible load and speed. Verify that reset never initiates motion and that a maintained start cannot cause restart. Record device versions, configuration signatures, results, witnesses and corrective actions.

What are related concepts I should learn?

To fully understand Emergency Stop, you should also familiarize yourself with Safety PLC, GuardLogix, and Light Curtain. These concepts work together in industrial automation systems.

Was this helpful?

Let us know if this glossary term helped you understand Emergency Stop better.

Your feedback helps us improve our glossary and create better content for the PLC programming community.

Quick Info

Difficulty
Beginner
Tier
Essential

About Safety Systems

Safety PLCs, interlocks, and protective devices

Total Terms:18
Difficulty:Intermediate to Advanced

Free PLC simulator

Stop reading, start doing

Write ladder logic in your browser, hit Run, and watch machine scenarios react. A 12-lesson curriculum across 8 PLC dialects — free account, no credit card.

Practice PLCs free →