Practical Questions

PLC Pump Permissive Interlocks

The following PLC program was written to control the operation of a large electric motor-driven pump.

A variety of “permissive” inputs protect the pump from damage under abnormal conditions, and one permissive in particular (“valve open”) will only allow the pump to start up if one of the valves in the piping system is in the full-open position:

PLC Pump Permissive Interlocks

Identify the type of contact (either NO or NC) necessary for each of these electrical switch contacts, based on the trip condition (either high or low) and how each input is applied in the PLC program:

  1. Start pushbutton = NO or NC?
  2. Throttling valve open limit = NO or NC?
  3. Stop pushbutton = NO or NC?
  4. High bearing temperature = NO or NC?
  5. High vibration = NO or NC?
  6. High motor temperature = NO or NC?
  7. Low oil pressure = NO or NC?

Answer :

  1. Start pushbutton = NO
  2. Throttling valve open limit = NC
  3. Stop pushbutton = NO
  4. High bearing temperature = NO
  5. High vibration = NC
  6. High motor temperature = NO
  7. Low oil pressure = NO

A helpful problem-solving technique is to first identify the necessary coloring which will allow the motor to start up and keep running (i.e. the condition of all permissives during correct operating conditions):

Since the motor is controlled by retentive coil instructions (“Set” and “Reset”), we know all the permissive contacts on the Reset rung must be uncolored in order for the motor to run.

The normally closed “Valve open” instruction must be colored in order to allow the Start input to latch the Set coil and start the motor.

Once we know this, we may determining the necessary “normal” statuses of all permissive switches in order to make their corresponding PLC program contact instructions colored.

A few examples will be given here:

“Valve open” limit switch:

The PLC contact instruction for this permissive is normally-closed, which means that PLC input must be de-energized in order to color that contact instruction.

This means the limit switch must be in the open condition when the valve mechanism moves into the switch’s sensing range (in the fully-open position), and close when the valve mechanism moves away from the switch.

A limit switch that is closed with nothing near it is a normally-closed (NC) limit switch.

Low oil pressure:

The PLC contact instruction for this permissive is normally-closed, which means that PLC input must be energized with electricity in order to maintain that contact instruction in an uncolored state.

This means the low oil pressure switch must be in the closed condition while everything is running as it should (i.e. adequate oil pressure), and open if oil pressure becomes too low.

A pressure switch that is open when pressure is below the trip threshold is a normally-open (NO) pressure switch.

High bearing temperature:

The PLC contact instruction for this permissive is normally-open, which means that PLC input must be de-energized in order to maintain that contact instruction in an uncolored state.

This means the high bearing temperature switch must be in the open condition while everything is running as it should (i.e. low bearing temperature), and close if temperature becomes excessive.

A temperature switch that is open when temperature is below the trip threshold is a normally-open (NO) temperature switch.

Share Your Answer / Comments

Credits : by Tony R. Kuphaldt – under CC BY 1.0

For More PLC Questions : CLICK HERE

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.

Read Next:

You've successfully subscribed !

View Comments

Share

Recent Articles

  • Instrumentation Design

Immersion Heaters in Lube Oil Consoles

Rotating equipment packages such as pumps, compressors, turbines need the lube oil consoles for their…

15 hours ago
  • PLC Tutorials

How to Blink Lights in Ladder Logic?

This article explains how to blink lights in ladder logic with a detailed explanation video…

3 weeks ago
  • PLC Tutorials

From Boolean Algebra to PLC Logic

In this article, a simple example will teach you the conversion from Boolean algebra to…

1 month ago
  • PLC Tutorials

PLC Cooking Timer Example for Kitchen Automation

In this article, you will learn the PLC cooking timer example for kitchen automation using…

3 weeks ago
  • PLC Tutorials

Example PLC Program to Control a Pump based on Level Sensors

Learn an example PLC program to control a pump based on level sensors using ladder…

3 weeks ago
  • PLC Tutorials

PLC Timer Application in Security Camera Recording

In the PLC timer application for security camera recording, when motion is detected then camera…

3 weeks ago