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.

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

Steps in PLC System Design
Developing PLC Logic for Water Pumping and Chemical Addition
Compare Servo Motor and Stepper Motor
UPS Working Principle and Types – Offline and Online UPS Systems
PLC Count values higher than 999
VFD Interview Questions and Answers – Electrical Drives
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
210kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

Tia Portal – OB121 Programming Errors Interrupt Organization Block
PLC based 4 Way Traffic Light Control System
Getting to Know the LED Indications on GE Make PLC
#13 PLC Best Practices – Disable Unused Communication Ports
Examples of SCADA and PLC Configuration Systems
Tanks Draining Control in PLC using Functional Block Diagram
Step-by-Step Guide to Choose Right Fuse for a Panel
Siemens S7-300 CPU Suffix Explanation

Keep Learning

Top Automation Vendors

Top Automation Vendors from Around the World – An Overview

Master Control Reset (MCR) ladder logic

How to use Master Control Reset (MCR) Instruction in PLC

Edge Detection in PLC

Edge Detection in PLC Programming

Ladder Logic of Motor Forward and Reverse

PLC Programming Example for Motor Forward and Reverse Control

PLC Tag Naming Conventions

PLC Tag Naming Conventions

PLC Ladder Logic for Motor Control

PLC Program for Motor Starter

Sequential Timer Control of Lamps

Schneider PLC Example: Control Lamps Sequences

Color detection PLC logic

Conveyor Sorting System with Color Detection PLC Logic

Learn More

LED Indications on PLC

Getting to Know the LED Indications on GE Make PLC

redundant transmitters

SIS Sensors

transistor-emitter-bias

Transistor Emitter Bias

DC Motor Connections

DC Motor Connections

Smart DP transmitter Formula

DP Transmitter Error Calculations

Chlorine dioxide measurement principle

Chlorine dioxide Analyzer Principle

Simple Pressure Repeater

Simple Pressure Repeater

Instrumentation Standards

Electronic Equipment Purging Principles & Standards

Menu

  • About
  • Privacy Policy
  • Copyright

Quick Links

  • Learn PLC
  • Helping Hand
  • Part Time Job

YouTube Subscribe

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?