Motor Start/Stop Circuits: From Relay Logic to Ladder Logic
Every technician who's been in this trade long enough eventually realizes something: ladder logic didn't invent motor control — it inherited it. The start/stop circuit you'll find in nearly every PLC program on the plant is a direct descendant of a physical relay panel design that's been standard practice for close to a century. Understanding that lineage makes you faster at reading both old and new systems.
The Relay-Panel Original
Before PLCs, a motor start/stop station was built from actual components bolted into a panel: a momentary Start pushbutton, a momentary Stop pushbutton (wired normally closed for safety — so a broken wire fails to the safe "stop" state, not a silent "can't stop" state), a control relay or contactor with an auxiliary contact, and the motor contactor itself.
The wiring:
Stop button in series with Start button (or a holding contact in parallel with Start), feeding the contactor coil. Press Start, contactor picks up, its auxiliary contact closes in parallel with the Start button, sealing the circuit in — the same seal-in principle we covered a few posts back. Press Stop, the circuit breaks, contactor drops out.
The Direct Translation to Ladder Logic
When PLCs arrived, this exact circuit became one of the first things every ladder program included, rung for rung, almost unchanged:
NC Stop contact → in series → (NO Start contact OR NO Motor-Running seal-in contact) → Motor Coil
If you compare that rung directly against an old relay schematic, they're nearly identical. This isn't coincidence — it's why ladder logic was designed to look the way it does in the first place, so electricians trained on relay panels could read PLC programs without relearning their trade from scratch.
What Modern Systems Add on Top
A bare start/stop rung like the one above is the foundation, but almost nothing in a real plant runs on just that. Layered on top, you'll typically find:
Interlock permissive in series ahead of the Start contact (covered in our interlocks post) — the motor can't start unless upstream/downstream equipment conditions are satisfied.
Overload / thermal protection
an NC contact from an overload relay or a soft-starter fault output, wired in series, that trips the motor on sustained over current.
Remote/Local selector logic
determining whether the Start command can come from a local pushbutton, a DCS command, or both, usually via OR branches feeding into the same seal-in structure.
Run feedback verification
comparing the commanded state against actual feedback (like an auxiliary contact or a current sensor) to detect a "fail to start" condition and raise an alarm rather than assuming the motor ran just because the coil energized.
Why This History Actually Helps You Troubleshoot
When you understand that ladder logic motor circuits are a direct translation of relay-panel thinking, unfamiliar programs stop looking like a black box. You start recognizing the pattern instantly: find the Stop contact, find the Start/seal-in branch, find the interlock chain ahead of it, find the overload contact. Once you've spotted those four pieces, you understand 90% of what that rung does — even on a PLC platform or program style you've never seen before.
It also explains why, even on a modern DCS integrated system with dozens of soft interlocks, the core start/stop rung structure at the very bottom rarely changes. It's not because engineers lack imagination — it's because the pattern works, it's provably safe when done correctly, and generations of technicians already know how to read it.
Next in the series:
troubleshooting ladder logic in the field — a practical, step-by-step approach for when something isn't working and you need answers fast, not a theory lecture.
Comments
Post a Comment