What is ladder logic
What is Ladder Logic? PLC Programming Explained for Beginners
If you've ever wired a motor starter with a start button, a stop button, and a seal-in contact, you already understand most of ladder logic. You just haven't seen it drawn this way yet. Let me walk you through it the way I'd explain it to a new technician on the floor — no jargon, just the four building blocks you'll use for the rest of your career.
Why It's Called "Ladder" Logic
Before PLCs, plants ran on relay panels — real electromechanical relays, wired point to point. When an electrician designed one of these panels, he'd draw the circuit on paper first: two vertical power rails running down the sides, and horizontal lines connecting them, each one representing a control circuit. Because the drawing looked like the rails and rungs of a ladder, the name stuck.
When PLCs arrived in the 1970s, manufacturers had a choice: invent a whole new symbol language, or keep what electricians already knew. They kept the ladder. Same rails, same rungs — except now it's software instead of copper wire. That one decision is why, more than forty years later, ladder logic is still the most common language you'll find on a plant floor, from a simple conveyor interlock to a full kiln permissive chain.
Power Flows Left to Right
Every rung works on the same basic idea. Think of it as power flowing from the left rail to the right rail. If the path across that rung is complete — if every condition on it is satisfied — power reaches the coil on the right, and the coil energizes. If any condition breaks the path, power stops, and the coil stays off.
That's really the whole logic of ladder programming: complete the path, energize the output. Everything more advanced you'll come across later — timers, counters, latches, interlocks — is just a different way of building or breaking that same path.
The Two Symbols You'll See Constantly
The contact is drawn as two vertical bars. It represents a condition — is a switch closed, is a sensor active, is a permit satisfied. A contact doesn't consume power itself; it only allows or blocks the path through it.
The coil is drawn as a circle, or sometimes a rounded bracket depending on the software you're using. It represents an output — turn on a light, start a motor, open a valve. In real wiring, this is the thing actually being controlled.
Put the two together and you get the simplest possible program: a push-button contact feeding a lamp coil. Press the button, the contact closes, power flows, the lamp turns on. Let go, the contact opens, power stops, the lamp goes dark. That's rung one of nearly every ladder program you'll ever open.
Why This Matters on a Real Plant
Now scale that idea up. Take a kiln ID fan. You don't have one push button standing between you and a running fan — you have a dozen or more conditions that all need to be true first: no trip active, lubrication pressure good, damper in position, upstream equipment already running.
Every one of those conditions is just another contact, wired in series or in parallel, on the way to a single coil: "Fan Start Permitted." Once you can read one rung, you can read the entire permissive chain for a piece of critical equipment, because it's built from the exact same building blocks, just repeated and combined.
Recap
Rail and rung — the vertical power lines and horizontal control lines, carried over from relay panel drawings.
Power flows left to right — conceptually, not literally.
Contact — represents a condition.
Coil — represents an output.
When a rung's conditions are satisfied, the coil energizes. That's it.
That's the foundation everything else in this series builds on.
Next up: we'll take these same building blocks — contacts and coils — and use them to build a real motor start/stop circuit with a seal-in contact, the same logic running on motors in plants right now. If you've got a ladder logic question from your own plant, drop it in the comments — I read every one.








Comments
Post a Comment