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: PLC Logic Functions
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 > PLC Logic Functions

PLC Logic Functions

In PLC programming, we use different PLC Logic Functions based on basic logic gates like AND, OR, NOT, NAND, NOR, Exclusive OR, Exclusive NOR.

Last updated: November 2, 2023 2:36 pm
Editorial Staff
PLC Tutorials
6 Comments
Share
10 Min Read
SHARE

There are many control situations requiring actions to be initiated when a certain combination of logic functions conditions is realized in a PLC.

Contents
PLC Logic FunctionsPLC AND LOGICPLC OR LOGICPLC NOT LOGICPLC NAND LOGICPLC NOR LOGICPLC Exclusive OR (XOR) LOGICPLC Exclusive NOR (XNOR) LOGIC

PLC Logic Functions

Say, for an automatic drilling machine, there might be the condition that the drill motor is to be activated when the limit switches are activated that indicate the presence of the workpiece and the drill position as being at the surface of the workpiece.

Such a situation involves the AND logic function, condition A  AND  condition B having both to be realized for an output to occur. This section is a consideration of such logic functions.

PLC AND LOGIC

Figure 1.7a shows a situation where an output is not energized unless two, normally open, switches are both closed. Switch A and switch B have both to be closed, which thus gives an AND logic situation.

We can think of this as representing a control system with two inputs A and B (Figure 1.7b). Only when A and  B are both on is there an output. Thus if we use 1 to indicate an on signal and 0 to represent an off signal, then for there to be a 1 output we must have A and B both 1.

Such an operation is said to be controlled by a logic gate and the relationship between the inputs to a logic gate and the outputs is tabulated in a form known as a truth table. Thus for the AND gate we have:

PLC AND Logic

An example of an AND gate is an interlock control system for a machine tool so that it can only be operated when the safety guard is in position and the power switched on.

Figure 1.8a shows an AND gate system on a ladder diagram. The ladder diagram starts with j j, a normally open set of contacts labeled input A, to represent switch A and in series with it j j, another normally open set of contacts labeled input B, to represent switch B.

Also Read: Introduction to PLC Ladder Diagrams

The line then terminates with O to represent the output. For there to be an output, both input A and input B have to occur, i.e., input A and input B contacts have to be closed (Figure 1.8b). In general:

On a ladder diagram contacts in a horizontal rung, i.e., contacts in series, represent the logical AND operations.

PLC AND LOGIC with Ladder Diagram

PLC OR LOGIC

Figure 1.9a shows an electrical circuit where an output is energized when switch A or B, both normally open, are closed.

This describes an OR logic gate (Figure 1.9b) in that input A or input B must be on for there to be an output.

The truth table is:

PLC OR Logic

Figure 1.10a shows an OR logic gate system on a ladder diagram, Figure 1.10b showing an equivalent alternative way of drawing the same diagram.

The ladder diagram starts with j j, normally open contacts labeled input A, to represent switch A and in parallel with it j j, normally open contacts labeled input B, to represent switch B.

Either input A or input B have to be closed for the output to be energized

(Figure 1.10c). The line then terminates with O to represent the output. In general:

Alternative paths provided by vertical paths from the main rung of a ladder diagram, i.e., paths in parallel represent logical OR operations.

An example of an OR gate control system is a conveyor belt transporting bottled products to packaging where a deflector plate is activated to deflect bottles into a reject bin if either the weight is not within certain tolerances or there is no cap on the bottle.

PLC OR LOGIC with Ladder Diagram

PLC NOT LOGIC

Figure 1.11a shows an electrical circuit controlled by a switch that is normally closed. When there is an input to the switch, it opens and there is then no current in the circuit.

This illustrates a NOT gate in that there is an output when there is no input and no output when there is an input (Figure 1.11c). The gate is sometimes referred to as an inverter.

The truth table is:

PLC NOT Logic

Figure 11.11b shows a NOT gate system on a ladder diagram. The input A contacts are shown as being normally closed.

This is in series with the output ( ). With no input to input A, the contacts are closed and so there is an output. When there is an input to input A, it opens and there is then no output.

An example of a NOT gate control system is a light that comes on when it becomes dark, i.e., when there is no light input to the light sensor there is an output.

PLC NOT LOGIC with Ladder Diagram

PLC NAND LOGIC

Suppose we follow an AND gate with a NOT gate (Figure 1.12a). The consequence of having the NOT gate is to invert all the outputs from the AND gate.

An alternative, which gives exactly the same results, is to put a NOT gate on each input and then follow that with OR (Figure 1.12b).

The same truth table occurs, namely:

PLC NAND Logic

Both the inputs A and B have to be 0 for there to be a 1 output.

There is an output when input A and input B are not 1.

The combination of these gates is termed a NAND gate (Figure 1.13).

PLC NAND LOGIC with Ladder Diagram

An example of a NAND gate control system is a warning light that comes on if, with a machine tool, the safety guard switch has not been activated and the limit switch signaling the presence of the workpiece has not been activated.

PLC NOR LOGIC

Suppose we follow an OR gate by a NOT gate (Figure 1.14a).

The consequence of having the NOT gate is to invert the outputs of the OR gate.

An alternative, which gives exactly the same results, is to put a NOT gate on each input and then an AND gate for the resulting inverted inputs (Figure 1.14b).

The following is the resulting truth table:

PLC NOR Logic

The combination of OR and NOT gates is termed a NOR gate. There is an output when neither input A or input B is 1.

Figure 1.15 shows a ladder diagram of a NOR system.

When input A and input B are both not activated, there is a 1 output. When either X400 or X401 are 1 there is a 0 output.

PLC NOR LOGIC with Ladder Diagram

PLC Exclusive OR (XOR) LOGIC

The OR gate gives an output when either or both of the inputs are 1.

Sometimes there is, however, a need for a gate that gives an output when either of the inputs is 1 but not when both are 1, i.e., has the truth table:

PLC XOR Logic

Such a gate is called an Exclusive OR or XOR gate.

One way of obtaining such a gate is by using NOT, AND and OR gates as shown in Figure 1.16.

PLC XOR LOGIC with Ladder Diagram

Figure 1.17 shows a ladder diagram for an XOR gate system. When input A and input B are not activated then there is 0 output.

When just input A is activated, then the upper branch results in the output being 1. When just input B is activated, then the lower branch results in the output being 1.

When both input A and input B are activated, there is no output.

In this example of a logic gate, input A and input B have two sets of contacts in the circuits, one set being normally open and the other normally closed.

With PLC programming, each input may have as many sets of contacts as necessary.

PLC XOR LOGIC with Ladder Program

PLC Exclusive NOR (XNOR) LOGIC

EX-NOR Gate Logic Animation

Also Read: Normally Closed Contact 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:

  • Engineering Logic Diagrams
  • PLC Tutorial Course
  • SCADA Tutorial Course
  • Digital Electronics Objective Questions
  • SCR Switching Characteristics
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

Allen Bradley PLC Subroutines
Best Practices of PLC Wiring – Programmable Logic Controller
Siemens PLC Organization Blocks (OB)
Create Ladder Diagram from Boolean Logic
PLC Programming to Control Lights in a Sequence
What is a Watchdog Timer in PLC?
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
6 Comments
  • Sandeep says:
    July 13, 2016 at 3:59 pm

    Send me plz all PLC programming from basic

    Reply
  • Ramesh Vanga says:
    May 28, 2019 at 6:07 pm

    Send me please all PLC programming

    Reply
    • Thara bhai joginder says:
      August 8, 2022 at 4:07 pm

      If you want all the ladder logic programs, search about the gates in plc you will get the whole programming and implementation of all gates.

      Reply
  • Shivakumar G O says:
    June 27, 2019 at 1:12 pm

    Send all plc programs

    Reply
  • Willem says:
    April 30, 2022 at 8:42 pm

    What is LOA in PLC system

    Reply
  • Levi Marshall says:
    May 22, 2023 at 4:45 pm

    i think there is a mistake in Nand and Nor ladder logic..pls check it..

    Reply

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

How to Train Your Maintenance Team for Industrial Automation Systems?
PLC Programming Example with Pushbutton and Motor
PLC based Metro Automation Project
Communication between InTouch Scada and Allen Bradley PLC
Difference Between Industrial Computer (IPC) and Normal Computer (PC)
Compare Online and Offline PLC Programs
Hardwired I/O and Serial I/O – Differences Explained
Difference between PLC and HMI

Keep Learning

Top Non-PLC Certification Courses for Automation Professionals

Top Non-PLC Certification Courses for Automation Professionals

Ladder Diagram Example using Memory Bits and Set Coils

Ladder Diagram Example using Memory Bits and Set Coils

PLC to PLC Communication using S7 Connection

PLC to PLC Communication using S7 Connection PUT & GET Instructions

Siemens PLC Device and Network

Difference Between PLCSIM and PLCSIM Advanced? – Siemens PLC

Programmable Logic Controller Quiz

Programmable Logic Controller Quiz

PLC Example on Switch Program with Timers

PLC Example on Switch Program with Timers

Siemens PCS 7

What is PCS 7?

Star-Delta PLC programming with 1 button

How to Program a Star-Delta System using 1 Button in PLC?

Learn More

Fiber Optic Cable Construction

Fiber Optic Cable Construction

Diaphragm Seal Material Selection

Diaphragm Seal Material Selection

Difference Between Single-stage and Multi-stage Compressor

Difference Between Single-stage and Multi-stage Compressor

Flow Switch Principle

In-Line Flow Switch Working Principle and Animation

PLC Program for Fishpond Water Level Monitoring System

PLC Program for Artificial Fishpond Water Level Monitoring System

Electrical Machines Questions and Answers

Synchronous Machines Efficiency Questions

HART Communication Problems

HART Communication Problems

Wireless Electric Vehicle Charging

Wireless Electric Vehicle Charging

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?