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 !
What is RS Linx? Types of Software in Rockwell Automation
PLC Program Examples
OB1 – Main Cyclic Organization Block in TIA Portal
Siemens TIA Portal Free Version Download
Vendor Document for Project Systems Architecture
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

  • 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
  • MIHARITSOA Aina Sitraka on Top Non-PLC Certification Courses for Automation Professionals

Related Articles

Siemens PLC Simulator and Plant Simulation Software

How to use Simulator in Siemens PLC?

Allen-Bradley PLC

#15 PLC Best Practices – Safe State when PLC Restarts

PID Simulator

PID Simulator Download

PC-Based Motion Controller

Various Types of Delta PLC used in Industrial Automation

PLC datasheet

How to Read the PLC Datasheet? – Important Notes About PLC

Introduction to PLC

Introduction to PLC – Advantages of PLC

Water Treatment Plant SCADA

Typical HMI Screen Design for Water Treatment Plant

PLC Motor Logic

Interconnection between PLC, MCC, LCP & Pumps – Video

More Articles

Liquid Level Switch Control Pump and Lamp

Liquid Level Switch Control Pump and Lamp

Understanding-a-Process-Control-Loop

Understanding a Process Control Loop

Quality Control Inspector Questions

Quality Control Inspector Interview Questions and Answers

Stability in Frequency Domain

Mathematical Preliminaries

Electric Solenoid Actuators Principle

What is a Electric Solenoid Actuator ?

pi filter Operation

pi filter Operation

Fixed Type Motor control center (MCC)

Motor Control Center (MCC) Signal Interface Termination (SIT)

Closed-tank-DP-Level-Transmitter-with-wet-leg-Zero-elevation-Calibration

Closed tank DP Level Transmitter with wet leg Zero elevation Calibration

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?