CONTROL TECHNOLOGY
   Lesson Four: Decision Tables
LESSON AIMS
• ALL: Know what a decision table is.
• MOST: Produce a Flowol program that
  controls a simulated environment.
• SOME: Explain the advantages of computer
  control over human.
EXAMPLE OF A STREET LIGHT FLOWCHART:

                                               Start



                                                                            Switch output 3
                                                                      YES          on
                                 Is light less than 50?


                                          NO

                                          Switch output 3
                                                off




•   ALL: Know what a decision table is.
•   MOST: Produce a Flowol program that controls a simulated environment.
•   SOME: Explain the advantages of computer control over human.
DECISION TABLES

 A decision table is used to make it clear what
 the different options are for a system that has
 sensors:
           Purpose of the system: open the door when people are present

                                                                             Device
What the sensor says?                                                        Automatic Door
Person near                                                                  Door Open
N o person near                                                              Door Close




 •   ALL: Know what a decision table is.
 •   MOST: Produce a Flowol program that controls a simulated environment.
 •   SOME: Explain the advantages of computer control over human.
GREEN HOUSE MIMIC
AUTOMATIC SYSTEMS
                                                                            Can you work
                                                                            out what are the
                                                                            different inputs
                                                                            and outputs in
                                                                            this mimic?




•   ALL: Know what a decision table is.
•   MOST: Produce a Flowol program that controls a simulated environment.
•   SOME: Explain the advantages of computer control over human.
GREEN HOUSE MIMIC:
AUTOMATIC SYSTEMS:


Inputs:                                                    Outputs:

Moisture                                                   Heater
Temp                                                       Light
Sun                                                        Window
                                                           Sprinkler

•   ALL: Know what a decision table is.
•   MOST: Produce a Flowol program that controls a simulated environment.
•   SOME: Explain the advantages of computer control over human.
GREEN HOUSE MIMIC:
     DECISION TABLES:
If the value of the sun is greater than 20;
the what should happen to the sprinkler
output?
                      Purpose of the system: Water the pants if too hot

                                                                             Device
What the sensor says?                                                        Sprinkler
Light Level > 20                                                             ON OFF DO NOTHING
Light Level < 20                                                             ON OFF DO NOTHING



 •   ALL: Know what a decision table is.
                                                                                         Remember:
 •   MOST: Produce a Flowol program that controls a simulated environment.
                                                                                      > means more than
 •   SOME: Explain the advantages of computer control over human.
                                                                                      < means less than
GREENHOUSE MIMIC


    Now go on to Flowol and open up
    the greenhouse mimic; can you
    work out how to create a program to
    make it run?



•   ALL: Know what a decision table is.
•   MOST: Produce a Flowol program that controls a simulated environment.
•   SOME: Explain the advantages of computer control over human.
GREENHOUSE MIMIC:
COMPLETED




•   ALL: Know what a decision table is.
•   MOST: Produce a Flowol program that controls a simulated environment.
•   SOME: Explain the advantages of computer control over human.
PLENARY
After completing this flowchart; what
are the advantages of using a
computer controlled system? Discuss
in pairs.
HOMEWORK
What would be the advantage of
using a human to control the
system?
 •   ALL: Know what a decision table is.
 •   MOST: Produce a Flowol program that controls a simulated environment.
 •   SOME: Explain the advantages of computer control over human.

More Related Content

PPTX
Control technolgy lesson 5
PPTX
Control technology
PPTX
Control technolgy lesson 3
PPS
Introtoedtech0
PPTX
Introduction to Flowol for Key Stage 3
PPT
Intro to engineering economy
PPT
Home OS
PPTX
Digital literacy 1 b operating systems
Control technolgy lesson 5
Control technology
Control technolgy lesson 3
Introtoedtech0
Introduction to Flowol for Key Stage 3
Intro to engineering economy
Home OS
Digital literacy 1 b operating systems

Similar to Control technolgy lesson 4 (20)

PPTX
Digital control technologies-class-presentation.pptx
PPTX
Watching Somebody Else's Computer: Cloud Native Observability
PDF
Smart homes using android
PDF
PHP, AWS, and Sleep - Hampton Roads DevFest 2016
PDF
544 Project Part 1
PPTX
BSOD Presentation
PPTX
Lesson 2 - Basics of Computers
PPT
Structure of OS ppt Structure of OsS ppt
KEY
MacBook Pro Out of the Box - Secondary Faculty
PPTX
homeos-homeos-usc-sep2012.pptx
PPTX
Operating Systems
PPTX
Operating system report
PPTX
Unit 1 introduction to computers
PPTX
Comp Project (V).pptx
PDF
What we talk about when we talk about DevOps
PPTX
Getting Schooled DerbyCon 3.0
PPTX
Embedded systems
PPTX
Control lesson 1
PPTX
BASIC COMPUTER PUBLIC HEALTH.pptx
PPTX
Masterining windows 10 resources
Digital control technologies-class-presentation.pptx
Watching Somebody Else's Computer: Cloud Native Observability
Smart homes using android
PHP, AWS, and Sleep - Hampton Roads DevFest 2016
544 Project Part 1
BSOD Presentation
Lesson 2 - Basics of Computers
Structure of OS ppt Structure of OsS ppt
MacBook Pro Out of the Box - Secondary Faculty
homeos-homeos-usc-sep2012.pptx
Operating Systems
Operating system report
Unit 1 introduction to computers
Comp Project (V).pptx
What we talk about when we talk about DevOps
Getting Schooled DerbyCon 3.0
Embedded systems
Control lesson 1
BASIC COMPUTER PUBLIC HEALTH.pptx
Masterining windows 10 resources
Ad

More from TrudieK (6)

PPT
New machine architecture
PPT
Machine architecture 2
PPT
Machine architecture 2
PPTX
Machine architecture intro
PPTX
Flow Chart Examples
PPTX
Mimics
New machine architecture
Machine architecture 2
Machine architecture 2
Machine architecture intro
Flow Chart Examples
Mimics
Ad

Control technolgy lesson 4

  • 1. CONTROL TECHNOLOGY Lesson Four: Decision Tables
  • 2. LESSON AIMS • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 3. EXAMPLE OF A STREET LIGHT FLOWCHART: Start Switch output 3 YES on Is light less than 50? NO Switch output 3 off • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 4. DECISION TABLES A decision table is used to make it clear what the different options are for a system that has sensors: Purpose of the system: open the door when people are present Device What the sensor says? Automatic Door Person near Door Open N o person near Door Close • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 5. GREEN HOUSE MIMIC AUTOMATIC SYSTEMS Can you work out what are the different inputs and outputs in this mimic? • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 6. GREEN HOUSE MIMIC: AUTOMATIC SYSTEMS: Inputs: Outputs: Moisture Heater Temp Light Sun Window Sprinkler • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 7. GREEN HOUSE MIMIC: DECISION TABLES: If the value of the sun is greater than 20; the what should happen to the sprinkler output? Purpose of the system: Water the pants if too hot Device What the sensor says? Sprinkler Light Level > 20 ON OFF DO NOTHING Light Level < 20 ON OFF DO NOTHING • ALL: Know what a decision table is. Remember: • MOST: Produce a Flowol program that controls a simulated environment. > means more than • SOME: Explain the advantages of computer control over human. < means less than
  • 8. GREENHOUSE MIMIC Now go on to Flowol and open up the greenhouse mimic; can you work out how to create a program to make it run? • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 9. GREENHOUSE MIMIC: COMPLETED • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.
  • 10. PLENARY After completing this flowchart; what are the advantages of using a computer controlled system? Discuss in pairs. HOMEWORK What would be the advantage of using a human to control the system? • ALL: Know what a decision table is. • MOST: Produce a Flowol program that controls a simulated environment. • SOME: Explain the advantages of computer control over human.

Editor's Notes

  • #2: This should be a recap on children’s previous knowledge.