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: Introduction to PLC Ladder Diagrams
Share
Notification Show More
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 > Introduction to PLC Ladder Diagrams

Introduction to PLC Ladder Diagrams

A ladder diagram is read from left to right and from top to bottom. When the PLC is in run mode, it goes through the entire ladder program to the end.

Last updated: November 2, 2023 2:37 pm
Editorial Staff
PLC Tutorials
No Comments
Share
9 Min Read
SHARE

As an introduction to ladder diagrams, consider the simple wiring diagram for an electrical circuit in Figure 1.1a. The diagram shows the circuit for switching on or off an electric motor.

Contents
Introduction to PLC Ladder DiagramsPLC Ladder Programming

We can redraw this diagram in a different way, using two vertical lines to represent the input power rails and stringing the rest of the circuit between them.

Introduction to PLC Ladder Diagrams

Figure 1.1b shows the result. Both circuits have the switch in series with the motor and supplied with electrical power when the switch is closed.

The circuit shown in Figure 1.1b is termed a ladder diagram.

PLC Electrical Circuit

With such a diagram the power supply for the circuits is always shown as two vertical lines with the rest of the circuit as horizontal lines.

The power lines, or rails as they are often termed, are like the vertical sides of a ladder with the horizontal circuit lines like the rungs of the ladder.

The horizontal rungs show only the control portion of the circuit; in the case of Figure 1.1 it is just the switch in series with the motor.

Circuit diagrams often show the relative physical location of the circuit components and how they are actually wired.

With ladder diagrams no attempt is made to show the actual physical locations and the emphasis is on clearly showing how the control is exercised.

PLC Stop Start Circuit

Figure 1.2 shows an example of a ladder diagram for a circuit that is used to start and stop a motor using push buttons.

In the normal state, push button 1 is open and push button 2 closed. When button 1 is pressed, the motor circuit is completed and the motor starts.

Also, the holding contacts wired in parallel with the motor close and remain closed as long as the motor is running. Thus when the push button 1 is released, the holding contacts maintain the circuit and hence the power to the motor.

To stop the motor, button 2 is pressed. This disconnects the power to the motor and the holding contacts open. Thus when push button 2 is released, there is still no power to the motor.

Thus we have a motor which is started by pressing button I and stopped by pressing button 2.

PLC Ladder Programming

A very commonly used method of programming PLCs is based on the use of ladder diagrams. Writing a program is then equivalent to drawing a switching circuit.

The ladder diagram consists of two vertical lines representing the power rails. Circuits are connected as horizontal lines, i.e., the rungs of the ladder, between these two verticals.

In drawing a ladder diagram, certain conventions are adopted:

  1. The vertical lines of the diagram represent the power rails between which circuits are connected. The power flow is taken to be from the left-hand vertical across a rung.
  2. Each rung on the ladder defines one operation in the control process.
  3. A ladder diagram is read from left to right and from top to bottom, Figure 1.3 showing the scanning motion employed by the PLC. The top rung is read from left to right. Then the second rung down is read from left to right and so on.
PLC Ladder Programming

When the PLC is in its run mode, it goes through the entire ladder program to the end, the end rung of the program being clearly denoted, and then promptly resumes at the start.

This procedure of going through all the rungs of the program is termed a cycle. The end rung might be indicated by a block with the word END or RET for return, since the program promptly returns to its beginning.

  1. Each rung must start with an input or inputs and must end with at least one output. The term input is used for a control action, such as closing the contacts of a switch, used as an input to the PLC. The term output is used for a device connected to the output of a PLC, e.g., a motor.
  2. Electrical devices are shown in their normal condition. Thus a switch, which is normally open until some object closes it, is shown as open on the ladder diagram. A switch that is normally closed is shown closed.
  3. A particular device can appear in more than one rung of a ladder. For example, we might have a relay that switches on one or more devices. The same letters and/or numbers are used to label the device in each situation.
  4. The inputs and outputs are all identified by their addresses, the notation used depending on the PLC manufacturer. This is the address of the input or output in the memory of the PLC.

Figure 1.4 shows standard IEC 1131-3 symbols that are used for input and output devices. Some slight variations occur between the symbols when used in semi-graphic form and when in full graphic.

Note that inputs are represented by different symbols representing normally open or normally closed contacts. The action of the input is equivalent to opening or closing a switch. Output coils are represented by just one form of symbol.

To illustrate the drawing of the rung of a ladder diagram, consider a situation where the energizing of an output device, such as a motor, depends on a normally open start switch being activated by being closed.

The input is thus the switch and the output the motor. Figure 1.5a shows the ladder diagram.

Starting with the input, we have the normally open symbol jj for the input contacts. There are no other input devices and the line terminates with the output, denoted by the symbol ( ). When the switch is closed, i.e., there is an input, the output of the motor is activated.

Only while there is an input to the contacts is there an output. If there had been a normally closed switch j / j with the output (Figure 1.5b), then there would have been an output until that switch was opened. Only while there is no input to the contacts is there an output.

PLC Ladder Rung Symbols

In drawing ladder diagrams the names of the associated variable or addresses of each element are appended to its symbol.

Thus Figure 1.6 shows how the ladder diagram of Figure 1.5a would appear using

(a) Mitsubishi,

(b) Siemens,

(c) Allen-Bradley,

(d) Telemecanique notations for the addresses.

Thus, Figure 1.6a indicates that this rung of the ladder program has an input from address X400 and an output to address Y430. When wiring up the inputs and outputs to the PLC, the relevant ones must be connected to the input and output terminals with these addresses.

PLC Symbols Notation

Also Read: Why we use Normally Closed for  Stop Button

If you liked this article, then 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:

  • Equivalent Logic Gates using PLC Ladder Diagrams
  • Instrumentation Loop Diagrams
  • Ladder Diagrams
  • PLC Multiple Outputs Configuration
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

Which Connection is Best for PLC? – Sinking or Sourcing
What is the OPC Server?
Bread Oven Control in Auto and Manual Modes PLC Program
What is a Tower Lamp? – Light Tower in Industrial Automation
PLC Timer Application in Security Camera Recording
PLC Packing Machine Control System Program in XG5000
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

Use of Regions in SCL Language
LS Electric PLC Program Example: Clothes Washing System
Speed Control of Pneumatic Cylinder (Explanation with PLC)
What is the DDE Protocol?
User Defined Data Types (UDT) – Purpose, Need, Tutorial
How to Download GX Works? Mitsubishi PLC Software
Functions of SCADA
PLC Programming for Traffic Barrier Control

Keep Learning

relay-safety-in-plc

How to Reduce Relay Noise in PLC Systems?

Pneumatic Circuit Design Using PLC - 2

PLC Pneumatic Circuit Control

PLC Programming for Level Switches

PLC Programming using Level Switches

PLC Questions & Answers

Programmable Logic Controller Questions and Answers

Relay Wiring

Animation of Electromagnetic Relay

Architecture of Allen Bradley PLC

Architecture of Allen Bradley PLC

PLC Programming Example on Bottle Line Control

PLC Programming Example on Bottle Line Control

Simple PLC example Hardware configurations

Muting Functions of Safety Control Circuits – PLC Example

Learn More

Compressor IP Case Discharge Temperature Gradually Increases

Compressor Anti-Surge Control near-miss incident

thermocouple types

What is a Thermocouple ?

Control Systems Questions & Answers

Control Systems Objective Questions & Answers – Set 2

Control Valve Parts

Basic Parts of Control Valves

Steam Eductor Question

A Series of False Pressure Alarms

Instrumentation Colleges in United States

Colleges to Study Instrumentation Engineering in United States

Allen Bradley SLC 500 PLC Programming

Control Valves Basic Theory

Control Valves Theory

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?