Instrumentation Master Guide
// Field-first, visual, practical — built for troubleshooting live production
// Your job: find WHERE in this chain the problem is.
The troubleshooting mantra
The Control Loop
// How everything connects — the big picture
🧠 The Key Insight
Every control loop has the same structure. When something doesn't work, ask:
- Is the sensor seeing the process correctly? (RTD in fluid, not air-gapped)
- Is the signal getting through? (Wiring intact, transmitter powered)
- Is the PLC making the right decision? (Check logic on HMI)
- Is the output energizing? (Solenoid LED, voltage at coil)
- Is the action actually happening? (Valve physically moving, air present)
The HMI shows temperature is 75°C but the operator says the crystallizer feels cold. Where do you start?
Why? Before chasing electrical problems, confirm if there IS a problem. The sensor might be right and the operator might be wrong — or vice versa. Start with independent verification.
Sensors & Inputs
// What tells the PLC about the real world
Signals & Transmitters
// How information travels from sensors to the PLC
Outputs & Final Control
// What makes things physically move
Pneumatics
// The hidden foundation — "check air first" is usually right
90% of "instrument problems" are actually air problems
Troubleshooting Method
// Your systematic approach — every time, every problem
What Changed?
Did someone work on it? New product? Weather? Recent maintenance?
What Still Works?
Narrow down scope. If other things work, the problem is local.
Power First
Is there 24VDC/120VAC where there should be? Check fuses, breakers, power supplies.
Air Second
Is there air pressure? Check supply, regulator, tubing connections.
Physical Movement
Does the thing actually move? Valve stem, actuator piston, limit switch lever?
Signal Integrity
Is the signal getting through? Measure mA, check wiring, verify continuity.
Logic Last
Only after everything else checks out. Check HMI, force inputs, observe outputs.
🧠 The I → L → O Method
For any "it won't work" problem:
- Force the INPUT — Manually trigger the sensor, jumper the signal, inject known mA
- Observe the LOGIC — Does the PLC see the input? Does it make the expected decision?
- Check the OUTPUT — Does the PLC output turn on? Does the solenoid energize?
Isolates: Sensor problem vs PLC problem vs Output device problem
Operator calls: "Drop valve won't open, PLC shows close command but valve is stuck." What's your first check?
Why? If the PLC is sending the command, the logic is probably fine. Check the physical side: air supply, solenoid, actuator. Most "won't move" problems are mechanical or pneumatic, not electrical.
Plant Systems
// How it all ties together at YOUR plant