Excellent PLC Co.,Ltd

PLC and DCS professional supplier

Yokogawa YS170-012 S3 Common Faults and Troubleshooting Guide for PLC Programmable Controller

Troubleshooting

Yokogawa YS170-012 S3 Common Faults and Troubleshooting Guide for PLC Programmable Controller

Yokogawa YS170-012 S3 Common Faults and Troubleshooting Guide for PLC Programmable Controller

The Yokogawa YS170-012 S3 is a reliable PLC-style programmable controller widely used in industrial process control. However, improper configuration, wiring issues, or field signal problems may cause operational faults.

This article provides a systematic troubleshooting guide, helping engineers quickly identify root causes and restore stable operation.


1. No Control Output After Power-Up

Possible Causes:

  • Controller operating in Manual mode

  • Output signal range misconfigured

  • Incorrect wiring or broken output loop

Troubleshooting Steps:

  1. Check control mode (AUTO / MANUAL)

  2. Verify output range settings

  3. Measure output current using a multimeter

IF CONTROL_MODE == MANUAL THEN
SWITCH_TO_AUTO()
END IF

IF OUTPUT_SIGNAL != "4-20 mA" THEN
RECONFIGURE_OUTPUT()
END IF


2. Process Value (PV) Not Changing

Possible Causes:

  • Sensor failure or disconnected input

  • Wrong input signal type configured

  • Input scaling incorrect

Troubleshooting Steps:

  1. Measure input signal directly at terminals

  2. Verify input type (4–20 mA / 0–10 V)

  3. Check scaling parameters

IF RAW_INPUT < 4mA OR RAW_INPUT > 20mA THEN
RAISE ALARM "Input Signal Out of Range"
END IF

3. Unstable Control or Oscillation

Possible Causes:

  • PID parameters not properly tuned

  • Excessive process delay

  • Electrical noise on signal lines

Troubleshooting Steps:

  • Reduce proportional gain

  • Increase integral time

  • Improve cable shielding and grounding

IF PV_OSCILLATION == TRUE THEN
KP = KP * 0.7
KI = KI * 1.3
END IF

4. Alarm Triggered Unexpectedly

Possible Causes:

  • Alarm limits set too close to operating range

  • No alarm delay configured

  • Incorrect scaling or sensor drift

Troubleshooting Steps:

  • Review alarm thresholds

  • Add alarm delay

  • Verify sensor accuracy

IF ALARM_ACTIVE AND PV_WITHIN_NORMAL_RANGE THEN
INCREASE_ALARM_DELAY()
CHECK_SCALING()
END IF

5. Controller Does Not Enter AUTO Mode

Possible Causes:

  • Interlock condition active

  • Output not synchronized before switching

  • Configuration lock enabled

Troubleshooting Steps:

  • Clear interlock signals

  • Match manual output to current control output

  • Unlock configuration if required

IF INTERLOCK_ACTIVE == TRUE THEN
BLOCK_AUTO_MODE()
END IF

6. Output Saturated at 0% or 100%

Possible Causes:

  • Incorrect control action (direct / reverse)

  • Setpoint outside configured range

  • Output limits incorrectly set

Troubleshooting Steps:

  • Verify control action

  • Check setpoint limits

  • Review output limiting parameters

IF CONTROL_OUTPUT == 100% OR CONTROL_OUTPUT == 0% THEN
VERIFY_CONTROL_ACTION()
CHECK_SETPOINT_RANGE()
END IF

7. Communication or Display Abnormal

Possible Causes:

  • Power supply instability

  • Internal hardware fault

  • Environmental conditions exceeded

Troubleshooting Steps:

  • Check supply voltage

  • Inspect ambient temperature and humidity

  • Replace controller if hardware failure suspected

IF DISPLAY_ERROR == TRUE AND POWER_OK == TRUE THEN
SUSPECT_HARDWARE_FAULT()
END IF

8. Field Engineering Checklist

CHECKLIST = [
"Power supply stable",
"Input/output wiring correct",
"Signal type matches configuration",
"PID parameters reasonable",
"Alarm limits and delays verified"
]

FOR EACH ITEM IN CHECKLIST
VERIFY(ITEM)
END FOR


Conclusion

The Yokogawa YS170-012 S3 programmable controller offers stable and accurate control when properly configured. Most issues can be resolved by systematically checking control mode, I/O configuration, PID tuning, and alarm settings.

By following this structured troubleshooting guide, engineers can significantly reduce downtime and ensure reliable long-term operation in industrial control systems.

Prev:

Next:

Leave a message