Inst ToolsInst ToolsInst Tools
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
Search
  • Books
  • Software
  • Projects
  • Process
  • Tools
  • Basics
  • Formula
  • Power Plant
  • Root Cause Analysis
  • Electrical Basics
  • Animation
  • Standards
  • 4-20 mA Course
  • Siemens PLC Course
Reading: Pump and Mixer Operations Example: PLC Timer-Based Control
Share
Notification Show More
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • Design
  • PLC
  • Interview
  • Control System
Search
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > PLC Tutorials > Pump and Mixer Operations Example: PLC Timer-Based Control

Pump and Mixer Operations Example: PLC Timer-Based Control

In this article, you will learn the pump and mixer operations example with PLC timer based control application program.

Last updated: May 1, 2024 7:25 am
Editorial Staff
PLC Tutorials
No Comments
Share
9 Min Read
SHARE

In this article, you will learn the pump and mixer operations example with a PLC timer-based control application program.

Contents
Pump and Mixer Operations ExamplePLC Timer-Based Control ProgramInputs and OutputsLadder DiagramProgram DescriptionSimulation Results

Note: This PLC exercise can be used to learn the ladder logic programming.

Pump and Mixer Operations Example

Problem Statement:

Design a PLC ladder logic for the following application.

We are using one toggle switch to control Pump 1, Valve 1, Valve 2, Mixer, and Pump 2.

The pump should run for 30 seconds to fill a tank, and then Valve 1 and Valve 2 will Open for 2 seconds each one after the other. Then the Mixer should operate for 30 seconds and finally, the Pump should drain the tank for 30 seconds.

PLC Timer-Based Control Program

This PLC video explains the pumping and mixing program in full detail.

PLC Programming Exercises - Pumping and Mixing Process

Inputs and Outputs

Digital Inputs:

Start Button: I0.0

Digital Outputs:

Pump: Q0.0

Valve 1: Q0.1

Valve 2: Q0.2

Mixer: Q0.3

Pump 2:Q0.4

Ladder Diagram

Pump and Mixer Operations Example PLC Timer-Based Control

Program Description

We have used Normally Open Contact for the Start Button (I0.0).

In Rung 0:

  1. Normally Open Contact is used for the Start Button (I0.0) to Turn ON the output Pump 1 (Q0.0). 
  2. Timer type TP is used to Turn ON the output Pump 1 (Q0.0) for a limited time.

In Rung 1:

  1. Normally Open Contact is used for the Start Button (I0.0) to Turn ON the outputs Valve 1 (Q0.1) and Valve 2 (Q0.2).
  2. Timer type TON is used to delay the turning ON time of the output Valve 1 (Q0.1) for some time.
  3. Timer type TP is used to Turn ON the output Valve 1 (Q0.1) for a limited time.
  4. Timer type TON is used to delay the turning ON time of the output Valve 2 (Q0.2) for some time.
  5. Timer type TP is used to Turn ON the output Valve 2 (Q0.2) for a limited time.

In Rung 2:

  1. Normally Open Contact is used for the Start Button (I0.0) to Turn ON the output Mixer (Q0.3). 
  2. Timer type TON is used to delay the turning ON time of the output Mixer (Q0.3) for some time.
  3. Timer type TP is used to Turn ON the output Mixer (Q0.3) for a limited time.

In Rung 3:

  1. Normally Open Contact is used for the Start Button (I0.0) to Turn ON the output Pump 2 (Q0.4). 
  2. Timer type TON is used to delay the turning ON time of the output Pump 2 (Q0.4) for some time.
  3. Timer type TP is used to Turn ON the output Pump 2 (Q0.4) for a limited time.

Simulation Results

Let’s check the program result with the simulation. We show the partial logic instead of the complete PLC code.

Rung 0:

When the Start Button (I0.0) is turned ON, the output Pump 1 (Q0.0) turns ON (Pump starts filling the tank) but for a limited time as Timer Function type TP is used to turn ON the Output Pump 1 (Q0.0) or fill the tank for limited time.

Pump and mixer control PLC

The time is set to 30 seconds.

So after 30 seconds, the output Pump 1 (Q0.0) will turn OFF or after 30 seconds, the Pump stops filling the tank.

Timer-based pump control logic

Rung 1:

When the Start Button (I0.0) is turned ON, the output Valve 1 (Q0.1) will turn ON after 30 seconds or Valve 1 will Open after 30 seconds (i.e immediately after the output Pump 1(Q0.0) turns OFF or after filling of the tank is finished) because Timer Function Block TON is used to delay the turning ON time of the output Valve 1 (Q0.1).

The time is set to 30 seconds.

Mixer operation timing control

After 30 seconds, the output Valve 1 (Q0.1) will turn ON or after 30 seconds Valve 1 will open but for a limited time as Timer Function Block type TP is used to turn ON the output Valve 1 (Q0.1) for a limited time. The time is set to 2 seconds.

After 2 seconds, the output Valve 1 (Q0.1) turns OFF, or after 2 seconds Valve 1 closes.

PLC timer logic for pumps

Also, when Start Button (I0.0) is turned ON, the output Valve 2 (Q0.2) will turn ON after 32 seconds or Valve 2 will Open after 32 seconds (i.e immediately after the output Valve 1(Q0.1) turns OFF or after Valve 1 Closes) because Timer Function Block TON is used to delay the turning ON time of the output Valve 2 (Q0.2).

The time is set to 32 seconds.

Timer-based valve control system

So after 32 seconds, the output Valve 2 (Q0.2) will turn ON or after 32 seconds Valve 2 will open but for a limited time as Timer Function Block type TP is used to turn ON the output Valve 2 (Q0.2) for a limited time.

The time is set to 2 seconds. So after 2 seconds, the output Valve 2 (Q0.2) turns OFF, or after 2 seconds Valve 2 closes.

Rung 2:

When the Start Button (I0.0) is turned ON, the output Mixer (Q0.3) will turn ON after 34 seconds, or after 34 seconds Mixer starts (i.e immediately after the output Valve 2 (Q0.2) turns OFF or after Valve 2 closes) because Timer Function Block TON is used to delay the turning ON time of the output Mixer (Q0.3). The time is set to 34 seconds.

PLC pump timer programming

After 34 seconds, the output Mixer (Q0.3) will turn ON, or after 34 seconds Mixer starts but for a limited time as Timer Function Block type TP is used to turn ON the output Mixer (Q0.3) for a limited time. The time is set to 30 seconds. So after 30 seconds, the output Mixer (Q0.3) turns OFF or after 30 seconds Mixer stops.

Timer-controlled mixing process

Rung 3:

When the Start Button (I0.0) is turned ON, the output Pump 2 (Q0.4) will turn ON after 64 seconds, or after 64 seconds Pump 2 starts draining the tank (i.e immediately after the output Mixer (Q0.3) turns OFF or after Mixer stops) because Timer Function Block TON is used to delay the turning ON time of the output Pump 2 (Q0.4).

Pumping and mixing automation

The time is set to 64 seconds. So after 64 seconds, the output Pump 2 (Q0.4) will turn ON or after 44 seconds Pump 2 starts draining the tank but for a limited time as Timer Function Block type TP is used to turn ON the output Pump 2 (Q0.4) for a limited time.

The time is set to 30 seconds. So after 30 seconds, the output Pump 2 (Q0.4) turns OFF or after 30 seconds Pump 2 stops draining the tank.

PLC timer application for fluid control

If you liked this article, 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:

  • Connecting Faceplate to PLC Project Tutorial
  • Batch Mixing with PLC Ladder Logic Program
  • PLC Example Program using LogixPro Simulator
  • PLC Program Sorting Boxes by Height Ladder Logic
  • PLC Programming Example for a Batch Process
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
You've successfully subscribed !

Continue Reading

Feedback Monitoring in Safety PLC
Motor Starter Logic using Siemens PLC Tia Portal
PLC vs PAC – Understanding the Key Differences and Similarities
Automatic Highway Lights Program using RTC in Omron PLC
Seven Segment Display Programming with Structured Text
Communication between InTouch Scada and Allen Bradley PLC
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

128.3kFollowersLike
69.1kFollowersFollow
208kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

How to Code a FIFO Queue in STL Language in Siemens PLC?
Mitsubishi PLC Programming Tutorials
Difference Between Microcontroller and PLC
Wood Sawing and Blower System: PLC Control Design
PLC Program with 2 Toggle Switches and 4 Motors
Repeat Until Statement in SCL Language
Industrial Automation and Control Systems (IACS)
SFC Language in PLC Programming

Keep Learning

Case Statement in SCL Language

Case Statement in SCL Language

Features of Scada Which are Must in an IoT System

Features of Scada Which are Must in an IoT System

Job Skills Required for Industrial Electrical Maintenance

Job Skills Required for Industrial Electrical Maintenance

Allen Bradley PLC to PLC Communication in Studio 5000

Allen Bradley PLC to PLC Communication in Studio 5000

PLC Programmer Salary and Future Career Scope

PLC Programmer Salary and Future Career Scope

Surface Grinding Process using PLC Program

Surface Grinding Process using PLC Program

PLC Program to Operate Stamping of Parts

PLC Application for Stamping Operation – Example Programming

Contextual HMI

What is Contextual HMI? – HMI Screens on a Mobile or Tablet

Learn More

Comparison of Control Loops - Open, Closed, Cascade, Feedforward, Ratio

Comparison of Control Loops – Open, Closed, Cascade, Feedforward, Ratio

What is Temperature

What is Temperature ?

four-way-solenoid-valve-diagram

Four Way Solenoid Valve Working Principle

temperature sensor

Dead time

Simple Three Digital Electronic Project Ideas

Simple Three Digital Electronic Project Ideas

Counters and Timers Projects Using Analog Electronic Devices

Top 100 Counters and Timers Projects Using Analog Electronic Devices

Timer-based vacuum cleaner in Schneider PLC

Schneider Electric PLC Timer Problem: Vacuum Cleaner

PlantPAx DCS

Introduction to PlantPAx Distributed Control System

Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?