Normally Closed Sensor, Normally Open Contact? The PLC Logic Trap Explained
- PLC Play Ground
- 0
- Posted on
The contact drawn in ladder logic does not necessarily describe the physical contact inside a sensor. Confusing electrical behavior with a Boolean test can invert an interlock and make troubleshooting unnecessarily difficult. Write down the physical state, input bit, and logic result separately.
Boolean teaching example; instruction names and safety requirements are platform-specific.
What is happening?
A ladder instruction tests a stored value. In common Boolean notation, a normally open-looking contact tests for true, while a normally closed-looking contact tests for false. The field device's normally open or normally closed description refers to its own defined unactuated condition. Vendor instruction names and symbols should be checked in the programming manual.
Check these five things
-
Identify what normal means for the field device: unactuated, unpowered, or another manufacturer-defined condition. Do not infer it from the tag name.
-
Build a truth table for the device's actual states and the resulting PLC input value. Include an open-circuit fault where appropriate to the design.
-
Name the application signal for its meaning, such as GuardClosedFeedback, after the electrical-to-logical mapping is established.
-
Inspect the ladder test independently. Ask whether the rung needs the mapped condition true or false, rather than matching the sensor's physical symbol.
-
Test the logic in an isolated simulation with every truth-table row. Safety functions require their own approved design and validation.
Worked example
For a simple teaching example, a contact is closed when a mechanism is at rest, so its input bit is 1. A true-test instruction passes in that state; a false-test instruction does not. Neither result changes merely because the field contact is called normally closed.
Quick diagnostic reference
| Input bit | True-test result | False-test result |
|---|---|---|
| 0 | False | True |
| 1 | True | False |
The mistake to avoid
A normally closed field circuit is not automatically a validated safety function. Fault detection, architecture, components, and validation cannot be replaced by choosing a ladder symbol.
How to verify the fix
Have another reader explain each truth-table row using the drawing and program. Resolve ambiguous names before connecting the logic to a machine action.
Field-work boundary: These are educational diagnostic guides. Use the exact equipment manuals and approved site procedures. Electrical testing and machinery changes belong to qualified, authorized personnel; control hazardous energy and validate affected functions before release.
Technical reference
Rockwell Automation: Logix 5000 General Instructions. The examples and diagnostic tables above are original teaching material; they do not replace the product manual.
