Introduction to Sensors and Actuators

Slides:



Advertisements
Similar presentations
Transducers PHYS3360/AEP3630 Lecture 33.
Advertisements

Instructor: Lichuan Gui
MECHATRONICS SENSORS.
INTRODUCTION TO ROBOTICS INTRODUCTION TO ROBOTICS Part 4: Sensors Robotics and Automation Copyright © Texas Education Agency, All rights reserved.
Data Acquisition Risanuri Hidayat.
Khaled A. Al-Utaibi  Digital Vs Analog Signals  Converting an Analog Signal to a Digital One  Reading Analog Sensors with the.
Lecture 9: D/A and A/D Converters
Characteristics of Instruments P M V Subbarao Professor Mechanical Engineering Department A Step Towards Design of Instruments….
Unit 4 Sensors and Actuators
Applied Sensor Technology. Outline Introduction Examples of Sensors Basic readout electronics Semiconductor detectors.
Introduction AD620 Instrumentation Amplifier
Instrumentation System  A Measuring system is required to compare a quantity with a standard or to provide an output that can be related to the quantity.
SENSORS AND TRANSDUCERS
Performance Characteristics of Sensors and Actuators
Classification of Instruments :
Sensors Introduction Describing Sensor Performance Temperature Sensors
Introduction Definitions, classifications, general requirements.
Topic 1 different attributes that characterize sensors ETEC 6405.
Basics of Measurement and Instrumentation
DATA ACQUISITION Today’s Topics Define DAQ and DAQ systems Signals (digital and analogue types) Transducers Signal Conditioning - Importance of grounding.
Sensor (application to measurement)
Transducers/Sensors Transducer/sensor converts a non- electrical quantity, measurand, into a related electrical output signal Ideally there is a linear.
Performance characteristics for measurement and instrumentation system
Part 1: Basic Principle of Measurements
EKT 451/4 SEM 2 Chapter 6 SENSOR & TRANSDUCER SHAIFUL NIZAM MOHYAR
Biomedical Electrodes, Sensors, and Transducers
Lecture I Sensors.
INTRODUCTION TO ROBOTICS INTRODUCTION TO ROBOTICS Part 4: Sensors Robotics and Automation Copyright © Texas Education Agency, All rights reserved.
Module 1: Measurements & Error Analysis Measurement usually takes one of the following forms especially in industries: Physical dimension of an object.
Sensors- Terminology Transducer is a device which transforms energy from one type to another, even if both energy types are in the same domain. Typical.
Definition of a sensor Def. 1. (Oxford dictionary)
Transducers.
ELECTRONIC INSTRUMENTATION
EKT 451 CHAPTER 6 Sensor & Transducers.
1 Transducers EKT 451 CHAPTER 6. 2 Definition of a Transducers   Transducer is any device that converts energy in one form to energy in another.  
1 TRANSDUCER. 2 Contents To understand the basic concept of Transducer To learn about Block diagram of transducer Different Applications of transducers.
Electric Pressure Transducer
ECA1212 Introduction to Electrical & Electronics Engineering Chapter 10: Digital Systems by Muhazam Mustapha, December 2011.
Components of Mechatronic Systems AUE 425 Week 2 Kerem ALTUN October 3, 2016.
CNC FEED DRIVES.
Instrumentation & Measurement
TRANSDUCERS PRESENTATION BY: Dr.Mohammed Abdulrazzaq
Get Your Project Started with Arduino
INTRODUCTION TO ELECTRONIC INSTRUMENTATION
ELECTRICAL MEASURMENT AND INSTRUMENTS
MECHATRONICS Technologies and developed products will be incorporating electronics more and more into mechanisms, intimately and organically, and making.
Electronic Instrumentation Lectrurer Touseef Yaqoob
Definitions, classifications, general requirements
CHAPTER 8 Sensors and Transducers.
Robotics Sensors and Vision
CHHATRAPATI SHIVAJI INSTITUTE
Mechanical Measurements and Metrology
Characteristics of measurement systems
Digital Acquisition of Analog Signals – A Practical Guide
INSTRUMENTASI INDUSTRI
Transducers Gordon Shering November 18 By Gordon Shering.
On Subject Instrumentation Electrical Engg 4th Sem
BASICS OF MEASUREMENT AND INSTRUMENTATION
Control System Instrumentation
Mechanical Measurements and Metrology
Instrumentation & Measurement (ME342)
Digital Control Systems Waseem Gulsher
Arduino : Introduction & Programming
Transducers Measurement/Information Processing System or
Sensors and actuators Sensors Resistive sensors
Definitions, classifications, general requirements
Measurements & Error Analysis
Measurements and Instrumentation
Introduction to Motor Drives
Basic Steps in Development of Instruments
Presentation transcript:

Introduction to Sensors and Actuators

Sensors Sensor is a device that when exposed to a physical phenomenon (temperature, displacement, force etc) produces a proportional output signal (electrical, mechanical, magnetic etc) The term transducer is often used synonymously with sensors

Difference between sensors and transducers Sensor is a device that responds to a change in the physical phenomenon Transducer is a device that converts one form of energy into another form of energy Sensors are transducers when they sense one form of energy input and output in a different form of energy Eg: a thermocouple responds to a temperature change (thermal energy) and outputs a proportional change in electromotive force (electrical energy)

Classification Sensors are classified by their measurement objectives Sensors can also be classified as passive or active Passive sensors, the power required to produce the output is provided by the sensed physical phenomenon itself (thermometer) Active sensors require external power source (Strain gage)

Classification Sensors are classified as analog or digital based on the type of output signal Analog Sensor Analog sensors produce continuous signals that are proportional to the sensed parameter It requires analog to digital conversion before feeding to the digital controller Digital Sensor Digital sensors produce digital outputs that can be directly interfaced with the digital controller

Principle of Operation Linear and Rotational Sensors Acceleration Sensors Force, Torque, and Pressure Sensor Flow Sensors Temperature Sensors Proximity Sensors Light Sensors Smart Material Sensors Micro and Nanosensors

Selection Criteria Response time Range Bandwidth Resolution Accuracy Resonance Operating Temperature Deadband Signal to Noise ratio Range Resolution Accuracy Precision Sensitivity Zero offset Linearity Zero Drift

Range Difference between the maximum and minimum value of the sensed parameter Resolution The smallest change the sensor can differentiate. For digital sensors, it is related to number of bits used For analog sensors, it is limited by low-level electrical noise Sensitivity Ratio of change in output to a unit change of the input For digital sensors, sensitivity is closely related to resolution For analog sensors, sensitivity is the output slope vs. input line

Accuracy Precision Zero offset Linearity Difference between the measured value and the true value Precision Ability to reproduce repeatedly with the given accuracy Zero offset Non zero value output for no input Linearity Percentage of deviation from the best fit linear calibration curve

Zero drift Response Time Bandwidth Resonance The departure of the output from zero value over period of time for no input Response Time The time lag between the input and output Bandwidth Frequency at which output magnitude drops by 3 dB Resonance Frequency at which the output magnitude peak occurs

Operating temperature The range in which the sensor performs as specified Deadband Range of input for which there is no output Signal to noise ratio Ratio between the magnitude of the signal and the noise at the output

Interfacing Sensors with Arduino Microcontroller   Attach one leg of LDR to 5V and another leg attach 110K register with that leg of LDR connected to A0 Attach another leg of register to the ground

const int sensorMin = 0;      // sensor minimum, discovered through experiment const int sensorMax = 600;    // sensor maximum, discovered through experiment void setup() {   // initialize serial communication:   Serial.begin(9600);   } void loop() {   // read the sensor:   int sensorReading = analogRead(A0);   // map the sensor range to a range of four options:   int range = map(sensorReading, sensorMin, sensorMax, 0, 3);   

// do something different depending on the range value:   switch (range) {   case 0:    // your hand is on the sensor     Serial.println("dark");     break;   case 1:    // your hand is close to the sensor     Serial.println("dim");     break;   case 2:    // your hand is a few inches from the sensor     Serial.println("medium");     break;   case 3:    // your hand is nowhere near the sensor     Serial.println("bright");     break;   }    delay(1);        // delay in between reads for stability }

Role of Sensors in IoT system While the IoT represents the convergence of advances in miniaturization, wireless connectivity, increased data storage capacity and batteries, the IoT wouldn’t be possible without sensors Sensors detect and measure changes in position, temperature, light, etc. and they are necessary to turn billions of objects into data-generating “things” that can report on their status, and in some cases, interact with their environment