Power Circuit vs. Control Circuit
Every motor starter design splits into two electrically separate circuits, and confusing the two is the single most common mistake new designers make. The power circuit carries the motor's full-load current at line voltage — typically 480V or 208V three-phase — from the disconnect through the contactor's main contacts and overload heaters to the motor. Wire and component sizing here follows NEC Article 430 (see our Motor Protection Per NEC Article 430 guide for branch circuit, overload, and disconnect sizing).
The control circuit is a separate, much lower-current loop whose only job is to energize and de-energize the contactor's coil. It commonly runs at 120VAC (stepped down from the line voltage by a control power transformer) or 24VDC in PLC-based systems. The control circuit carries only the coil's holding current — often well under 1 amp — so its conductors, pushbuttons, and relay contacts can be much smaller than the power circuit's components. Every pushbutton, pilot light, limit switch, and interlock contact you wire lives in the control circuit; none of them ever touch line-voltage motor current directly.
Keeping these two circuits conceptually and physically separate is why motor control drawings are almost always presented as two distinct diagrams: a power (or "one-line") diagram showing L1-L2-L3 to the motor, and a ladder (control schematic) diagram showing the control transformer secondary as two vertical rails with each control device drawn as a horizontal "rung" between them.
Reading a Ladder Diagram
A ladder diagram is drawn with two vertical power rails — think of them as the sides of a ladder — and each control function is a horizontal rung between them. Current flows down the left rail, through the devices on a rung, and back up the right rail. Rungs are read left to right, top to bottom, in the order the logic executes. This convention (inherited from relay panel wiring and still used by PLC ladder logic today) makes it easy to trace exactly what must be true for a coil to energize. If you later move this same control logic into a PLC, the same rung-by-rung structure carries over directly — see our PLC Ladder Logic Programming guide and the hands-on PLC Ladder Logic Simulator to practice the identical logic in software before you ever wire a panel.
Building a Start-Stop-with-Seal-In Circuit From Scratch
This is the foundational building block of nearly every motor control circuit. Build it in four steps:
- Step 1 — The coil rung. Draw the motor starter coil (labeled M) as the load at the far right of a rung, connected back to the right-hand rail.
- Step 2 — The Stop button. Place a normally closed (N.C.) Stop pushbutton at the far left of the rung, in series with everything else. Because it's normally closed, current flows through it by default — pressing Stop breaks the circuit and de-energizes the coil no matter what else is happening downstream. This is why Stop buttons are always wired N.C. and always placed first.
- Step 3 — The Start button. Place a normally open (N.O.) momentary Start pushbutton in series, after the Stop button. Pressing Start completes the circuit and energizes coil M — but only while your finger holds the button down, since it's momentary.
- Step 4 — The seal-in (holding) contact. Wire an auxiliary N.O. contact from the same contactor (labeled M, matching the coil) in parallel across the Start button. The instant the coil energizes, this auxiliary contact closes too, creating a parallel path around the now-released Start button. This is the "seal-in" or "holding" circuit — it's what allows the motor to keep running after you let go of a momentary Start button. Without it, the motor would only run while Start is physically held down.
Trace the logic: pressing Start energizes M, which closes the seal-in contact, which holds M energized after Start is released. Pressing Stop — anywhere in the circuit, at any time — always breaks the loop and drops out the coil, because the N.C. Stop button is in series with everything else on the rung.
Adding Interlocks and Safety Devices
Real motor control circuits add protective devices in series with the coil rung so that any fault condition breaks the circuit the same way the Stop button does:
- Overload relay contacts. The thermal or electronic overload relay's N.C. auxiliary contact (separate from the power-circuit overload heaters) is wired in series in the control rung. If the overload trips on sustained overcurrent, this contact opens and drops the coil — the motor stops even though nobody pressed Stop.
- Emergency stop (E-stop). An E-stop pushbutton is a hardwired N.C. contact placed in series, typically as close to the top of the rung as possible (often even ahead of the Stop button on safety-rated circuits), so that no other logic can override it.
- Limit switches. For motor-driven equipment with travel limits (conveyors, gates, hoists), N.C. limit switch contacts are wired in series so the motor stops automatically when the load reaches its travel limit, independent of the operator.
The pattern is consistent: every protective device is a normally closed contact wired in series in the control rung. Series N.C. contacts are how you say "AND all of these safety conditions must be satisfied" in ladder logic — any one opening breaks the whole rung.
Forward-Reverse Control Circuits
Reversing a three-phase motor requires swapping any two of the three line conductors, which is done with two separate contactors — a Forward (F) contactor and a Reverse (R) contactor — each wired to the motor with two phases swapped relative to the other. The critical design requirement is that F and R can never be closed at the same time: doing so creates a direct phase-to-phase short circuit through both contactors.
Two layers of interlocking are used together, not as alternatives:
- Electrical interlocking. The Forward coil's rung includes a N.C. auxiliary contact from the Reverse contactor in series (and vice versa). If R is energized, its N.C. auxiliary contact opens, making it impossible to energize F until R drops out, and vice versa.
- Mechanical interlocking. A mechanical linkage between the F and R contactors physically prevents both sets of main contacts from closing simultaneously, even in the event of a welded or stuck contact that would defeat the electrical interlock alone.
A well-designed forward-reverse circuit also includes a brief anti-plugging delay or requires the motor to reach a near-stop condition before allowing a direction reversal, since instantly reversing a spinning motor produces very high current and mechanical shock. VFDs handle this natively with programmable deceleration and direction-change logic — see VFD vs Soft Starter for when a drive is the better choice over relay-based reversing.
Two-Speed and Multi-Speed Control Basics
Two-speed control is achieved either with a single motor wound for two speeds (a consequent-pole or two-winding motor, where reconnecting the stator windings changes the number of magnetic poles and therefore the synchronous speed) or by using a VFD to vary frequency electronically. For a two-winding relay-based design, two separate contactors — one for the low-speed winding, one for the high-speed winding — are wired with the same electrical-interlock principle used in forward-reverse circuits: the low-speed and high-speed contactors must be mutually exclusive, since energizing both simultaneously connects incompatible windings across the same supply.
A typical two-speed control circuit therefore has three pushbuttons (Stop, Low, High) and two contactors (Low, High) with cross-interlocking N.C. auxiliary contacts, plus a timer relay in more sophisticated designs to force a brief off period when switching from high speed down to low speed, avoiding a high-current transient. For applications needing more than two discrete speeds or continuously variable speed, a VFD replaces the entire relay-based multi-speed scheme with a single drive and a simple speed-reference signal.
Putting It All Together
A complete, safe motor control circuit design checklist: Stop button N.C. and first in the rung; Start button N.O. with a seal-in auxiliary contact in parallel; overload relay N.C. contact in series; E-stop N.C. contact in series; any limit switches N.C. in series; and, for reversing or multi-speed circuits, both electrical and mechanical interlocking between contactors that must never close together. Draw the power circuit and control circuit as two separate diagrams, verify the control transformer secondary voltage matches every coil and pilot device you specified, and confirm the overload relay's auxiliary contact — not just its power-circuit heaters — is actually landed in the control rung. This last step is the most frequently missed item in field-built panels.