Detector Building C 2020 SD Regional

Slides:



Advertisements
Similar presentations
Objectives Regression analysis Sensor signal processing.
Advertisements

What is Arduino?  Arduino is a ATMEL 168 micro-controller kit designed specially for small projects  User friendly IDE(Integrated Development Environment)
GST FIRE ALARM SYSTEM INTERNATIONAL BUSINESS DEPARTMENT , GST BEIJING
Temperature Sensing Integrated Circuit PROs: CONs: Most Linear
Laboratory 5: Introduction to LabVIEW. Overview Objectives Background Materials Procedure Report / Presentation Closing.
Chapter One Characteristics of Instrumentation بسم الله الرحمن الرحيم.
Colorado Space Grant Consortium Gateway To Space ASEN 1400 / ASTR 2500 Class #12 Gateway To Space ASEN 1400 / ASTR 2500 Class #12 T-58.
Graphic Equalizer Table By Jose Lerma. Main Idea The main idea of this table is to display the frequencies of any sound or audio input, either by microphone.
ENGR 1181 First-Year Engineering Program College of Engineering Engineering Education Innovation Center First-Year Engineering Program Solar Energy Meter.
MSP 430 Project ECE 300 Spring 2004 William S. McLemore Ruben D. Briano Cheng-Han Tsai.
Introduction to the Arduino
Topic 1 modelling of sensors systems ETEC Calibration methods We have a RTD sensing the temperature. The integer of the sensor inside the PLC is.
Group Project: Water Turbidity Meter Group B. Brief overview Project Statement: “Design and construct a turbidity measuring and displaying device based.
Beath High School - Int 1 Physics1 Intermediate 1 Physics Electronics Glossary AND gate to device digital signals to inverter LDR to logic circuit logic.
REVERSE ENGINEERING ANALYSIS OF THE KILL-A-WATT Jason Sweeney Ryan Gittens Sean Kolanowski.
Welcome to Week 4 at the Summer Computer Club Raspberry Pi (contd)
BME 353 – BIOMEDICAL MEASUREMENTS AND INSTRUMENTATION MEASUREMENT PRINCIPLES.
Temperature Measurement with Thermistors Portland State University Department of Mechanical Engineering ME 121: Engineering Problem Solving.
AGROFARM WEATHER MONITOR USING LabVIEW. INTRODUCTION Innovation in agriculture field Implementing instrumentation tech. in agricultural field The quantity.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
MADEIRA Valencia report V. Stankova, C. Lacasta, V. Linhart Ljubljana meeting February 2009.
Arduino based Automatic Temperature Controlled Fan Speed Regulator.
Pusan National University power PNU 세계로 미래로 Electric Circuits Fall, 2014 Chapter 6 Series-Parallel Circuits.
RESISTIVE TEMPERATURE TRANSDUCERS
Having fun with code, using Arduino in a middle school CS classroom
Introduction to Sensors and Actuators
EET 2259 Unit 12 Data Acquisition
Next Generation Calculator Measurements
CU ATLAS Practical electronics Motion and Servos
Prototyping with Microcontrollers and Sensors
Temperature sensors Temperature is the most often-measured environmental quantity. This might be expected since most physical, electronic, chemical, mechanical,
MECH 373 Instrumentation and Measurements
AUTOMATIC TEMPERATURE CONTROLLED FAN USING 8051
ARDUINO BASED AUTOMATIC TEMPERATURE BASED FAN SPEED CONTROLLER
SAR ADC Input Types TIPL 4003 TI Precision Labs – ADCs
CPU FAN RPM MEASUREMENT WITH HALL EFFECT SENSOR
SCADA for Remote Industrial Plant
Arduino Development for Beginners
Introduction Molecules: made up of atoms of individual elements.
Intelligent Weather Station
Arduino - Introduction
Project guide B. SUBBULAKSHMI M. E Assistant Professor C. A. R
Group 13: Jamie Brunskill Tyler Shaw Kyle Stevens
‘SONAR’ using Arduino & ultrasonic distance sensor
Instructor Resources.
ECE 477 Design Review Team 8  Spring 2007
Internet-of-Things (IoT)
CS-4540 Robotics Lab 00 - Introduction and OHM's law.
EET 2259 Unit 12 Data Acquisition
Introduction to Frequency Domain TIPL 4301 TI Precision Labs – ADCs
INSTRUMENTASI INDUSTRI
Arduino 101 Credit(s):
Digital Theremin with LED
Resistance AIM: Understand resistance, calculate resistor values and know the characteristics of different types of resistors PRIOR KNOWLEDGE: Understand.
Engineering Tools for Electrical and Computer Engineers
General Concepts About Computer
Chapter 1 Introduction of Arduino
Training Module Introduction to the TB9100/P25 CG/P25 TAG Customer Service Software (CSS) Describes Release 3.95 for Trunked TB9100 and P25 TAG Release.
General Concepts About Computer
Tutorial: Writing a Lab Report CHEM 1154
Prototyping with Micro-controllers, Sensors, and Materials
Objective- To use an equation to graph the
Prototyping with Micro-controllers, Sensors, and Materials
General Concepts About Computer
UNIT 5 Analog signals.
Prototyping with Micro-controllers, Sensors, and Materials
Introduction to Arduinos
Prototyping with Micro-controllers, Sensors, and Materials
Data Acquisition Electronics Unit – Lecture 6
Instructor Resources.
Presentation transcript:

Detector Building C 2020 SD Regional Ang Shih, PhD MBA

Detector Building Introduction This event is new and concentrate on electronics sensor Learning Concept– Learn from linear and non linear calibration for detectors

Detector Building Build a temperature sensing Device to accurately measure and display the temperatures of four different water samples between 0˚C and 75˚C. Also take a written test . Device, two calculators of any type, one 2” three-ring binder, and Design Log. Team of up to two No Impound NO

Rule Highlight Teams build a temperature-sensing Device Measure water temperature (15x4) *(TempA-TempB)*2 for regional Display the measured temperature and voltage on a digital display Display the “temperature zone” (5x4) Written test (30) Design Log (28) Total of 4 Measurement Station 20 min set up time (not a lot for modify code)

General Idea V+ Voltage Regulator Arduino Output 6 LED - R 330 Ohm NTC Output 7 LED - G 330 Ohm Analog In Output 8 LED - B 330 Ohm ? Ohm https://learn.adafruit.com/thermistor/using-a-thermistor

Basic Thermistor

Thermistor is NOT a linear detector For Linear Calibration (10000-973)/(100-25) =120.36 Ohm per degree T= X/120.36+25 >>>Not Good

Steinhart-Hart model coefficients

This code help you to jump start. LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { Serial.begin(9600); } void loop() { Vo = analogRead(ThermistorPin); R2 = R1 * (1023.0 / (float)Vo - 1.0); logR2 = log(R2); T = (1.0 / (c1 + c2*logR2 + c3*logR2*logR2*logR2)); T = T - 273.15; T = (T * 9.0)/ 5.0 + 32.0; lcd.print("Temp = "); lcd.print(T); lcd.print(" F"); delay(500); lcd.clear(); This code help you to jump start. However, it is not going to make you win at the top. Also this is output at F. You need to output as C Include <math.h> please

Competition – Temperature Zones The Device must also be able to indicate the specific temperature zone using red, green and blue LEDs. At State and/or Nationals multiple (2-3) color LEDs may be required to be activated at the same time. The exact temperature range of each zone will be not be revealed until teams enter to compete, and may be different for teams.

Component State Suggest you use Arduino, Raspberry Pi, TI Launchpad or Teensy. Display: 16x2 LCD is the most common, Series version are easy to like and use. Advance Team should look into, Arduino for its library support. Combined with ADS1115 16bit ADC or TM7705 [Current Not Allow!!] Advance Team should look at 128x32 OLED display SSD1306

Thermal Epoxy

Written Test Teams may use the entire time block to take the written test. The written test may include but is not limited to: Relationships between resistance, voltage, and temperature (~25%) Theory of LEDs, working principles, and applications (~25%) The process of calibration - working with raw data and determining real world relationships (~25%) Operational knowledge of basic Device component (~25%)

Other Technique Multi measurement (Pseudo bit) Write interface to shorten the calibration time Write user interface to manage the software upload risk Sensor Requirement Cable >30cm Analog output only Not be pre-calibrated or pre-water proof

Design Log A top-down photograph of the Device with labels identifying all the components and detailing their function. This section should also include a brief summary explaining how the Device was constructed and the Sensor waterproofed. A data table with at least 10 trials showing the sensor voltage reading versus the corresponding temperature values in ℃. Scatter-plot graph of this data with temperature on the Y-axis and voltage on the X-axis. Function graph of mathematical model supported by the data overlaid on scatter-plot of the data. Equation of the above mathematical model used to convert measured voltage to the corresponding temperatures in ℃ highlighted for easy identification. Printout of program with code highlighted showing this exact mathematical equation converting voltage to temperature ℃. Program with the code highlighted that will illuminated the appropriate LED(s) according to their assigned temperature ranges.

Resources Shopping Arduino website (www.arduino.cc) Online general: ebay, amazon Online electronics: Digikey, Mouser, Newark Local Shop: (All closed) Arduino website (www.arduino.cc) Even if you’re not using Arduino… Instructables (www.instructables.com) National website (www.soinc.org) Student and coach website (www.scioly.org) Not the National site Good ideas but be careful – not always according to the rules

Thank You

State Clarification .a National FAQ: Can the "sensor" be composed of multiple individual sensors, or can only one individual sensor be used? No. The device can only have a single sensor. .a National FAQ: May students add a modular analog-to-digital convertor (ADC) to theirmicrocontroller? No. External signal conditioning boards are not allowed. b National FAQ: Are RTDs allowed as a legal sensor as long as they comply with all other rules? They seem to fall under the definition of a thermistor. Yes. RTDs are allowed. However, the RTD can not be connected to an external signal conditioning board before the signal is routed to the micro-controller board. b National FAQ: Are thermocouples allowed as a legal sensor as long as they comply with all other rules? Thermocouples are listed as legal on the example sensor list on the soinc.org website but not explicitly listed as one of the two fundamental electric components Yes. Thermocouples are legal. However, external circuit boards are illegal. So, a thermocouple may be used, but an external signal conditioning board can not. National FAQ: Are we allowed to use more than one temperature sensor and use an average reading of them, or is there a limit of only one input device? No, only one sensor per device is allowed.