Chapter 4 - Fundamentals of Logic
Chapter 4 - Fundamentals of Logic
4.1
Binary refers to the idea that many things can be thought of as existing in only one of two states.
The binary states are 1 and 0
The 1 and 0 can represent: ON or OFF Open or Closed True or False High or Low
2011, The McGraw-Hill Companies, Inc.
A logic gate is a circuit with several inputs but only one output that is activated by particular combinations of input conditions.
Logical AND
The high beam light can be turned on only when the light switch AND the high beam switch are closed. The dome light will be turned on whenever the passenger door switch OR the driver door switch is activated.
Logical OR
4.2
If all inputs are 1, the output will be 1. If any input is 0, the output will be 0.
2011, The McGraw-Hill Companies, Inc.
The OR Function
An OR gate can have any number of inputs but only one output.
The OR Function
If one or more inputs are 1, the output is 1. If all inputs are 0, the output will be 0.
2011, The McGraw-Hill Companies, Inc.
The OR Function
The OR logic gate operates similarly to control devices connected in parallel. The light will be on if switch A or switch B or both are closed.
The result of the NOT operation is always the inverse of the input, and the NOT function is, therefore, called an inverter.
2011, The McGraw-Hill Companies, Inc.
The NAND gate has the opposite outputs to the AND gate.
The exclusive-OR gate is commonly used for the comparison of two binary numbers.
2011, The McGraw-Hill Companies, Inc.
4.3
Boolean Algebra
2011, The McGraw-Hill Companies, Inc.
The mathematical study of the binary number system and logic is called Boolean algebra.
Boolean algebra is used to write combinations of logic statements that are used to solve PLC programming problems.
2011, The McGraw-Hill Companies, Inc.
Even though these instructions are programmed in a list format they implement the same logic as relay ladder logic.
2011, The McGraw-Hill Companies, Inc.
4.4
Logic gate circuit developed from the Boolean expression Y = A (BC + D).
Gates required: 1 - AND gate with input B and C 1 - OR gate with inputs BC and D 1 - AND gate with inputs A and the output from the OR gate
4.5
4.6
The term hardwired logic refers to logic control functions that are determined by the way devices are electrically interconnected.
Hardwired motor control program.
Hardwired logic is fixed and changeable only by altering the way devices are electrically interconnected.
2011, The McGraw-Hill Companies, Inc.
Programmable control is based on the basic logic functions, which are programmable and easily changed.
PLC programmed motor control program.
I/O
2011, The McGraw-Hill Companies, Inc.
A ladder logic program consists of several rungs, each of which controls an output. Each rung is a combination of input conditions (symbols) connected from left to right, with the symbol that represents the output at the far right.
2011, The McGraw-Hill Companies, Inc.
Relationship between the relay ladder schematic, the ladder logic program, and the equivalent logic gate circuit.
Two limit switches connected in series and used to control a solenoid valve.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
Two limit switches connected in parallel and used to control a solenoid valve.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
Two limit switches connected in parallel with each other and in series with a pressure switch to control a pilot light.
Program simulation of two switches in parallel and this pair in series with a switch used to an output.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
Two limit switches connected in parallel with each other and in series with two sets of flow switches (in parallel), and used to control a pilot light.
Program simulation of two switches in parallel and in series with a second pair of switches in parallel.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
Two limit switches connected in series with each other and in parallel with a third limit switch, and used to control a warning horn.
Program simulation of two switches in series and in parallel with a third switch.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
Two limit switches connected in series with each other and in parallel with two other limit switches (in series), and used to control a pilot light.
Program simulation of two switches in series and in parallel with a second pair in series.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
One limit switch connected in series with a normally closed pushbutton and used to control a solenoid valve.
Program simulation of one switch connected in series with a normally closed pushbutton.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
The output lamp of this circuit is ON only when pushbutton A or B is pressed, but not both.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
When either start button is depressed, the motor runs. Either stop button stops the motor when it is depressed.
Program
I/O
2011, The McGraw-Hill Companies, Inc.
4.7
This instruction tells the processor to perform an AND operation on B3:5 and B3:7 and to store the result in destination B3:10 when input device A is true.
2011, The McGraw-Hill Companies, Inc.
I/O
B3 Data Table
Word-level OR instruction.
This instruction ORs the data in Source A, bit by bit, with the data in Source B and stores the result at the destination address.
2011, The McGraw-Hill Companies, Inc.
I/O
B3 Data Table
Data from input I:1.0 are compared, bit by bit, with data from input I:3.0. Any mismatches energize the corresponding bit in word O:4.0.
2011, The McGraw-Hill Companies, Inc.
I:1
I:3
O:4
Input Table
The bit pattern in B3:10 is the result of the instruction being true and is the inverse of the bit pattern in B3:9.
2011, The McGraw-Hill Companies, Inc.