PLC Program for Motor Starter with Low-Level Switch Interlock

Motor starters are very important for safely and effectively controlling motors in industrial automation systems. In some procedures, especially those that require tanks. To keep the pump from running dry, which might damage equipment or cause the process to fail, it’s important to connect the motor to a low-level switch.

This article discusses a PLC-based solution for a motor starter with a low-level switch interlock like with a process-specific low-level float switch. We’ll also walk through the system’s hardware layout, electrical schematic, PLC ladder diagram, and its working principle.

The system is meant to control a pump motor that empties a tank. The low-level float switch should only let the motor run if the tank has enough liquid in it. To keep the pump from running dry, it shouldn’t run while the tank is empty.

  • Start/Stop Pushbuttons – for operator control.
  • Emergency Stop – for immediate shutdown.
  • Low-Level Switch – to prevent dry run.
  • Overload Relay – motor protection.
  • PLC Logic – to automate decision-making.
  • Indicator Lamps – to show motor status.
PLC Program for Motor Starter with Low-Level Switch Interlock Field Layout and Sensor Placement

This picture shows how a pump control system is set up in real life, with all of its sensors and actuators.

Low-Level Switch (Float Type):

  • Installed in the tank.
  • Detects when the liquid level drops below a safe limit.
  • Prevents pump from running dry.

Start & Stop Pushbuttons:

  • Manual operator control.
  • Start initiates the motor (if conditions are met).
  • Stop halts the motor operation.

Emergency Stop (EM Stop):

  • Overrides all controls.
  • Immediately stops the motor during emergency.

Motor ON/OFF Indicators:

  • Green indicates motor is running.
  • Red indicates motor is off or faulted.

Solenoid Valve (SOV):

  • Not central to motor logic but shown for air supply control, typically for valve actuation.

Pump Motor:

  • Drains liquid from the tank.
  • Connected via a manual valve and motor contactor.

Overload Relay:

  • Monitors current.
  • Trips motor in case of overcurrent, protecting the motor.

Motor Contactor Output:

  • Final actuator controlled by the PLC.
  • Drives the motor based on logic conditions.

Follow these 6 essential rules for PLC ladder diagram programming: Top 6 Important Rules for PLC Ladder Diagram Programming

Electrical Wiring Schematic for Controlling the Pump Motor

PLC Program for Motor Starter with Low-Level Switch Interlock

This diagram demonstrates how the pump motor’s electrical wiring is set up. The pushbuttons, low-level switch, motor contactor, and overload relay are all part of it.

  • 3-phase power (L1, L2, L3) feeds the motor via contactor.
  • Overload Relay (OLR) is connected in each phase to detect excessive current.
  • Control Circuit includes:
    • Emergency Stop (EM Stop) normally closed.
    • Stop Pushbutton (Stop PB) normally closed.
    • Start Pushbutton (Start PB) normally open.
    • Low-Level Switch normally closed (opens when tank is empty).
  • The motor contactor is energized only when all conditions are satisfied.
  • When the Start PB button is hit and the Low-Level Switch is closed (meaning the liquid is above the minimum level), the contactor coil gets power and starts the motor.
  • If the liquid level falls below the low-level switch, the contact opens, breaking the circuit and stopping the motor on its own.
  • You can also break the circuit by hand using the Stop PB or EM Stop.

Start with the basics of rungs and rails in PLC ladder logic: Understanding Rungs and Rails: The Foundation of PLC Ladder Logic

PLC Ladder Logic for Motor Control with Low-Level Switch Interlock

This picture displays the PLC ladder logic that controls the motor starter using a low-level switch interlock.
There are three main rungs in the ladder logic program:

  • Emergency Stop (EM_STOP): Normally closed contact (%I0.0)
  • Stop Pushbutton (STOP_PB): Contact that is normally closed (%I0.1)
  • Start Pushbutton (START_PB): Contact that is normally open (%I0.2)
  • Overload Relay (OVERLOAD): Contact that is normally closed (%I0.3)
  • Low-Level Switch (LOW_LEVEL_OK): The contact is normally open (%I0.4).
  • Pump Motor Output (PUMP_MOTOR): Coil for the motor contactor (%Q0.0)
  • All inputs are normally closed (i.e., logic TRUE = input is closed).
  • The motor starts only if:
    • Emergency stop is not active.
    • Stop button is not pressed.
    • Start button is pressed.
    • Overload relay is not tripped.
    • Low-level switch is closed (i.e., enough liquid is present).

Get familiar with the basic components of a PLC ladder diagram: Understanding Basic Parts of Ladder Diagram (LD) in PLC Programming

  • Green Lamp (IND_MOTOR_ON): Activated when pump motor is running (%Q0.1)
  • Red Lamp (IND_MOTOR_OFF): Activated when pump motor is stopped (%Q0.2)

When the operator presses the Start button, the PLC checks:

  • Is the Emergency Stop inactive?
  • Is the Stop PB not pressed?
  • Is the Low-Level Switch closed (liquid OK)?
  • Is the Overload Relay normal?
  • If all are satisfied:
  • PLC energizes motor contactor output.
  • Motor starts pumping liquid.
  • Green lamp turns ON, Red lamp turns OFF.

If the tank level falls below the low-level switch:

  • Switch opens.
  • PLC deactivates the contactor.
  • Motor stops.
  • Red lamp turns ON, Green lamp turns OFF.

If Overload Relay trips or Emergency Stop is pressed:

  • PLC breaks motor output.
  • Motor halts immediately.
  • Red lamp shows OFF status.

Apply this step-by-step guide for troubleshooting PLC digital outputs: Step-by-Step Procedure for Troubleshooting PLC Digital Outputs

AddressDevice NameDescriptionSignal TypeWiring
%I0.0EM_STOPEmergency Stop Mushroom ButtonNC ContactWire to COM terminal
%I0.1STOP_PBStop PushbuttonNC ContactWire to +24V through contact
%I0.2START_PBStart PushbuttonNO ContactWire to +24V through contact
%I0.3OVERLOADMotor Overload Relay ContactNC ContactThermal relay auxiliary contact
%I0.4LOW_LEVEL_OKLow Level Float SwitchNO ContactFloat switch common to NO
AddressDevice NameDescriptionLoad TypeElectrical Rating
%Q0.0PUMP_MOTORMotor Contactor CoilAC Coil230V AC, 5A
%Q0.1IND_MOTOR_ONGreen Motor ON IndicatorLED Lamp24V DC, 20mA
%Q0.2IND_MOTOR_OFFRed Motor OFF IndicatorLED Lamp24V DC, 20mA
PLC Ladder Logic for Motor Control with Low-Level Switch Interlock

Scenario 1: Low-Level Switch Active (Safe Operation)

The above mage shows the  PLC Simulation as Low Level Switch Active

Operating Conditions:

  • Low-Level Switch Status: TRUE (Water level adequate)
  • Emergency Stop: FALSE (Not pressed)
  • Stop Pushbutton: FALSE (Not pressed)
  • Start Pushbutton: FALSE (Not pressed)
  • Overload Relay: FALSE (No overload condition)
  • Result: Starter coil is NOT ACTIVE – Motor remains OFF

Status Display:

  • PWR: Power supply active
  • RUN: PLC in run mode
  • Green Lamp (Motor ON): OFF
  • Red Lamp (Motor OFF): ON
PLC Ladder Logic for Motor Control with Low-Level Switch Interlock

Scenario 2: Low-Level Switch Inactive (Protection Mode)

The above image shows the PLC Simulation as Low Level Switch Inactive

Operating Conditions:

  • Low-Level Switch Status: FALSE (Water level too low)
  • All other conditions: Normal
  • Result: Starter coil is ACTIVE – Motor runs (when started)

Critical Safety Feature: When the low-level switch becomes inactive (water level drops), the motor starter circuit is interrupted, preventing pump dry-running and potential damage.

  • Low-Level Protection: Prevents dry running when tank level is insufficient
  • Emergency Stop: Immediate system shutdown capability
  • Overload Protection: Motor thermal protection via overload relay
  • Manual Stop: Operator-controlled normal shutdown
  • Start/Stop Control: Maintained contact operation with memory function

The motor can only operate when ALL of the following conditions are met:

  • Emergency stop is NOT activated
  • Stop pushbutton is NOT pressed
  • Overload relay is NOT tripped
  • Low-level switch indicates adequate water level
  • Start command has been initiated
  • Dry Run Prevention: Stops harm to the pump when the tank is empty.
  • Automatic Protection:  It uses both hardware (OLR) and software (PLC) to keep you safe.
  • Operator Friendly: Easy to use with buttons and status lights.
  • Remote Control Ready: PLC logic can be upgraded for SCADA or remote control, making it ready for remote control.
  • Failsafe: The emergency stop and overload relay give extra layers of safety.

Understand sinking vs sourcing wiring methods for reliable PLC connections: Sinking and Sourcing: Which Connection is Best for Your PLC?

Using a PLC-based motor starter with a low-level switch interlock makes sure that pump motors in tank-based systems work safely, reliably, and automatically. Low-level float switches, on the other hand, let you see how much liquid is available in real time, which is very important for processes that involve moving fluids.

This system is great for water treatment plants, chemical industries, oil storage systems, and many other industrial situations since it protects equipment, saves energy, and is ready for automation.

By using a simple PLC ladder logic, field wiring, and few parts, businesses can keep motors safe and running without having to do anything themselves. This cuts down on downtime and boosts productivity.
Master the use of ON delay and OFF delay timers in PLC programming: Understanding ON Delay and OFF Delay Timers in PLC Programming

It stops the pump from running dry by stopping motor control logic when the liquid level drops below a safe level.

PLCs are great for automation because they are reliable, include interlock safety logic, and can work with SCADA or HMI systems.

Yes, You can program and simulate ladder logic with TIA Portal or Siemens LOGO! Soft for simple control operations.

The PLC input is connected to the overload relay. If there is an overload, the PLC utilizes this signal to stop the motor.

The EM Stop is a pushbutton that is generally closed. It breaks the control circuit and turns off the motor right away.

Read More

Recent