Open and Closed Loops Standard Grade Computing Studies.

Slides:



Advertisements
Similar presentations
Sensing and Control.
Advertisements

Control Systems The elements of a control system
IGCSE ICT Control Systems.
Applications of PICs Advantages/disadvantages Digital and analogue control Loops, sub-routines, scanning, counting and feedback Interrupts Problems with.
Microprocessors Typical microprocessor controlled devices: Camera, mobile phone, stereo, mp3 player, electronic toys… High-level microprocessor controlled.
In this presentation you will:
01/05/2015 Input-Output-Process Demo Automatic Streetlight System.
Automated Systems Standard Grade What Is An Automated System? A system in which computers are used to control machines and equipment For example: –Traffic.
Standard Grade Automated Systems and Industrial Applications Automated Systems and Industrial Applications Standard Grade.
Introduction to Sensors
Programmable Logic Controllers Mary Holleboom ENGR 315 Dec. 5, 2001.
Automated Systems Lesson 3: Getting the Robot to do work.
Actuators & Their Applications
AS ICT.  Have an understanding of how organizations use ICT.  Be able to describe a number of uses, giving the hardware and software requirements. 
Monitoring, measurement and control technology. Definition of data logging Data logging – collecting data automatically from sensors over a certain period.
Automated Systems.
Applied Control Systems Technology. © t 4 Galway Education Centre 2 Applied Control Systems Inputs Push switches L.D.R. Microphone Tilt switch Infrared.
COMPUTER CONTROL Year 11. Lesson 1 Introduction to Computer Control.
// This is a simple control program Move forward 200 units Turn right 90 Move forward 100 units Turn right 45 Move forward 100 Turn right 45 Move forward.
Air Conditioning Heating Refrigeration
Forging new generations of engineers
HL Sample Question Applied Control Systems Underlying Principles.
Computer are used to control the operation of many and everyday objects. The instructions contained in the computer program send signals out to computer.
HardwareHardware F451 - AS Computing. Hardware and Software Definition Hardware –The physical components that make up a computer system. Includes all.
Overview What is Arduino? What is it used for? How to get started Demonstration Questions are welcome at any time.
Measurement and Control. Control Systems A control system usually consists of a processor, a control program, interfaces and a device under the processor's.
6/3/2016SME3252: Mechatronics Lecture 1 1 Introduction to Mechatronics Lecture 1.
Computer Data Logging and Control  Lesson Objective: Understand the main terminology based about Data Logging and Models  Learning Outcome: Complete.
Computer Control.
AI and Robotics. Look at video clip and think about Input – Camera – Touch – Proximity – Wi Fi input Output parts – Motors/Legs/Wheels Sensors – Impact.
Computer Control Using computers to control things.
Prepared by: Engr. Qurban Ali Memon 11ES (SEC- 1 & 2)
Computing system Lesson Objective: Understand what is meant by a ‘computer system’ Learning Outcome: Define the key words and give a brief explanation.
CISSP Common Body of Knowledge Review by Alfred Ouyang is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
Bar code scanner Department of Computer Engineering, M.S.P.V.L. Polytechnic College, Pavoorchatram.
W e A re L earning T o  Understand the term control and program  To understand the basic symbols used in Flowol.
Control Output Devices Hyper linking. Back to Input Devices Back to Input Devices What Are Control Output Devices? These are devices that are associated.
Learning Objectives Today we will Learn: What is meant by a Control System Examples of Control systems How control systems work.
Casne.ncl.ac.uk Taking care of the CrumbleBot Please do NOT stress the robot's motors 1.Do NOT push the robot 2.Do NOT hold the.
ICTWays workshop “Creativity and imagination in the classroom: Arduino and its application samples” LLP PT-COMENIUS-CNW
Learning Objectives Today we will Learn:
Computer Control and Monitoring Today we will look at: What we mean by computer control Examples of computer control Sensors – analogue and digital Sampling.
GCSE COMPUTER SCIENCE Computers
Control Systems IB Computer Science.
Data Logging & Control Systems
You have 5 minutes to look over your table of sensor and outputs ready for a spot check on the different symbols Start Timer 5 mins
Engineering Science Systems and Control.
Digital electronics and logic gates
Instrumentation and Control Systems
Control GCSE ICT.
Raspberry Pi: External Inputs & Outputs
Control GCSE ICT.
Applied Control Systems Underlying Principles
Programming – Remote Control Statements
Digital and Analogue Sensing
Input-Output-Process Demo
Input > Process > Output
Input-Output-Process Demo
Input-Output-Process Demo
Systems and Control.
Computing Introduction.
An Introduction to VEX IQ Programming with Modkit
Digital and Analogue Sensing
How electronic systems work using the Systems approach.
Digital Electronics and Logic Circuit
Systems and Control.
Presentation transcript:

Open and Closed Loops Standard Grade Computing Studies

Sensors Infra Red Heat Pressure CLOSED LOOPS (=sensors + feedback) The devices at the other end are OUTPUT DEVICES System Alarms Lights Motors System Sensors are INPUT DEVICES

Sensors Infra Red Heat Pressure CLOSED LOOPS (=sensors + feedback)

Sensors Infra Red Heat Pressure feedback CLOSED LOOPS (=sensors + feedback)

Sensors Infra Red Heat Pressure feedback Microprocessor: (decision) CLOSED LOOPS (=sensors + feedback)

Sensors Infra Red Heat Pressure feedback Microprocessor: (decision) Control Signal

Sensors Infra Red Heat Pressure feedback Microprocessor: (decision) Control Signal

Sensors feedback

Sensors feedback Microprocessor: (decision) In box at side of traffic lights

Sensors feedback Microprocessor: (decision) In box at side of traffic lights

Sensors feedback Microprocessor: (decision) In box at side of traffic lights Control signal changes lights Driver sees signal to make CLOSED LOOP

End Effector (Gives adaptability) Degrees of freedom 10// This is a simple program 20REPEAT 30UNTIL INPUT 2 IS ON 40SWITCH OUTPUT 3 ON 50REPEAT 60UNTIL INPUT 1 IS ON 70SWITCH OUTPUT 3 OFF 80END Control Program (to run the robot) Stored in ROM

10// This is a simple program 20REPEAT 30UNTIL INPUT 2 IS ON 40SWITCH OUTPUT 3 ON 50REPEAT 60UNTIL INPUT 1 IS ON 70SWITCH OUTPUT 3 OFF 80END Control Program (to run the robot) Stored in ROM Translated into machine cod A system which has its software built into a micro processor is an example of embedded technology

Digital signals - pulses Analogue signals - continuous The analogue signals of the real world have to be changed into digital signals of the computers world

10// This is a simple program 20REPEAT 30UNTIL INPUT 2 IS ON 40SWITCH OUTPUT 3 ON 50REPEAT 60UNTIL INPUT 1 IS ON 70SWITCH OUTPUT 3 OFF 80END Different ways to program machines 1 2 3