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 Programming Example on Bottle Line 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 > PLC Programming Example on Bottle Line Control

PLC Programming Example on Bottle Line Control

In the PLC programming example on the bottle Line Control application, Bottles move on the Conveyor, are Filled in, and then Capped.

Last updated: April 25, 2024 5:05 pm
Editorial Staff
PLC Tutorials
No Comments
Share
6 Min Read
SHARE

In the PLC programming example on the bottle Line control application, Bottles move on the Conveyor, are Filled in, and then Capped.

Contents
Bottle Line ControlPLC Training Videos for BeginnersInputs and OutputsPLC ProgrammingProgram DescriptionPLC Simulation Result

Note: This PLC program is the best fit for students to practice the ladder logic.

Bottle Line Control

Problem Statement:

Design a PLC ladder logic for the following application.

We are using one toggle switch and one Sensor to control 3 Conveyor Motors, Filling, and Capping.

Bottles move along a Conveyor, get Filled in 15 seconds, and then Capped for 10 seconds only when the sensor detects the bottle.

After that, the Conveyor moves again.

PLC Training Videos for Beginners

Welcome to the Instrumentation Tools YouTube channel where you can learn PLC programming with a lot of simple examples.

Bottle Line Control PLC Program using Ladder Logic

Inputs and Outputs

Digital Inputs:

Start Button: I0.0

Sensor: I0.1

Digital Outputs:

Conveyor Motor: Q0.0

Filling: Q0.1

Capping: Q0.2

PLC Programming

PLC Programming Example on Bottle Line Control

Program Description

We have used Normally Open Contact for the Start Button (I0.0), Sensor (I0.1), and Memory Bit (M0).

In the above program, we have used Normally Closed Contact for Memory Bit (M0).

In Rung 0:

  1. Normally Open Contact is used for the Start Button (I0.0) to Turn ON the output Conveyor Motor (Q0.0).
  2. Normally Closed Contact is used for Memory Bit (M0) to turn OFF the output Conveyor Motor (Q0.0).

In Rung 1:

  1. Normally Open Contact is used for Sensor (I0.1) to Turn ON Memory Bit (M0).
  2. TP type timer is used to Turn ON the Memory Bit (M0) for a limited time.

In Rung 2:

  1. Normally Open Contact is used for Memory Bit (M0) to Turn ON the outputs Filling (Q0.1) and Capping (Q0.2).
  2. TP timer is used to Turn ON the output Filling (Q0.0) for a limited time.
  3. TON timer is used to delay the turning ON time of the output Capping (Q0.2) for some time.
  4. TP timer is used to Turn ON the output Capping (Q0.2) for a limited time.

PLC Simulation Result

Let’s simulate our program and test the results. Please note that we may have shown only the required logic parts instead of the complete code.

Rung 0:

When the Start Button (I0.0) is turned ON, the output Conveyor Motor (Q0.0) turns ON as Normally Open Contact used for the Start Button (I0.0) is in True state.

Bottle Line Assembly using PLC Ladder Logic

In False State, Normally Closed Contact used for Memory Bit (M0) also passes the signal to turn ON the output Conveyor Motor (Q0.0)

Rung 1:

When the Sensor (I0.0) gets activated, the signal flows through it as Normally Open Contact used for Sensor (I0.0) will be in True state and Memory Bit (M0) will turn ON but for a limited time as Timer Function Block type TP is used to turn ON Memory Bit (M0) for Limited time and time is set to 25 seconds.

Conveyor Bottle Logic

When Memory Bit (M0) turns ON in Rung1, it will turn ON Memory Bit in Rung0 and Rung2 also and the output Conveyor Motor (Q0.0) in Rung0 will turn OFF because Normally Closed Contact used for Memory Bit (M0) in Rung0  gets True and does not allow the signal to through it.

Rung 2:

When Memory Bit (M0) turns ON, the output Fillings (Q0.1) gets Started but for a limited time as Timer Function Block type TP is used to Turn ON the output Filling (Q0.1) for a limited time and the time set to 15 seconds. So after 15 seconds, the output Filling (Q0.1) will turn OFF.

bottle capping plc program

Also, when Memory Bit (M0) turns ON, the output Capping (Q0.2) will turn ON after 15 seconds (i.e immediately when the output Filling (Q0.1) turns OFF) as Timer Function Block TON is used to delay the turning ON time of the output Capping (Q0.2).

The time is set to 15 seconds. So after 15 seconds, the output capping (Q0.2) will turn ON but for a limited time as Timer Function Block type TP is used to turn ON the output Capping (Q0.2) for a limited time. The time is set to 10 seconds. So after 10 seconds, the output capping (Q0.2) will turn OFF.

Bottle Filling & Capping Project using PLC Ladder Logic Programming

In Rung1, timer Function Block type TP reaches its set time and Memory Bit (M0) turns OFF. When Memory Bit (M0) turns OFF in Rung1, Normally Closed Contact used for Memory Bit (M0) will be in a False State and allow the signal to pass to the output Conveyor Motor (Q0.0) in Rung0 and Conveyor Motor (Q0.0) 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:

  • Counting Number of Bottles in Packaging
  • Automatic Bottle Rejection PLC System
  • Empty Bottle detection using PLC Logic
  • Automatic Bottle Filling System using PLC
  • Capping Machine Control System Automation
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 do Simulation in Schneider PLC?
Documentation and Change Control of PLC or DCS Systems
Flood Warning System using Programmable Logic Controller
OMRON PLC Math Instructions: +(400), -(410), *(420), /(430)
How to Filter Digital and Analog Inputs in a PLC?
How to Choose the Right Industrial Automation Solution?
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

Steps in PLC System Design
Anti-static Wrist Straps in Industrial Automation
Hardware Troubleshooting Steps for PLC Automation Systems
PLC Program for Conditional Control Logic
Timers in Codesys – Timer ON, Timer OFF, Pulse Timer
What is Thin Client in SCADA? – Purpose, Advantages
Explaining Various Types of Analog Instruments
Parking Garage Indicator: PLC Automation System

Keep Learning

Liquid management using PLC programming

PLC Programming for Loss in Weight Liquid Systems

Conveyor Sorting Machine PLC Program

Conveyor Sorting Machine PLC Program with Calculation Function

IP Address Change in Simatic

PLC Configuration of Profinet I/O System

Pneumatic Circuit Design Using PLC - 2

PLC Pneumatic Circuit Control

PLC Tutorials - Timers and Counters

Difference between Timer and Counter – PLC Basics

PLC Logic to identify empty bottles in Packing

Automatic Empty Bottle detection using PLC Logic

How to Run Multiple Motors with a Single VFD

How to Run Multiple Motors with a Single VFD?

PLC Program for Controlling Sequence of Conveyors with Interlocking

PLC Program for Controlling Sequence of Conveyors with Interlock

Learn More

Ultrasonic Level Transmitters Installation

Ultrasonic Level Transmitter Principle, Limitations, Calibration and configuration

Best Practices of PLC Wiring

Best Practices of PLC Wiring – Programmable Logic Controller

Omron PLC Instructions - Move, Move Bit, Move Digit

Move, Move Bit, Move Digit – Examples of Omron PLC Programs

Optimal Control Systems

Optimal Control Problems – Part 1

System architecture

Types of System Architecture used in Industrial Automation

pH Monitoring System Triggers an Alarm

pH Monitoring System Triggers an Alarm

Heat Tracing Problems

Heat Tracing Problems

Chemical Reactor Vessel P and ID

Wrong Operation Internals Destroyed Demineralization Mixed Bed Vessel

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?