In our previous posts, we discussed high-level concepts like Digital Twins and PLC Programming. But before a single line of Structured Text is written, there is a physical event that must occur: a contact must move.

Whether it is a limit switch on a conveyor, a pushbutton on a console, or a relay inside a control cabinet, every discrete signal in the Intelligence Economy begins with the basic physics of a contact. Understanding the terminology of these contacts is the “Day 1” requirement for any automation professional.

1. The Logic of State: NO vs. NC

Industrial contacts exist in two primary states relative to their “rest” position (the state they are in when no human or machine is touching them).

Normally Open (NO)

  • The Physics: The circuit is physically broken at rest. Electricity cannot flow.
  • The Logic: In a PLC, this is often represented as a “0” or “Low” signal when the switch is untouched.
  • The Use Case: Start buttons. You want the machine to stay off until someone actively makes the connection.

Normally Closed (NC)

  • The Physics: The circuit is physically continuous at rest. Electricity flows freely.
  • The Logic: In a PLC, this is seen as a “1” or “High” signal until the switch is acted upon.
  • The Use Case: Stop buttons and E-Stops. For safety, we want a “High” signal to prove the wire isn’t broken. If the wire snaps, the signal goes to “Low,” and the machine stops immediately.

2. The Plumbing of Electricity: Poles and Throws

When you look at a datasheet for a switch or relay, you will see abbreviations like SPDT or DPST. This is the “Poles and Throws” terminology.

Poles (The “Inputs”)

The number of Poles indicates how many separate, isolated circuits the switch can control at the same time.

  • Single Pole (SP): Controls one circuit.
  • Double Pole (DP): Controls two independent circuits simultaneously (like a double-lane gate).

Throws (The “Outputs”)

The number of Throws indicates how many different paths the electricity can take for each pole.

  • Single Throw (ST): A simple On/Off switch. It has one destination.
  • Double Throw (DT): A “Changeover” switch. It can direct electricity to Path A or Path B.

3. Standard Combinations

AbbreviationFull NameDescription
SPSTSingle Pole, Single ThrowThe basic On/Off light switch.
SPDTSingle Pole, Double ThrowOne input, selects between two outputs (A or B).
DPSTDouble Pole, Single ThrowOne switch handles two separate circuits in an On/Off fashion.
DPDTDouble Pole, Double ThrowTwo separate inputs, each selecting between two outputs.

4. The Digital Chain: Why This Matters

In modern automation, we rarely use these switches to power motors directly. Instead, we use them as Discrete Inputs for a PLC.

When you select a switch for a project, you must consider the Contact Rating (how much current it can handle) and the Mechanical Life. However, the most important decision for a student is choosing the correct logic. If you wire a safety sensor as NO instead of NC, you create a “silent failure” condition where a broken wire would prevent the safety system from ever knowing a hazard exists.

5. Summary

  • NO: Look for “Make” contacts.
  • NC: Look for “Break” contacts.
  • Poles: How many circuits am I switching?
  • Throws: How many positions does each circuit have?

Mastering this terminology ensures that when you move to the P&ID or the Ladder Logic screen, you are speaking the same language as the physical hardware.

Contact & Switch Simulator: Automation Student
Logic Fundamentals

Contact & Switch Simulator

Master the physics of NO/NC states and Pole/Throw terminology before you write your first line of code.

1. The NO/NC Logic Lab

Toggle the switches below to see how the physical contact state influences the digital logic signal in the PLC.

Normally Open (NO)

STATE: 0 (LOW)

Normally Closed (NC)

STATE: 1 (HIGH)

Logic Pulse Monitor

NO Signal
NC Signal

2. Pole & Throw Architecture

Poles define the number of circuits. Throws define the number of paths. In 2026, choosing the right configuration is critical for redundant safety systems.

SPST

Single Pole Single Throw

The basic light switch. One circuit, one destination (On/Off).

SPDT

Single Pole Double Throw

A changeover switch. One input, two possible output paths.

DPST

Double Pole Single Throw

Dual control. Switches two separate circuits On/Off simultaneously.

DPDT

Double Pole Double Throw

The most versatile. Two inputs, each selecting between two outputs.

The “Why” of Maintenance

Contacts are mechanical. They fail due to carbon buildup (arcing), welding (overcurrent), or mechanical fatigue. A hybrid technician must identify these failure modes before they cause downtime.

⚠️
Carbon Build-up

Pitting caused by electrical arcs makes contacts resistive.

Common Switch Failure Modes

AutomationStudent.org | Interactive Lab Tool

NO SVG | NO MERMAID JS | GENERATED FOR EDUCATIONAL PURPOSES