PLC Problems Troubleshooting

Troubleshooting PLCs can be started by checking the healthiness status of CPU, I/O Modules, Fuse Blow-out and different PLC Failure reasons including wiring, field transmitters healthiness status or transmitter configuration, check for any effect of induction voltage due to high voltage electrical cables etc. and many more reasons.

The below scenario is one of the example for PLC’s troubleshooting.

PLC Troubleshooting

PLC Problems Troubleshooting

Billy, an instrument technician works at a manufacturing facility, is on his break and He is just sitting down to eat some linguini when he gets a call that solvent flow into a mixing kettle is not reading right, and the rubber material looks like bad oatmeal. He drops his fork and makes his way to the drawing file, where he locates the proper drawing and uses it to wipe the noodles off his shirt. He then goes to the kettle and finds the solvent line and locates the flowmeter.

Then, He finds this differential pressure (dp) flowmeter is calibrated 0-–10 inches of water column (inwc) pressure across its diaphragm, which equates to a flow rate of 0-–100 pounds per hour (lb/hr) of solvent.

After getting approval from Operations and confirming the throttling valve is in manual mode and is closed, Billy disconnects the signal output cable from the transmitter and hooks the cable to a current source (a portable test device) to simulate the transmitter output signal. He then tries to inject a signal into the system.

The test device’s batteries are dead, so he has to go get more. With new batteries, he measures the injected signal with an ammeter, which reads 14.2 mA on a 4–-20 mA scale. He knows the resolution of the PLC input module is 12 bits, and that the operator reads the flow in PPH on a scale of 0-–100.

  1. What is the simulated pressure drop across the orifice in inches of water column? (Square root extraction is already accounted for in the transmitter.)
  2. What is the decimal integer value in the computer?
  3. What should the operator be seeing in pounds per hour?

The solutions follow, but first, try to solve it yourself.

First, Billy adjusts the analog value to account for the live-zero offset: 14.2 mA reading at the meter, minus the 4.0 mA offset, equals 10.2 mA. He knows he has a live span of 16 mA (20-4=16), and this span equates to 0–-10 inwc at the dp transmitter and 0-–100 PPH at the HMI.

Once the relative ranges are known, percentage of scale can be used to equate the values:

  1. The inwc value is (10.2 mA/16 mA) x 10 inwc = 6.375 inwc.

Then, Billy decides to check the PLC to make sure it is operating correctly. He knows the PLC has 12-bit analog input resolution, making the valid range of the PLC integer 0 to 4095 (2^12 = 4095). He uses a percentage-of-scale relationship to determine the proper integer value:

  1. The integer value should be: (10.2 mA/16 mA) x 4095 counts = 2611 counts.

Billy confirms the PLC is reading 2611 by checking the integer value in the PLC memory. He then checks the PLC program to make sure the integer is being moved to the proper memory location so it can be uploaded to the HMI.

He finds it is being moved to address 40021, which is in a data array that is being placed on the network. Further, the blinking light on the interface module confirms that the network is functioning.

So, he reasons, if a problem exists, it must be in the HMI. Billy goes to the control room and views the screen. He calculates the value he expects to see using the percentage-of-scale technique:

  1. The PPH value is (10.2mA/16mA) x 100 PPH = 63.75 PPH, or
  2. The PPH value is (2611 counts/4095 counts) x 100 PPH = 63.75 PPH

But the screen is reading 54.2 PPH. Billy takes the HMI system into development mode and checks the tag file for the configuration of that tag.

He finds the value animation being displayed for FT1001 = (13$40021/4095) x 85, where 13$40021 is the memory location of the PLC-stored integer value. He remembers the flow data array location in the PLC was address 40021, and the PLC was at network node 13.

But the proper scaling of the displayed value should be 0-–100, not 0-–85. Billy mentions his finding to the operator, who informs him that the transmitter, which was broken yesterday, was changed out last shift.

Billy surmises the technician changed everything but forgot to modify the HMI screen. Then, He changes the 85 to 100, recompiles the HMI program, and re-launches the application.

He confirms the displayed value equals the expected 63.75 PPH value. He removes his test equipment from the circuit and reconnects the wiring to the transmitter, but forgets to turn off the current source (which ensures the batteries will be dead next time), informs Operations that the problem is resolved, and returns to his linguini.

If you liked this article, then please subscribe to our YouTube Channel for PLC and SCADA video tutorials.

You can also follow us on Facebook and Twitter to receive daily updates.

PLC Reads from Field Transmitters

Mis-conceptions of PLC Ladder Logic

PLC Example with Switches

Motor Trip Logic using PLC

PLC Analog Input Scaling

Don't Miss Our Updates
Be the first to get exclusive content straight to your email.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address

3 thoughts on “PLC Problems Troubleshooting”

Leave a Comment