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
  • Request
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
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
  • Request
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

Smart Automation Solutions: PLC Logic for Stairway Lighting
PLC based 4 Way Traffic Light Control System
MOVE Instruction in PLC – What You Need to Know?
How a PLC do the Scaling for a Sensor ?
PLC Ladder Program for Automatic Car Wash using Siemens TIA Portal
PLC Program for Bank Counter Application
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

PLC Techniques for I/O Mapping
InTouch SCADA Login Password Security
How to Solve Electrical Ground Loop Problems?
Scaling with Parameters (SCP) Instruction in PLC
Create User-Defined Data Types and Function Blocks in Studio 5000
Tia Portal – OB20 Time Delay Interrupt Organization Block
How to Choose a Suitable HMI for Your Application?
FC Function in Siemens PLC

Keep Learning

Pneumatic Circuit Design Using PLC - 2

PLC Pneumatic Circuit Control

How to Design a Motor Faceplate in Graphics - SCADA Tutorials

How to Design a Motor Faceplate in Graphics? – SCADA Tutorials

DCS Marshalling Cabinet Checks

PLC, DCS, and ESD Marshalling Cabinet Checks

PLC attendance system design

Attendance System PLC Program using CX-Programmer

HMI screen for operator

Auto Tiffin Box Filling Station

Scaling in PLC

PLC Ladder Logic for Sensor Scaling with Offset

Omron PLC Online Training Course

Omron PLC Online Training Course

How to Update the Firmware Version of your PLC

How to Update the Firmware Version of your PLC? – TIA Portal

Learn More

Optical Pyrometer

Optical Pyrometer Working Principle

Control Sytem Open Loop and Closed Loop

Introduction to Control System

Calculate the Magnitude of Hydrostatic Pressure

Calculate the Magnitude of Hydrostatic Pressure

Automating Car Parking with Advanced PLC Logic

Complex Car Parking Logic in XG5000 LS Electric PLC

Compounded DC Generator

Compound Generators

VHDL Projects for Engineering Students

100 VHDL Projects for Engineering Students

PLC Program for Food Processing

PLC Program for Food Processing Industry

Power Electronics Objective Questions

Power Electronics MCQ Questions and Answers

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?