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: Automatic Vacuum Cleaner Programming in Omron PLC
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 > Automatic Vacuum Cleaner Programming in Omron PLC

Automatic Vacuum Cleaner Programming in Omron PLC

Learn about the sequential program concept in CX-Programmer software and how it can be applied to automatic vacuum cleaners using Omron PLC.

Last updated: September 20, 2024 4:54 pm
Editorial Staff
PLC Tutorials
No Comments
Share
7 Min Read
SHARE

Learn about the sequential program concept in CX-Programmer software and how it can be applied to automatic vacuum cleaners using Omron PLC.

Contents
Automatic Vacuum CleanerPLC Inputs/OutputsProgramming in Omron PLC

Automatic Vacuum Cleaner

The PLC system can Run in 3 modes – Manual, Auto, and Timer. In “Manual” mode the Vaccum Cleaner can be turned ON using the Button. In “Auto” mode Vaccum Cleaner will turn ON when the dust level in the room exceeds the “Set value” limit. In “Timer” mode Vaccum Cleaner will turn ON sequentially, the Vaccum Cleaner will be ON for 5 seconds and will be OFF for 5 seconds.

This PLC program has 4 buttons, the START_SYSTEM (0.00) button is used to turn ON the system, the STOP_SYSTEM (0.01) button is used to turn OFF the system, the SELECTOR_MODE (0.02) button is used to select the mode to be Run, and the VACCUM_CLEANER_BUTTON (0.03) button is used to turn ON the output VACCUM_CLEANER (100.00) when the system is Running in Manual mode.

The PLC program has 3 sequences stored in memory word MODE (D0). If SELECTOR_MODE (0.02) button is Pressed, the value in the memory word MODE (D0) will increase (+1), and when the value is equal to “3” the memory word MODE (D0) will be reset to zero “0”.

In sequence 1, the memory word MODE (D0) will be zero “0” and the system in “Manual” mode.

When in “Manual” mode the VACCUM_CLEANER (100.00) output can only be ON if the VACCUM_CLEANER_BUTTON (0.03) button is Pressed.

In sequence 2, the memory word MODE (D0) will have a value of one “1” and the system in “Timer” mode.

In this Mode, the VACCUM_CLEANER (100.00) output will be ON sequentially, the Vaccum Cleaner will be ON for 5 seconds, and will be OFF for 5 seconds.

In sequence 3, the memory word MODE (D0) will have a value of two “2” and the system in “Auto” mode.

In this mode, the VACCUM_CLEANER (100.00) output will be ON if the value in memory word DUST_LEVEL (D10) is greater than or equal to “35”.

Automatic Vacuum Cleaner Programming in Omron PLC

PLC Inputs/Outputs

CommentInput (I)Output (Q)Memory BitsMemory WordTimers
START_SYSTEM0.00    
STOP_SYSTEM0.01    
SELECTOR_MODE0.02    
VACCUM_CLEANER_BUTTON0.03    
VACCUM_CLEANER 100.00   
MODE   D0 
DUST_LEVEL   D10 
TIMER1    T0000
TIMER2    T0001
SYSTEM_ON  W0.00  
IR_MANUAL_MODE  W0.01  
IR_TIMER_MODE  W0.02  
IR_AUTO_MODE  W0.03  

Programming in Omron PLC

RUNG 0 (SYSTEM ON)

In this Rung, when START_SYSTEM(0.00) button is pressed, the memory bit SYSTEM_ON (W0.00) changes to HIGH state. Because it uses latching, the memory bit SYSTEM_ON (W0.00) remains in the HIGH state even though the START_SYSTEM (0.00) button has been Released.

The memory bit SYSTEM_ON (W0.00) will become a LOW state if the STOP_SYSTEM (0.01) button is Pressed.

Programming in Omron PLC

RUNG 1 (MODE)

In this rung, if the NO contact memory bit SYSTEM_ON (W0.00) is in a HIGH state and the SELECTOR_MODE (0.02) button is Pressed (once), then the value in memory word MODE (D0) will increase (+1).

RUNG 2 (MANUAL MODE)

When the NO contact memory bit SYSTEM_ON (W0.00) is in a HIGH state and memory word MODE (D0) is equal to zero “0” and the VACCUM_CLEANER_BUTTON (0.03) button is Pressed, the memory bit IR_MANUAL_MODE (W0.01) will change to the HIGH state.

RUNG 3 (TIMER MODE)

In this Rung, when the NO contact of memory bit SYSTEM_ON (W0.00) in HIGH state and the memory word MODE (D0) has a value equal to “1”, then the memory bit IR_TIMER_MODE (W0.02) bit will be in HIGH state. The timer instruction TIMER1 (T0000) will Start counting up to 5 seconds and timer TIMER2 (T0001) will count up to 10 seconds.

When the timer TIMER1 (T0000) finishes counting, the memory bit IR_TIMER_MODE (W0.02) will change to a LOW state due to the interlock of timer TIMER1 (T0000).

When timer TIMER2 (T0001) finishes counting, timer TIMER1 (T0000) will be OFF due to the interlock of timer TIMER2 (T0001), and the memory bit IR_TIMER_MODE (W0.02) will change to HIGH state again. This situation will continue to repeat itself.

PLC automation for vacuum cleaner

RUNG 4 (AUTO MODE)

In this Rung, when the NO contact memory bit SYSTEM_ON (W0.00) is in the HIGH state and the memory word MODE (D0) has a value equal to zero “0” and the memory word DUST_LEVEL (D10) has a value greater than or equal to “35”, then memory bit IR_AUTO_MODE (W0.03) will change to the HIGH state.

RUNG 5 (RESET MODE)

In this Rung, when the NO contact memory bit SYSTEM_ON (W0.00) is in the HIGH state and the memory word MODE (D0) has a value equal to zero “3”, then the MOV(021) instruction will move the zero value “0” to memory word MODE (D0) so that the system resets back to “Manual” mode.

Automatic vacuum cleaner

RUNG 6 (OUT VACUUM CLEANER)

The VACCUM_CLEANER (100.00) output will be ON if the NO contact of memory bit IR_MANUAL_MODE (W0.01) or IR_TIMER_MODE (W0.02) or IR_AUTO_MODE (W0.03) is in HIGH state.

Read Next:

  • Studio 5000 Motor Running Hours PLC Logic
  • STAR-DELTA Auto And Manual PLC Program
  • PLC 1 Button To Activate 4 Different Machines
  • Electric Motor Forward Reverse PLC Logic
  • Product Painting with Omron PLC 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

Readings Mismatch between Field & Control Room ? Why
Motor Trip Logic using PLC Programming
Pump and Mixer Operations Example: PLC Timer-Based Control
What is Trace Function in Tia Portal?
VFD Interview Questions and Answers – Electrical Drives
Difference Between NO and NC Contacts
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

Timer-Based Sequential PLC Program with One Button
What is a Retro-Reflective Sensor? – Principle, Applications
Industrial Automation Pre-Engineering Design Documents – Project & Process
Traffic Lights Ladder Diagram using Timers
How to Code a FIFO Queue in STL Language in Siemens PLC?
Emergency Stop Switch Spurious Trip
Wiring in a PLC Control Panel
Learn PLC in Hindi

Keep Learning

PLC Program to Operate Stamping of Parts

PLC Application for Stamping Operation – Example Programming

PLC Program for Forward and Reverse Motor control

3 Phase Motor Control using PLC Ladder Logic

Data Instance in PLC

Tia Portal – Different Instances of Calling a Function Block

Indusoft SCADA Modbus Communication

Establishing a Modbus Driver for SCADA Indusoft Web Studio

PLC Ladder Logic Example based on Set Coil and Reset Coil

PLC Ladder Logic Example based on Set Coil and Reset Coil

LCS Configuration equipped with LOTO Facility

Motor Control Signal Interface

Siemens Tia Portal PLC Training Course

Siemens Tia Portal PLC Training Course

PLC Load Memory

What is Resources Tab in the Siemens PLC?

Learn More

Remote Seals Transmitters Temperature Error

Remote Seal Transmitters Temperature Error

High Frequency Amplifiers Objective Questions

High Frequency Amplifiers Objective Questions

Types of Sensors Used in Automobiles

Types of Sensors Used in Automobiles

Air Cylinder Consumption Calculation for Control Valves

Air Cylinder Consumption Calculation for Control Valves

Erratic Radar Level Gauges

Erratic Radar Level Gauges Delays a Refinery Commissioning

Trip Circuit Breakers

How Do Electrical Shorts and Ground Faults Trip Circuit Breakers?

Heavy Equipment Transport

4 Tips For Shipping Large Construction Equipment

Wireless HART Transmitter

How to Commission WirelessHART Transmitter With Gateway

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?