Inst ToolsInst ToolsInst Tools
  • Courses
  • Videos
  • Q & A
    • Interview
      • Instrumentation
      • Electronics
      • Electrical
      • Practical Questions
    • MCQ
      • Instrumentation MCQ
      • Electrical MCQ
      • Electronics MCQ
      • Control Systems MCQ
      • Analog Electronics MCQ
      • Digital Electronics MCQ
      • Power Electronics MCQ
      • Microprocessor MCQ
      • Multiple Choice Questions
  • EE
    • Electronics
      • Electronics Q & A
      • Electronic Basics
      • Electronic Devices & Circuits
      • Electronics Animation
      • Digital Electronics
    • Electrical
      • Electrical Basics
      • Electrical Q & A
      • Power Electronics
      • Electrical Machines
      • Electrical Animation
      • Power Systems
      • Switchgear & Protection
      • Transmission & Distribution
  • Measure
    • Control Valves
    • Calibration
    • Temperature
    • Pressure
    • Flow
    • Level
    • Analyzers
    • Switches
    • Vibration
    • Solenoid Valve
  • Control
    • PLC Tutorials
    • Control Systems
    • Safety Instrumented System (SIS)
    • Communication
    • Fire & Gas System
  • More
    • Design
    • Tools
    • Animation
    • Basics
    • Formulas
    • Standards
    • TextBooks
    • Common
    • Software
    • Excel Tools
    • Erection & Commissioning
    • Process Fundamentals
    • Videos
    • Books
Search
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Reading: Wood Sawing and Blower System: PLC Control Design
Share
Notification Show More
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • PLC Tutorials
  • Control Systems
Search
  • Courses
  • Videos
  • Q & A
    • Interview
    • MCQ
  • EE
    • Electronics
    • Electrical
  • Measure
    • Control Valves
    • Calibration
    • Temperature
    • Pressure
    • Flow
    • Level
    • Analyzers
    • Switches
    • Vibration
    • Solenoid Valve
  • Control
    • PLC Tutorials
    • Control Systems
    • Safety Instrumented System (SIS)
    • Communication
    • Fire & Gas System
  • More
    • Design
    • Tools
    • Animation
    • Basics
    • Formulas
    • Standards
    • TextBooks
    • Common
    • Software
    • Excel Tools
    • Erection & Commissioning
    • Process Fundamentals
    • Videos
    • Books
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > PLC Tutorials > Wood Sawing and Blower System: PLC Control Design

Wood Sawing and Blower System: PLC Control Design

In this article, you will learn the wood sawing and blower system automation and explained the PLC control design.

Last updated: May 1, 2024 2:26 pm
Editorial Staff
PLC Tutorials
No Comments
Share
7 Min Read
SHARE

In this article, you will learn the wood sawing and blower system automation and explained the PLC control design.

Contents
Wood Sawing and Blower SystemPLC Control DesignInputs and OutputsLadder LogicProgram ExplanationSimulation Results

Note: This PLC logic is prepared for learning purposes and can be used to learn ladder logic programming.

Wood Sawing and Blower System

Problem Statement:

Design a PLC ladder logic for the following application.

We are using one Push Button and one sensor to control wood sawing and blower (fan).

The Sawing operation takes place for 10 seconds when the push button is pressed and the wood is placed there.

After the sawing operation is Complete, the wood is removed, and a blower (fan) is used to blow away the sawdust which remains activated for 5 seconds.

PLC Control Design

This video explains the PLC control programming with full details.

Inputs and Outputs

Digital Inputs:

Start Button: I0.0

Sensor: I0.1

Digital Outputs:

Saw: Q0.0

Fan: Q0.1

Ladder Logic

Wood Sawing and Blower System PLC Control Design

Program Explanation

We have used Normally Open Contacts for Start Button (I0.0), Sensor (I0.1), and Memory Bits.

We have used Normally Closed Contact for Sensor (I0.1)

In Rung 0:

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

In Rung 1:

  1. Normally Open Contacts are used for Memory Bit 1 (M0) and Sensor (I0.1) to Turn ON the output Saw (I0.1) and Memory Bit 2 (M1).
  2. Timer Function Block type TP is used to Turn ON the output Saw (Q0.0) for a limited time.

In Rung 2:

  1. Normally Open Contact is used for Memory Bit 2 (M1) to Turn ON Memory Bit 3 (M2).
  2. Memory Bit 3 (M2) is latched so that Memory Bit 2 (M1) turns OFF, and Memory Bit 3 (M2) still remains ON.

In Rung 3:

  1. Normally Open Contacts are used for Memory Bit 1 (M0) and Memory Bit 3 (M2) to turn ON the output Fan (Q0.1).    
  2. Normally Closed Contact is used for the Sensor (I0.1) to Turn ON the output Fan (Q0.1).
  3. Timer Function Block type TP is used to Turn ON the output Fan (Q0.1) for a limited time.

Simulation Results

We simulate the PLC program and discuss the results. We show the partial logic in the test cases instead of the complete program. We recommend you to refer to the above video.

Rung 0 (When Start Button is Pressed):

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

PLC Programming Wood Sawing Example

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

Wood saw cutter PLC program

Rung 1 (When Sensor gets Activated):

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 pass through it.

PLC Program of SAW Cutting Machine

When Sensor (I0.1) gets activated (Sensor detects wood), the output Saw (Q0.0) turns ON (Sawing Operation starts), and Memory Bit 2 (M1) turns ON.

The output Saw (Q0.0) will turn OFF after some time as Timer Function Type TP is used to turn ON the output Saw (Q0.0) for a limited time. The time is set to 10 seconds.

After 10 seconds, the output Saw (Q0.0) turns OFF (Sawing operation finishes).

PLC for Automatic Cutting Machine

Rung 2:

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 will pass the signal to turn ON Memory Bit 3 (M2).

Automated Sawing and Dust Removal

Memory Bit 3 (M2) is latched so that when Memory Bit 2 (M1) turns OFF, Memory Bit 3 (M2) still remains ON.

Rung 3 (When Sensor gets deactivated):

When Memory Bit 1 (M0) turns ON in Rung0 and Memory Bit 3 (M2) turns ON in Rung2, Normally Open Contacts used for Memory Bit 1 (M0) and Memory Bit 3 (M2) in Rung3 will be in True State, and will pass the signal to pass through it.

Sawing and Blowing PLC Program

When Sensor (I0.1) gets deactivated (Sensor does not detect wood or Wood is removed after Sawing Operation), the output Fan (Q0.1) turns ON ( Fan starts)as Normally Closed Contact used for Sensor (I0.1) will be in False state and passes the signal to turn ON the output Fan (Q0.1) and the output Fan (Q0.1) turns ON.

The output Fan (Q0.1) will turn OFF after some time as Timer Function Type TP is used to turn ON the output Fan (Q0.1) for a limited time. The time is set to 5 seconds. After 5 seconds, the output Fan (Q0.1) turns OFF (Fan stops).

Woodworking Automation PLC Logic

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 Logic Program for Push Button and Motor
  • Conveyor Operation with a Backup Motor using PLC
  • PLC Program for Gas Pressure Closed-Loop Control
  • Electrical Machines Objective Questions and Answers
  • Industrial Drives Objective Questions and Answers
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 !

Recommended Articles

Structured Text PLC Program for Measuring Event Duration
Ladder Logic MCQ Questions and Answers
PLC Programming for Loss in Weight Liquid Systems
What is Human Machine Interface (HMI) ?
PLC Timer Programming Examples – TON, TOF, TP and TONR
How to use FIFO Block in TIA Portal? – Siemens PLC Programming
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
208kSubscribersSubscribe
38kFollowersFollow

Categories

Recent Comments

  • William Snyder on Top Non-PLC Certification Courses for Automation Professionals
  • Kamli on Top Free PLC Software
  • Guifty Shimica on Top Non-PLC Certification Courses for Automation Professionals
  • Guifty Shimica on Top Non-PLC Certification Courses for Automation Professionals

Related Articles

Design a PLC program for Operational Sequence of Packaging Process

Design a PLC program for Operational Sequence of Packaging Process

Example of PID Control Instruction

How to Configure PID in Siemens PLC?

WHILE DO Statement in SCL Language

WHILE DO Statement in SCL Language

PLC Program to Separate Different Size Objects

PLC Program to Separate Different Size Objects

Allen Bradley PLC Interview Questions & Answers

Allen Bradley PLC Interview Questions and Answers

Real-time and historical SCADA Trends

What are Trends in SCADA?

Classic Control Circuits

Motor Classic Control Circuits using Single Push button

Watchdog Timer in PLC

What is a Watchdog Timer in PLC?

More Articles

Electromagnetic Fields Objective Questions

Electromagnetic Fields Objective Questions

Mass Flow Calculations of flow measurement

Mass Flow Calculations

PLC Ladder Logic for Demultiplexer

1 to 8 Demultiplexer PLC ladder diagram

hall-effect-sensor

Hall Effect Sensor Working Principle Animation

Electrical Machines Questions and Answers

Double Excited Magnetic System Quiz

Cutaway View of Circuit Breaker

Low Voltage Air Circuit Breaker Principle

Sample Raw DataSheet for Pressure Calibration

Sample Raw DataSheet for Pressure Calibration

Power Electronics Objective Questions

Silicon Controlled Rectifier Commutation Quiz

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?