+ All Categories
Home > Documents > Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and...

Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and...

Date post: 12-Jan-2016
Category:
Upload: oswald-jenkins
View: 217 times
Download: 0 times
Share this document with a friend
34
Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they work. In the simplest form, if you want a light to come on, then you press a switch. Of course, it gets more complicated than that. Most technological systems involve making more complicated decisions: for example, sorting out bottles into different sizes, deciding whether a room has a burglar in it or not, or knowing when to turn a central heating system on or off.
Transcript
Page 1: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Logic

Making decisions

Although it may not always seem like it, electronics and electronic systems are very logical in the way that they work. In the simplest form, if you want a light to come on, then you press a switch. Of course, it gets more complicated than that. Most technological systems involve making more complicated decisions: for example, sorting out bottles into different sizes, deciding whether a room has a burglar in it or not, or knowing when to turn a central heating system on or off.

Page 2: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Logic Gates

 Logic gates are very useful in dealing with and processing a combination of different inputs. This switching logic can be applied to electrical switches and sensors, pneumatic valves or hydraulic systems. Switching logic uses logic gates to perform decisions. In previous work you have already seen NOT, AND and OR logic gates.

  NOTA Z

ANDAB Z

ORAB Z

Page 3: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Integrated Circuits

Although logic gates have electronic symbols, they are not discrete components: they are contained in integrated circuits. A typical example is the TTL7400 IC shown below.  

Your data book is useful tool to help identify Ics. Have a look now!

Page 4: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Nand Logic Gate

A B AND NAND

0 0

0 1

1 0

1 1

Construct the circuit shown using Croc Clips and then complete the Truth Table.

Page 5: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

NOR Logic Gate

A

BZ

A B OR NOR

0 0

0 1

1 0

1 1

Construct the circuit shown using Croc Clips and then complete the Truth Table.

Page 6: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Boolean Expressions

Each logic gate has a corresponding Boolean mathematical formula or expression. The use of these expressions saves us having to draw symbol diagrams over and over again.

The name Boolean is taken from an English mathematician, George Boole, who founded symbolic logic in the nineteenth century

OR

AND

NAND

NOR

NOTZ = A

Z = A.B

Z = A+B

Z = A.B

Z = A+B

Page 7: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Building up a Truth Table

Say we have 3 inputs to a logic system, using powers of 2 we can calculate the number of possible combinations of input to the circuit as follows,

No. of combinations = 23 = 8

A B C

0 0 0

0 0 1

0 1 0

0 1 1

1 0 0

1 0 1

1 1 0

1 1 1

Decimal equivalent 4 2 1

Page 8: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Combinational Logic

PowerConnection

PushSwitch

ANDGate

ORGate

Inverter

LightSensor

PressurePad

TransducerDriver

BulbUnit

So far in this unit of work we have only looked at simple logic systems on their own. In reality, most logic systems use a combination of different types of logic gates in one system. This type of logic control is known as combinational logic.

BUZZER

PRESS

LIGHTSENSOR

UREPAD

SWITCH

Questions1. What is this system designed for?2. What is the purpose of the AND gate?3. Why is the inverter (NOT gate) included?

Page 9: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Worked Example

A

B

C

D

Z

A B C D Z

0 0 0 0

0 0 1 0

0 1 0 0

0 1 1 0

1 0 0 0

1 0 1 0

1 1 0 1

1 1 1 1

Draw up the truth table and fill up to point D

Page 10: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Worked Example

A

B

C

D

Z

Draw up the results for point Z. (This is the output from the OR gate, being fed by output D and input C only.)

A B C D Z

0 0 0 0 0

0 0 1 0 1

0 1 0 0 0

0 1 1 0 1

1 0 0 0 0

1 0 1 0 1

1 1 0 1 1

1 1 1 1 1

Page 11: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pupil Assignment

Draw up a truth table for each of the following logic systems.

Page 12: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005Logic Diagrams from T. Tables

Z = A AND NOT B

A

BA B.B

Z = A.B

A B Z

0 0 0

0 1 0

1 0 1

1 1 0

The truth table below shows two inputs, A and B, and one output, Z.

The output Z is at logic 1 in the third row down, and we can see that for this to happen A must be at logic 1 and B must be at logic 0. In other words

Z = A . B

Page 13: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Worked Example

Z = A . B . C

Z = A . B . C

A B C Z

0 0 0 0

0 0 1 0

0 1 0 0

0 1 1 1

1 0 0 0

1 0 1 0

1 1 0 1

1 1 1 0

Copy down the truth table into your workbook.

Your teacher will work through the solution with you.

Page 14: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pupil Assignments

A

0

0

1

1

B

0

1

0

1

Z

0

1

0

0

A

0

0

1

1

B

0

1

0

1

Z

1

0

1

0

A

0

0

0

0

1

1

1

1

B

0

0

1

1

0

0

1

1

Z

0

0

0

0

0

1

0

1

C

0

1

0

1

0

1

0

1

A

0

0

0

0

1

1

1

1

B

0

0

1

1

0

0

1

1

Z

0

1

0

0

0

1

0

0

C

0

1

0

1

0

1

0

1

A

0

0

0

0

1

1

1

1

B

0

0

1

1

0

0

1

1

Z

1

0

0

1

0

0

0

1

C

0

1

0

1

0

1

0

1

A

0

0

1

1

B

0

1

0

1

Z

0

1

1

0

(d) (e) (f)

(a) (b) ( ) c Copy down the truth table, then draw the logic diagrams for each of the following truth tables.

Page 15: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005Logic Diagrams from a Spec

Worked example

A burglar alarm system is to sound if a master switch is on and either a light beam is broken or a pressure pad is stood on.

Draw a logic diagram and a truth table for this system.

Read the specification carefully. You should notice that it has three inputs. These are:a master switch (M)a light sensor (L), anda pressure pad (P).

It has one output, an alarm bell (B).

The bell should go to logic 1 if the master switch is at 1 and either the light beam goes to logic 0 or the pressure pad goes to logic 1. This can be written in Boolean as:

B = M . ( L + P )

Page 16: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005Logic Diagrams from a Spec

M L P B

0 0 0 0

0 0 1 0

0 1 0 0

0 1 1 0

1 0 0 1

1 0 1 1

1 1 0 0

1 1 1 1

M

P

L

B

L

The truth table for this system is shown below. Again, all you have to do is read the specification carefully and then read across each row, one at a time, and decide whether the bell should be ringing or not.

Page 17: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pupil Problems

1) A house doorbell is to ring if a push button at the front door, a push button at the back door or both buttons are operated. Draw a logic diagram and write a Boolean equation.

2) A lift motor is to start only when by closing the door, a switch is actuated and a passenger has pressed a button. Prepare a truth table, a logic diagram and a Boolean equation for this system.

3) The driver of a dustcart is to be able to operate the loading claw by pressing a button, but only when the senior loader at the rear of the cart has pressed a button to give the ‘all clear’. Draw a logic diagram and write a Boolean equation for this system.

4) An automatic central heating system is to heat the radiators (R) if the mains switch (M) is on, the timing control switch (T) is closed and the override button (O) is not selected. Draw a logic diagram, truth table and Boolean statement for this system.

Page 18: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pupil Problems

5) A drill is to operate if an isolator is closed, a guard is in place (closing a micro switch), either ‘HI’ or ‘LOW’ speed is selected and a foot pedal is operated. Draw a suitable logic diagram for this system. Write the Boolean Expression.

6) A large hall has three temperature sensors. A logic system is to operate the radiator when any two of the temperature sensors fall below a preset level. Draw up a truth table for this system and draw a logic diagram.

7) A burglar alarm will operate if the mains switch is on and either an electronic beam is broken, a pressure pad is stood on or a window is opened. Draw a logic diagram for this system.

Page 19: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

SOLUTIONS

1)

2)

3)

Page 20: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

SOLUTIONS

4)(O.T).M = R

Page 21: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

SOLUTIONS

5)I

G

H

L

FP

Page 22: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

SOLUTIONS

6) S1

S2

S3

Page 23: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

SOLUTIONS

M

EB

PB

W

7)

Page 24: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005Logic Gate Integrated Circuits

Integrated circuits consist of plastic cases filled with electronic circuitry. There are many resistors, transistors and other components packed into the chips. There are literally thousands of ICs on the market, all designed to do different jobs – logic gates, amplifiers, timers, etc

Page 25: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

TTL Integrated Circuits

There are two main types of Integrated Circuit, (IC)

TTL (Transistor - Transistor Logic)

TTL Advantages - Very fast switching speed.

- Unused pins can be left to float, unattached.

TTL Disadvantages - Low fan out (number of subsequent gates it can drive).

- Requires a stabilised voltage supply, (5V).

Page 26: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

CMOS Integrated Circuits

CMOS (Complementary Metal Oxide Semiconductor)

CMOS Advantages - High fan out (number of subsequent gates it can drive).

- Works on a wide supply voltage, (5 – 15V)

CMOS Disadvantages - Slower response / switching time.

- Unused pins must be tied to supply rails.

Page 27: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

TTL Integrated Circuits

In our work we will only consider TTL. However, you need to remember the advantages / disadvantages of each type.

All TTL chips have a four-digit code number, which always starts with 74. For example, a 7400 is a quad two-input NAND chip.

Although the chip contains complex circuitry, the internal wiring can be shown as simple logic circuits with the inputs and outputs of each logic gate shown. This is called a pin-out diagram. Your Data book lists the most common IC’s14 13 12 11 10 9 8

1 2 3 4 5 6 7

+Vcc

Gnd(0V)

Pin 14 is connected to the 5-volt stable supply and pin 7 to 0 volts

Page 28: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Prototype Board

LED

74 00

5 vo lts

0 vo lts

220R

Prototype board is used to build prototype circuits.

It is much better to test a circuit on prototype board before mass producing the circuit.

Why do you think this might be?

Page 29: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pin Out Diagrams

ICs are impossible to use without the manufacturer’s data sheets to show what facilities are available on the chip and how the pins are to be connected.

These data sheets contain pin-out diagrams. A pin-out diagram is a graphical layout of the chip and its contents.

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

7404 7400

7421 7420

7427 7432

Page 30: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pin Out Diagrams

The description of each pin-out diagram gives details of the chip.

For example, a ‘dual four-input NOR’ means the chip has two (dual) NOR gates on it, each having four inputs.

A ‘quad two-input AND’ means the chip has four AND gates, each gate having two inputs.

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

21 3 4 5 6 7

14 13 12 11 10 9 8

+Vcc

G nd(0V)

7404 7400

7421 7420

7427 7432

Page 31: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005Pin-out and wiring diagrams

Your teacher will show you how to convert this logic circuit into a pin out diagram

Page 32: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pupil Assignment

INPUT A

INPUT BOUTPUT

A

A

Z

Z

B

B

AZ

B

Draw a pin out diagram for each of the following combinational logic circuits.

Page 33: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Pupil Assignment

A

B

C

A

A

B

B

C

Z

Z

Z

Copy each of the shown logic

diagrams into your workbook.

Construct a truth table for each.

Construct a Boolean equation for each.

Draw a pin out diagram for each.

Simulate using Croc Clips to confirm your truth table.

Page 34: Gary Plimer 2005 Logic Making decisions Although it may not always seem like it, electronics and electronic systems are very logical in the way that they.

Gary Plimer 2005

Test Equipment

PULS

E

LOHI

RUBB

ISH

RUBB

ISH

When trying to establish logic levels within a complex system or to monitor a logic output without using an LED, we use a digital logic probe.

The logic probe is powered from the same supply as the logic circuit being tested and the needle point is pushed against the various pins on the IC to test their logic level. Normally the logic probe gives out a high-pitched sound and a red LED lights if the pin being tested is at logic 1. If the point tested is at logic 0, a low-pitched sound is emitted and a green LED lights.

Your teacher will allow you to test a simple circuit using the logic probe.


Recommended