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: Glass Cutting and Polishing Machine: PLC Automation Solution
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 > Glass Cutting and Polishing Machine: PLC Automation Solution

Glass Cutting and Polishing Machine: PLC Automation Solution

In this article, you will learn the glass cutting and polishing machine PLC programming and automation solution.

Last updated: April 29, 2024 4:14 pm
Editorial Staff
PLC Tutorials
No Comments
Share
9 Min Read
SHARE

In this article, you will learn the glass cutting and polishing machine PLC programming and automation solution.

Contents
Glass Cutting and Polishing MachinePLC Automation SolutionInputs and OutputsPLC Ladder LogicProgram ExplanationSimulation ResultsWhen the Push Button is pressed and released the first timeWhen the Push Button is pressed and released the Second time

Note: This example PLC program is for education and for practicing ladder logic.

Glass Cutting and Polishing Machine

Problem Statement:

Design a PLC ladder logic for the following application.

We are using one Push Button to control Glass products’ Cutting and Polishing.

A Machine is used to cut and polish glasses.

Push Button by pressing and releasing is used to carry on the cutting the glass process which takes 10 seconds.

Then again on pressing and releasing the same push button for the second time, we will be able to polish the glass which takes place for 15 seconds.

PLC Automation Solution

Instrumentation Tools provides PLC automation solutions and programming videos with example problems.

This PLC programming video explains the glass products cutting and polishing logic.

Ladder Logic Example of Machine Cutting and Polishing of Glasses

Inputs and Outputs

Digital Inputs:

Push Button: I0.0

Digital Outputs:

Cutting: Q0.0

Polishing: Q0.1

PLC Ladder Logic

Glass Cutting and Polishing Machine PLC Automation Solution

Program Explanation

We have used Normally Open Contacts for Push Button(I0.0) and Memory Bits.

We have used Normally Closed Contacts for Push Button (I0.0).

In Rung 0:

  1. Normally Open Contact is used for Push Button (I0.0) to Turn ON Memory Bit 1 (M0).
  2. Memory Bit 1 (M0) is latched so that when the Push Button (I0.0) turns OFF, Memory Bit 1 (M0) still remains ON.

In Rung 1:

  1. Normally Open Contact is used for Memory Bit 1 (M0) to Turn ON Memory Bit 2 (M1).
  2. Normally Closed Contact is used for Push Button (I0.0) to Turn ON Memory Bit 2 (M1).
  3. Memory Bit 2 (M1) is latched so that when Memory Bit 1 (M0) turns OFF, Memory Bit 2 (M1) still remains ON.

In Rung 2:

  1. Normally Open Contact is used for Memory Bit 2 (M1) to Turn ON the output Cutting (Q0.0).
  2. Timer Function Block type TP is used to turn ON the output Cutting (Q0.0) for a limited time.

In Rung 3:

  1. Normally Open Contacts are used for Push Button (I0.0) and Memory Bit 2 (M1) to turn ON Memory Bit 3 (M2).
  2. Memory Bit 3 (M2) is latched so that when the Push Button (I0.0) or Memory Bit 2 (M1) turns OFF, Memory Bit 3 (M2) still remains ON.

In Rung 4:

  1. Normally Open Contact is used for Memory Bit 3 (M2) to Turn ON Memory Bit 4 (M3).
  2. Normally Closed Contact is used for Push Button (I0.0) to Turn ON Memory Bit 4 (M3).
  3. Memory Bit 4 (M3) is latched so that when Memory Bit 3 (M2) turns OFF, Memory Bit 4 (M3) still remains ON.

In Rung 5:

  1. Normally Open Contact is used for Memory Bit 4 (M3) to Turn ON the output Polishing (Q0.1).
  2. Timer Function Block type TP is used to turn ON the output Polishing (Q0.1) for a limited time.

Simulation Results

We will simulate the PLC program and analyze the results. Please note that we may show the partial logic code instead of the complete program.

When the Push Button is pressed and released the first time

When Push Button (I0.0) is pressed the first time, Memory Bit 1 (M0) turns ON and stores the data that Push Button (I0.0) is pressed the first time as Memory bits store the data.

Memory Bit 1 (M0) is latched so that when the Push Button (I0.0) is released, Memory Bit 1 (M0) still remains ON.

Cutting and Polishing Machine Program

When Push Button (I0.0) is released first time in Rung0, Normally Closed Contact used for Push Button (I0.0) in Rung1 will be in a false state and will pass the signal to turn ON Memory Bit 2 (M1).

When Memory Bit 1 (M0) turns ON in Rung0, Normally Open Contact used for Memory Bit 1 (M0) in Rung1 will be in True State and will pass the signal to turn ON Memory Bit 2 (M1), and Memory Bit 2 (M1) will turn ON in Rung1.

Ladder Logic Example of Machine Cutting and Polishing

Memory Bit 2 (M1) will store the data that Push Button (I0.0) is released the first time. Memory Bit 2 (M1) is latched so that when Memory Bit 1 (M0) turns OFF, Memory Bit 2 (M1) still remains ON.

When Memory Bit 2 (M1) turns ON in Rung1, Normally Open Contact used for Memory Bit 2 (M1) in Rung2 will be in True state and pass the signal to turn ON the output Cutting (Q0.0) and the output Cutting (Q0.0) will turn ON (Machine starts cutting glass).

Glass Products Making Machine

The output Cutting (Q0.0) will turn OFF after some time as Timer Function Block type TP is used to turn ON the output Cutting (Q0.0) for a limited time.

The time is set to 10 seconds. After 10 seconds, the output Cutting (Q0.0) will turn OFF.

When the Push Button is pressed and released the Second time

When the Push Button (I0.0) is pressed the Second time,  Memory Bit 3 (M2) turns ON as Normally Open Contact used for Push Button (I0.0) will be in True state and will pass the signal to turn ON Memory Bit 3 (M2).

Glass Polishing Machine Logic

When Memory Bit 2 (M1) turns ON in Rung1, Normally Open Contact used for Memory Bit 2 (M1) in Rung3 will be in a True state and will also pass the signal to turn ON Memory Bit 3 (M2), and Memory Bit 3 (M2) will turn ON.

Memory Bit 3 (M2) stores the data that Push Button (I0.0) is pressed the Second time as Memory bits stores the data. Memory Bit 3 (M2) is latched so that when the Push Button (I0.0) is released, Memory Bit 3 (M2) still remains ON.

PLC Control Automatic Glass Processing

When the Push Button (I0.0) is released the Second time, the Normally Closed Contact used for Push Button (I0.0) in Rung4 will be in a false state and will pass the signal to turn ON Memory Bit 4 (M3).

Also, When Memory Bit 3 (M2) turns ON in Rung3, Normally Open Contact used for Memory Bit 3 (M2) in Rung4 will be in True State and will pass the signal to turn ON Memory Bit 4 (M3), and Memory Bit 4 (M3) will turn ON in Rung4.

PLC Solutions for the glass industry

Memory Bit 4 (M3) will store the data that Push Button (I0.0) is released Second time. Memory Bit 4 (M3) is latched so that when Memory Bit 3 (M2) turns OFF, Memory Bit 4 (M3) still remains ON.

When Memory Bit 4 (M3) turns ON in Rung4, Normally Open Contact used for Memory Bit 4 (M3) in Rung4 will be in True state and passes the signal to turn ON the output Polishing (Q0.1) and the output Polishing (Q0.1) will turn ON ( Machine starts polishing glass).

The output Polishing (Q0.1) will turn OFF after some time as the Timer Function Block type TP is used to turn ON the output Polishing (Q0.1) for a limited time. The time is set to 15 seconds. After 15 seconds, the output Polishing (Q0.1) will turn OFF.

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:

  • How to use a Simulator in Siemens PLC Software?
  • Automatic Car Washing using PLC Programming
  • PLC Programming for Defective Parts Sorting
  • PLC Example on Manufacturing Line Assembly
  • Three Motors control PLC Programming Logic
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

Yokogawa DCS and SIS System Architecture
PLC System Site Acceptance Test (SAT)
PLC Structured Text Program for Light Sequences via Timers
PLC Program to Drain Same Products from Two Tanks
How to Download GX Works? Mitsubishi PLC Software
Types of Interlocks
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

Up Down Counter Instruction in PLC
PLC Programming Example on Multi-Motor Control for Beginners
Siemens PLC Organization Blocks (OB)
PLC Example to Control LEDs Via Switches
Moving Data between PLCs – Siemens Basics – TSEND TRCV
HMI Screen Design for Hazardous Applications
PLC Code to Start & Stop Motor and Pump as per Logic
PLC Program for Solenoid, Pilot Lamp, and Switch with Alarm

Keep Learning

PLC Program for Water Level Control

PLC Program for Water Level Control Logic

How to Get a PLC Programming Job With No Experience

How to Get a PLC Programming Job With NO Experience?

ON and OFF a Group of Outputs by One Push button PLC Logic

ON and OFF a Group of Outputs by One Push button PLC Logic

Types of Instructions in PLC Programming

Types of Instructions in PLC Programming

Siemens PLC Interview Questions & Answers

Siemens PLC Interview Questions and Answers

Studio 5000 Define Program or Operator Control in Functional Block Diagram

Studio 5000: Define Program or Operator Control in Functional Block Diagram

PLC 1 Push Button to Turn ON or OFF 1 Output

PLC 1 Push Button to Turn ON or OFF 1 Output

Two Tanks Filling using PLC

PLC Ladder Logic for Tanks Filling as per Priority

Learn More

Electrical Machines Questions and Answers

DC Machines MMF & Flux Density Waveforms Quiz

Mathematical Models of Physical Systems

Block diagram Algebra Objective Questions

Heat Exchanger Root Cause Analysis

Heat Exchanger Root Cause Analysis (RCA)

Electric Circuits Objective Questions

Electric Circuits Objective Questions – Set 3

Switch NO or NC Contact

Normally-open and Normally-closed Switch Contacts

PLC Program using Bitwise Instructions

Allen Bradley Bitwise Logical Operations

Comparison of Temperature Sensors - Industrial Process Control

Comparison of Temperature Sensors – Industrial Process Control

Avoid Process Downtime With Five Device Protection Considerations

How to Avoid Process Downtime ?

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?