This white paper examines two common safeguarding architectures used to cycle industrial presses: (1) dual two-hand control actuators and (2) a single start button combined with a safety light curtain. Both are evaluated against OSHA 29 CFR 1910.217 mechanical power press requirements and the ISO 13849-1 / ISO 13851 family of functional safety standards.
The central conclusion is that while a conventional PLC can coordinate non-safety automation logic, the core safety functions for two-hand control and presence-sensing guarding must be implemented in control-reliable, safety-rated hardware—typically a dedicated safety relay or a certified safety controller. Relying exclusively on generic PLC ladder logic cannot, in practice, achieve the diagnostic coverage, fault tolerance, and validated Performance Level (PL) demanded for point-of-operation protection.
Practical implementation patterns are provided for both scenarios, including dual-channel wiring, monitored contactors and pneumatic valves, and test strategies that detect welded contacts, broken conductors, and defeated two-hand stations. The paper is written from the perspective of engineers responsible for upgrading legacy presses or justifying design decisions to management, safety, and regulatory stakeholders.
Press operations remain some of the most hazardous tasks in manufacturing. Operators routinely work within inches of a closing slide or platen, with limited visibility and high repeatability of motion. Modern standards recognize that control-reliable hardware and validated safety functions are required to reliably prevent point-of-operation injuries.
This document focuses on two real-world start-and-guarding configurations commonly seen on mechanical or hydraulic presses:
In both scenarios, this paper assumes:
OSHA 29 CFR 1910.217 is the principal U.S. regulation governing mechanical power presses. Among other topics, it defines acceptable point-of-operation devices, control reliability, and brake monitoring. Specifically:
ISO 13849-1 defines the design principles and performance metrics for safety-related parts of control systems (SRP/CS), regardless of whether those parts are electrical, pneumatic, hydraulic, or mechanical. It introduces the concept of Performance Level (PL), ranging from PL a (lowest) to PL e (highest), and provides categories and diagnostic coverage requirements to achieve each level.
For press point-of-operation safeguarding using two-hand controls or presence-sensing devices, risk assessments typically drive a required performance level of PL d or PL e. Achieving these levels requires:
ISO 13851 specifies the safety requirements for two-hand control devices (THCD), including their functional behavior and fault avoidance. Core functional requirements include:
Both two-hand controls and light curtains must be placed at a safety distance so that the press can be brought to a stop before the operator can reach the danger zone. OSHA 1910.217 and ISO 13855 provide similar formulas based on:
Safety distance calculations are part of the overall safety function validation and must be documented along with control-reliability evidence.
In Scenario A, the operator initiates a press stroke via two palm buttons located outside the point of operation. This configuration is appropriate when the operator’s hands must be on the actuators and cannot be within the danger zone during the hazardous portion of the stroke.
The safety function can be stated as:
“When a stroke is initiated, the operator’s hands must remain on two spatially separated actuators. If either actuator is released or a fault occurs in the two-hand control circuit or final control elements, the press must fail to a safe condition (no stroke or immediate stop), and further strokes must be inhibited until the fault is corrected.”
In ISO 13849-1 terms, this typically maps to a Performance Level requirement of PL d or PL e for the two-hand safety function, with a Category 3 or Category 4 architecture and monitored outputs.
While the internal logic of a certified safety relay is not user-editable, its behavior can be modeled conceptually. The following pseudocode illustrates the safety function achieved by a two-hand safety relay:
// Conceptual safety function for dual two-hand control (Scenario A)
on power_up:
ensure CH1 == OFF and CH2 == OFF
state = READY
loop:
read CH1, CH2, feedback_K1, feedback_K2
// Fault detection on feedback from final control elements
if feedback_K1 == ON or feedback_K2 == ON when outputs == OFF:
state = FAULT // welded contact or valve
outputs = OFF
// Evaluate normal operation only if no faults
if state == READY:
if rising_edge(CH1) and rising_edge(CH2) within 500 ms:
outputs = ON
state = STROKE_ACTIVE
if state == STROKE_ACTIVE:
if CH1 == OFF or CH2 == OFF:
outputs = OFF // immediate stop command
state = READY // single-stroke completion
if commanded_stop or guard_open:
outputs = OFF
state = READY
// Anti tie-down: channels must return fully to OFF before next cycle
if (CH1 == ON and CH2 == OFF) or (CH1 == OFF and CH2 == ON):
// partial actuation is not acceptable between strokes
inhibit_next_cycle()
Implementing the above behavior directly in a standard PLC would require custom diagnostics, edge tracking, time window enforcement, and fail-safe output control. Even if implemented correctly, proving the required PL under ISO 13849-1 and demonstrating control reliability to OSHA is significantly more difficult than using a certified two-hand safety relay or safety controller.
In Scenario B, the press is initiated via a single-cycle start button, and the point-of-operation is guarded by a presence-sensing device (light curtain). The light curtain must:
The safety function can be stated as:
“A press stroke may only be initiated when the light curtain field is clear and all other safety conditions are met. If any beam is interrupted while the press is within the hazardous portion of its stroke, a stop command must be issued and the machine must stop within the validated stopping distance. Failures within the guarding or control circuits must be detected, prevent a successive stroke, and default to a safe condition.”
// Conceptual safety function for single-button + light curtain (Scenario B)
loop:
read LC_CH1, LC_CH2, feedback_K1, feedback_K2, start_request
// Light curtain OSSD diagnostics
if LC_CH1 != LC_CH2 or LC_CH1 == FAULT_STATE:
state = FAULT
safety_outputs = OFF
if feedback_K1 == ON or feedback_K2 == ON when safety_outputs == OFF:
state = FAULT
safety_outputs = OFF
if state == FAULT:
inhibit_stroke()
continue
guard_clear = (LC_CH1 == ON and LC_CH2 == ON)
// Enable power to press drive only when guard is clear
if guard_clear:
safety_outputs = ON
else:
safety_outputs = OFF
// Start logic: PLC or pushbutton may request a stroke
if start_request and guard_clear and no_other_safety_faults:
issue_stroke_command() // to press clutch / hydraulic valve
// Any guard interruption during stroke
if stroke_active and not guard_clear:
safety_outputs = OFF
command_stop()
inhibit_next_stroke_until_reset()
Again, while a PLC can be used to request a stroke and coordinate non-safety automation, the enforcement of guard-clear, OSSD diagnostics, and EDM must reside in the safety relay or safety controller to meet ISO 13849-1 and OSHA control-reliability obligations.
Many legacy installations rely on standard PLC ladder logic to combine two-hand buttons, start signals, and light curtain inputs. While such systems may appear to function correctly in normal operation, they rarely satisfy the formal requirements of control reliability and PL d/e without additional certified hardware and design evidence.
| Aspect | Safety Relay / Safety Controller | Standard PLC Logic |
|---|---|---|
| Standards Basis | Certified for use in ISO 13849-1 SRP/CS with published PFHd, DC, Category. | Typically no safety certification; performance not quantified for PL or SIL. |
| Control Reliability (OSHA 1910.217(b)(13)) | Designed to detect single faults and prevent successive strokes until corrected. | Possible only with custom design and extensive validation; difficult to prove. |
| Diagnostics | Built-in monitoring of input and output discrepancies, cross-faults, shorts, and EDM. | Must be modeled manually; diagnostic coverage often incomplete or undocumented. |
| Logic Integrity | Safety logic is protected, change-controlled, and often password- or tool-locked. | Logic can be edited easily; risk of unauthorized or unreviewed modifications. |
| Certification & Documentation | Manufacturer provides safety manual, application limits, and example circuits. | Designer bears full burden of proof for PL/Category calculations and validation. |
| Regulatory Acceptance | Aligns directly with OSHA guidance and industry best practices for press guarding. | Requires case-by-case justification; vulnerable under audit or incident investigation. |
A robust design cleanly separates Safety and Non-Safety responsibilities:
The PLC can treat the safety controller as a high-integrity “permission” source:
// PLC-side logic (non-safety) coordinating with a safety controller
// Inputs from safety controller
BOOL SAFE_OK; // true when all safety functions are satisfied
BOOL GUARD_CLEAR; // true when light curtain and doors are clear
BOOL SAFETY_FAULT; // true when any safety fault is latched
// Operator commands
BOOL CMD_STROKE; // single-stroke request from HMI or start button
// PLC logic
IF SAFETY_FAULT THEN
// inhibit all motion and prompt maintenance
ALARM := TRUE;
STROKE_CMD_OUT := FALSE;
ELSIF SAFE_OK AND GUARD_CLEAR AND CMD_STROKE THEN
// issue stroke request to press control
STROKE_CMD_OUT := TRUE;
ELSE
STROKE_CMD_OUT := FALSE;
END_IF;
The safety controller, in turn, decides whether to energize its safety outputs based on all safety inputs and internal diagnostics; the PLC cannot force a stroke when the safety controller has locked out motion.
Achieving control reliability and PL d/e on paper is insufficient; the system must be validated in the field and maintained over time. Recommended practices include:
Upgrading a press from legacy controls to a modern, control-reliable architecture is more than a wiring exercise. It requires understanding OSHA and ISO requirements, selecting appropriate safety-rated hardware, and validating that the implemented safety functions behave as intended under both normal and fault conditions. When properly executed, dual two-hand control and light-curtain guarding can coexist in a plant-wide safety strategy that materially reduces the risk of serious injury while supporting production throughput and maintainability.