Inst ToolsInst ToolsInst Tools
  • Ask
  • 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: Omron PLC Logic for Washing Machine Automation
Share
Notification Show More
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • PLC Tutorials
  • Control Systems
Search
  • Ask
  • 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 > Omron PLC Logic for Washing Machine Automation

Omron PLC Logic for Washing Machine Automation

This article discusses sequential systems using the Omron PLC logic based on the washing machine automation example.

Last updated: September 23, 2024 3:15 pm
Editorial Staff
PLC Tutorials
No Comments
Share
6 Min Read
SHARE

This article discusses sequential systems using the Omron PLC logic based on the washing machine automation example.

Contents
Washing Machine AutomationIO ListOmron PLC Logic

Washing Machine Automation

This PLC program uses 2 buttons, the START_WASH (0.00) button is used to Turn ON the system and the STOP_WASH (0.01) button is used to Turn OFF the system.

When the START_WASH (0.00) button is pressed, the Output WATER_IN (100.00) will be ON for 15 seconds to carry out the water filling process.

After the Output WATER_IN (100.00) is OFF, the Mixing process will be carried out. The MIX_FORWARD (100.01) and MIX_REVERSE (100.02) Outputs will be ON (alternately) 4 times with a time interval of 5 seconds.

When the Mixing process is complete, the Output DRYER (100.03) will be ON for 20 seconds to carry out the drying process.

The Output ALARM (100.04) will be ON after the drying process is complete. The Output ALARM (100.04) will be OFF if the STOP_WASH (0.01) button is Pressed.

Omron PLC Logic for Washing Machine Automation

IO List

CommentInput (I)Output (Q)Memory BitsMemory WordTimers
START_WASH0.00    
STOP_WASH0.01    
WATER_IN 100.00   
MIX_FORWARD 100.01   
MIX_REVERSE 100.02   
DRYER 100.03   
ALARM 100.04   
TIMER_1    T0000
TIMER_2    T0001
TIMER_3    T0002
TIMER_4    T0003
SYSTEM_ON  W0.00  
PV_FORWARD_REVERSE   D0 

Omron PLC Logic

RUNG 0 (START_WASH)

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

The memory bit  SYSTEM_ON (W0.00) will be OFF if the STOP_WASH (0.01) button is Pressed.

Omron PLC washing machine automation

RUNG 1 (WATER IN)

When NO contact of the memory bit SYSTEM_ON (W0.00) in the HIGH state, the Output WATER_IN (100.00) will be ON and the TIMER_1 (T0000) Timer Starts counting up to 15 seconds.

The Output WATER_IN (100.00) will be OFF when NC contact of Timer TIMER_1 (T0000) in the HIGH state.

Washing machine control using Omron PLC

RUNG 2 (MIX FORWARD)

In this Rung, the Output MIX_FORWARD (100.01) will be ON when NO contacts of the memory bits SYSTEM_ON (W0.00) and TIMER_1 (T0000) in HIGH state and the value of memory word PV_FORWARD_REVERSE (D0) is less than “4”.

Timer TIMER_2 (T0001) will count for 5 seconds, when Timer TIMER_2 (T0001) finishes counting, the Output MIX_FORWARD (100.01) will be OFF because of the Interlock. Timer TIMER_2 (T0001) will be OFF when NC contact of TIMER_3 (T0002) is in the HIGH state.

RUNG 3 (MIX REVERSE)

In this Rung, the Output MIX_REVERSE (100.02) will be ON when NO contact of the memory bit SYSTEM_ON (W0.00) and Timer TIMER_2 (T0001) in a HIGH state and the value of memory word PV_FORWARD_REVERSE (D0) is less than “4”.

Timer TIMER_3 (T0002) will count for 5 seconds, when Timer TIMER_3 (T0002) finishes counting, the Output MIX_REVERSE (100.02) will be OFF because of the Interlock.

RUNG 4 (COUNT FORWARD REVERSE)

In this Rung, when NO contact of the MIX_REVERSE (100.02) in the HIGH state then the value in memory word PV_FORWARD_REVERSE (D0) will increase (+1) using the Binary Increment Instruction.

PLC washing machine programming

RUNG 5 (DRYER)

In this Rung, the Output DRYER (100.03) will be ON when NO contact of the memory bit SYSTEM_ON (W0.00) in a HIGH state and value in the memory word PV_FORWARD_REVERSE (D0) is less than or equal to “4”.

Timer TIMER_4 (T0003) will count for 20 seconds, when Timer TIMER_4 (T0003) finishes counting, the Output DRYER (100.03) will be OFF because of the Interlock.

RUNG 6 (ALARM)

The output ALARM (100.04) will be ON when NO contacts of the memory bits SYSTEM_ON (W0.00) and TIMER_4 (T0003) in the HIGH state.

The output ALARM (100.04) will be OFF when the STOP_WASH (0.01) button is Pressed.

PLC example for washing machine

RUNG 7 (RESET PV FORWARD REVERSE)

In this Rung, when the STOP_WASH (0.01) button is pressed, the memory word PV_FORWARD_REVERSE (D0) will become zero value “0”. This is because the MOV instruction moves the zero value “0” to the memory word PV_FORWARD_REVERSE (D0).

Read Next:

  • PLC Product Sticker Machine with Weighing
  • Automatic Car Washing using PLC Program
  • Waste-Burning System OMRON PLC Logic
  • Water Pump PLC Program CX-Programmer
  • Automate Batch Mixing with Repeated Cycle
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 !
Motor ON OFF Logic in PLC
T-Junction Traffic Control System – PLC Programming
PLC Program for Food Processing Industry
200+ Quiz on Electrical Meters, Measurement, and Troubleshooting
PLC Program to Control a Water Pump
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

  • Guifty Shimica on Top Non-PLC Certification Courses for Automation Professionals
  • Guifty Shimica on Top Non-PLC Certification Courses for Automation Professionals
  • MIHARITSOA Aina Sitraka on Top Non-PLC Certification Courses for Automation Professionals
  • Vaishnavi on Free Instrumentation Course for Trainee Engineers

Related Articles

PLC Logic for Water Pumping and Chemical Addition

Developing PLC Logic for Water Pumping and Chemical Addition

Boolean Logic to PLC Programming

Boolean Logic to PLC Programming

On Delay Timer using PLC

ON Delay Timer using PLC

Coil Type Timers in Siemens PLC Programming

Coil Type Timers in Siemens PLC Programming

Free Download SCADA Softwares

Free SCADA Software Download

Omron PLC Example

Design a Water Pump PLC Program using CX-Programmer

PLC analog output card

PLC Analog I/O and Network I/O

PLC program for bread oven

Bread Oven Control in Auto and Manual Modes PLC Program

More Articles

Flow Transmitter Output Current Calculation

Calculate Flow Transmitter Output Current

Cable Trays

Types of Cable Trays – Purpose, Advantages, Disadvantages

Control Systems Interview Questions & Answers

Control Systems Interview Questions & Answers

Difference Between CNC Machine and VMC Machine

Difference Between CNC Machine and VMC Machine

Types of Fuses

Electrical System Components and Protection Devices

Electron Spin Resonance Questions & Answers

Electron Spin Resonance

Pressure Gauge Water traps and pigtail siphons

Pressure Gauge Water Traps and Pigtail Siphons

Coriolis Mass Flowmeter Principle

Coriolis Mass Flow Sensor Theory

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?