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: PLC Logic: Control Spray Nozzle, Fans, and Puncher
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 > PLC Logic: Control Spray Nozzle, Fans, and Puncher

PLC Logic: Control Spray Nozzle, Fans, and Puncher

PLC logic designed for efficient automation control of spray nozzle, fans, and puncher in industrial processes.

Last updated: May 2, 2024 11:00 am
Editorial Staff
PLC Tutorials
No Comments
Share
6 Min Read
SHARE

PLC logic designed for efficient automation control of spray nozzle, fans, and puncher in industrial processes.

Contents
Control Spray Nozzle, Fans, and PuncherIndustrial Training VideoPLC LogicProgram DescriptionSimulation

Disclaimer: This PLC programming example is for study purposes and to learn the ladder logic with simple applications.

Control Spray Nozzle, Fans, and Puncher

Problem Statement:

Design a PLC ladder logic for the following application.

We are using one toggle switch and one sensor to control the Spray Nozzle, Dry Fans, and Puncher.

When an Object enters the booth, the Spray should start and continue for 10 seconds.

After that drying fans will turn ON for 10 seconds. Then Puncher will be activated to push the object.

Industrial Training Video

Instrumentation Tools provides you the free industrial training videos on the PLC, SCADA, and HMI.

This video explains the PLC program with a step-by-step approach to the given problem.

PLC Programming Basic Examples - Paint Spraying Booth

Digital Inputs

Start Button: I0.0

Sensor: I0.1

Digital Outputs

Spray Nozzle: Q0.0

Dry Fans: Q0.1

Puncher: Q0.2

PLC Logic

PLC Logic - Control Spray Nozzle, Fans, and Puncher

Program Description

We have used the normally open contacts for the Start Button (I0.0) and Sensor (Q0.1).

We have used Normally Closed Contact for Spray Nozzle (Q0.0).

In Rung 0:

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

In Rung 1:

  1. Normally Open Contact is used for the Start Button (I0.0) and Sensor (I0.1) to Turn ON the output Dry Fans  (Q0.1).
  2. Normally Closed Contact is used for the Spray Nozzle (Q0.0) to turn the output Dry Fans (Q0.1).
  3. Timer TP is used to Turn ON the output Dry Fans (Q0.1) for a limited time.

In Rung 2:

  1. Normally Open Contact is used for the Start Button (I0.0) and Sensor (I0.1) to Turn ON the output Puncher (Q0.2).
  2. Timer TON is used to delay the turning ON time of the output Puncher (Q0.1) for some time.

Simulation

Let us simulate our ladder logic to understand its response with inputs. We may shown some part of the logic or rungs instead of the complete program.

Rung 0:

When Start Button (I0.0) turns ON and Sensor (I0.1) gets activated or (Sensor detects an Object entering), the output Spray Nozzle (Q0.0) turns ON or (Spray Starts) as Normally Open Contacts used for Start Button (I0.0) and Sensor (Q0.1) will be in True State and allows the signal to turn ON the output Spray Nozzle (Q0.0).

PLC Timers Programming Example on Paint Spraying Booth

The output Spray Nozzle (Q0.0) will turn ON only for 10 seconds as Timer Function Block type TP is used to Turn ON the output Spray Nozzle (Q0.0) for a limited time. The time is set to 10 seconds. After 10 seconds, the output Spray Nozzle (Q0.0) will turn OFF.

PLC program for a paint spray application system

Rung 1:

Also, When Start Button (I0.0) turns ON and Sensor (I0.1) gets activated or (Sensor detects an Object entering), the output Dry Fans (Q0.1) turns ON after 10 seconds or ( Drying Fans turns ON after 10 seconds) as in Rung0, when the output Spray Nozzle (Q0.0) turns ON, Normally Closed Contact used for Spray Nozzle (Q0.0) in Rung1 will be in True state and will not allow signal to flow through it.

Industrial paint and spray booths

So, after 10 seconds, when the output Spray Nozzle (Q0.0) turns OFF in Rung0, the Normally Closed Contact used for Spray Nozzle (Q0.0) in Rung1 will be in a false state and will pass the signal to turn ON the output Dry Fans (Q0.1) after 10 seconds (i.e immediately when Spray Nozzle turns OFF).

Paint Spraying Programming

The output Dry Fans (Q0.1) will turn ON only for 10 seconds as Timer Function Block type TP is used to Turn ON the output Dry Fans (Q0.1) for a limited time. The time is set to 10 seconds. After 10 seconds, the output Dry Fans (Q0.1) will turn OFF.

Rung 2:

When the Start Button (I0.0) turns ON and Sensor (I0.1) gets activated or (Sensor detects an Object entering), the output Puncher (Q0.2) will turn ON after 20 seconds (i.e immediately when the output Dry Fans (Q0.1) turns OFF) as Timer Function Block TON is used to delay the turning ON time of the output Puncher (Q0.2).

PLC touchscreen for paint systems

The time is set to 20 seconds. After 20 seconds, the output Puncher (Q0.2) will turn ON.

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:

  • Ladder Diagram Control using Timers
  • PLC Programming for Elevator Stop Logic
  • PLC Programming on Bottle Line Control
  • Conveyor and Puncher PLC Programming
  • Batch Mixing PLC Ladder Logic Program
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

How to Detect Speed of Conveyor in PLC?
PLC Based Industrial Conveyor Ladder Logic
Siemens PLC Course for Beginners: Problems and Solutions
Best Practices of PLC Wiring – Programmable Logic Controller
Instrumentation Engineer Activities & Documents – Detail Design Phase
How to do Force in GE PLC Proficy Machine Edition?
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

One Shot Rising PLC Example Program
Using Clock Memory Bits in TIA Portal – Siemens PLC
How to Work With Simulator in S7-1200 and S7-1500 PLC?
What is an Instruction List? – PLC Programming
PLC Based Product Sorting Machine System – Lift Control
Ladder Diagram Example using Memory Bits and Set Coils
Car Wash Program using Functional Block Diagram (PLC)
Example of Controlling the PLC Output using Push Buttons

Keep Learning

Factory Acceptance Test of PLC Panel

Factory Acceptance Test (FAT) of a PLC Panel

Sample Schematic Template for Systems Architecture Diagram

Design Document for Project Systems Architecture

Free Download PLC Book

#10 PLC Best Practices – Assign Register Blocks by Function

Understanding the Scan Cycle of SIEMENS PLC

Understanding the Scan Cycle of SIEMENS PLC

PLC automation timers and counters

Medium-Level PLC Exercise for Students in Automation

PLC program for Latching and unlatched circuit

PLC Program for Latching and unlatching Circuit

100 PLC Quiz Questions

100 PLC Quiz Questions : True or False

Select Security type Intouch

How to Add Security in InTouch SCADA?

Learn More

Top 100 Zigbee Projects for Engineering Students

Top 100 Zigbee Projects for Engineering Students

Dependent Current Source

Dependent Current Source

Pressure Transmitter Working Principle

Gage and Absolute Pressure Transmitters Principle

Calculate the amount of voltage at Thermocouple

Calculate the Voltage across Voltmeters of Thermocouple

Difference between Motion Controller and PLC

Difference between Motion Controller and PLC

Positive Feedback Principle

What is Feedback ?

Chemical Seal Pressure Transmitter

What is the Purpose of Chemical Seals Pressure Transmitter?

The Importance of Supply Chain Collaboration

The Importance of Supply Chain Collaboration

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?