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: Car Wash Program using Functional Block Diagram (PLC)
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 > Car Wash Program using Functional Block Diagram (PLC)

Car Wash Program using Functional Block Diagram (PLC)

Learn how to program an automatic car wash system using functional block diagrams. A beginner-friendly guide for PLC programmers.

Last updated: September 17, 2024 11:44 am
Viral Nagda
PLC Tutorials
No Comments
Share
5 Min Read
SHARE

The functional block diagram is a language in PLC programming which is very easy to use and best for troubleshooting, due to its wide graphical representation scope. Even a new programmer will find it easy to understand.

Contents
Car Wash ProgramFunctional Block Diagram (PLC)

We will learn one sample program in this language in this post. The system we will use for reference is an automatic car wash function. For this system, we will write the logic in a functional block diagram, so that the programmers find it easy to understand and interpret.

Car Wash Program

First, let us understand the case scenario. There are three PLC digital inputs – the start push button, the stop push button, and the car sensor. There are two PLC digital outputs – sprinkler and soap bubbler.

The system has four sequences – first, it will wash, then it will soap, then it will rinse and at last, it will soak. After soaking, the system will stop automatically and wait for a new car.

The sequence starts by pressing the start button and only when a car is sensed. In between the sequence, if the stop button is pressed or if the car is not sensed, then the whole cycle will reset and wait for a new start once again.

Functional Block Diagram (PLC)

Now that we are clear with the scenario of the program required, let us write the logic in a functional block diagram. Refer to the below image. We will see the whole sequence step by step now.

Car Wash Program using Functional Block Diagram (PLC)

We set a bit named – logic started on pressing the start button. The same bit is reset on three conditions – when the stop button is pressed, or when the car is not sensed, or when soaking time is over. Refer to the first top two parts in the image.

The first output of the sprinkler will turn on only during wash time and rinse time. So, for the sprinkler, we have used two AND blocks and one common OR block. Both the AND blocks will have two common interlocks – logic running and car sensor.

In the first AND block, we used the wash timer done bit as negate. It means it will run only till the wash timer is running and stop once the timer is done.

In the second AND block, we used the rinse delay timer done bit and rinse timer done bit as negate. It means it will run only when the rinse delay timer is complete and till the rinse timer is running. Once the rinse timer is done, it will stop.

The second output of the soap bubbler will turn on only when the soap delay timer is complete and till the soap timer is running. Once the soap timer is done, it will stop. For this, we used the soap delay timer done bit and soap timer done bit as negate. It will also have both the common interlocks- logic running and car sensor.

Now, let us see the timer logic. As we see, when the logic is started, the wash time starts for 30 seconds. After it is over, it starts the soap delay timer for 15 seconds. After it is over, it starts the soap timer for 30 seconds.

After it is over, it starts the rinse delay timer for 15 seconds. After it is over, it starts the rinse timer for 30 seconds. After it is over, it starts the soak timer for 15 seconds.

After this timer, the logic is reset as seen in the first condition written. We just linked the timer done of a preceding one to the input of the next one.

In this way, we saw how to write an automatic car washer system using a functional block diagram.

Read Next:

  • Structured Text PLC Logic for Motor Interlock
  • How Modbus is used in Industrial Networks?
  • Conveyor Speed Logic using Structured Text
  • Burglar Alarm Security System PLC FBD Logic
  • PLC Structured Text Program for Outputs
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 !
PLC Program for Artificial Fishpond Water Level Monitoring System
How to Filter Digital and Analog Inputs in a PLC?
What is Resources Tab in the Siemens PLC?
How to Interchange ON Delay Timer and OFF Delay Timer in a PLC
Pulse Timer Instruction in 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

  • 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

PLC Programming Example with Pushbutton and Motor

PLC Programming Example with Pushbutton and Motor

Count the Number of Bottles

Count the Number of Bottles in Packaging Carton PLC Logic

Types of Allen Bradley PLC

Types of Allen Bradley PLC

Electrical Circuit Breaker Quiz

100 Electrical Circuit Breaker Quiz

PLC Commissioning and Testing

PLC Commissioning and Testing Procedure (Programmable Logic Controller)

PC-Based Motion Controller

Various Types of Delta PLC used in Industrial Automation

Types of Limit Switches

Types of Limit Switches – Principle, Advantages, Disadvantages

Siemens PLC Simulator and Plant Simulation Software

How to use Simulator in Siemens PLC?

More Articles

Steam Pressure Taps Primary Block Valves Glands and Bonnets Leaks

Instrument Steam Pressure Taps Primary Block Valves Glands and Bonnets Leaks

What is Photoionization Detector (PID)

What is Photoionization Detector (PID)?

What is a Spare Part

What is a Spare Part? Classification, Cost, Critical Inventory

State Variable Analysis and Design

Concepts of State, State Variables & State Model

Temperature and Humidity Objective Questions

Temperature and Humidity Objective Questions

Electrical & Electronics Measurements Objective Questions

Electrical & Electronics Measurements Objective Questions – Set 2

Digital Electronics Multiple Choice Questions

Shift Registers Objective Questions

Network Theorems Objective Questions and Answers

Network Theorems Objective Questions and Answers

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?