Interpreting Temperature Logger Data

Slides:



Advertisements
Similar presentations
TEMPERATURE CONVERSION
Advertisements

MEASURING THE MOVEMENT OF MOLECULES
Digital Thermostat and Data Logger Brandon Wagner and David Southwick.
 Temperature is the degree heat or cold of any body. In climatology, we look at the difference in temperature of the air mass.  We measure temperature.
Two different ladders both go from the ground to the top of the same building. Ladder #1 has 100 rungs and ladder #2 has 120 rungs. Two people climb up.
How to Read a Thermometer A thermometer is an instrument that is used to measure temperature.
Temp Conversions Centigrade, Fahrenheit, Absolute.
Temperature Conversions By Jenn Faust Liz Clay. What is temperature? Most people think of temperature as being hot or cold Most people think of temperature.
Objectives To learn how dimensional analysis can be used to solve problems To learn the three temperature scales To learn to convert from one temperature.
Temperature Think about a day during each season (Spring, Summer, Winter, Fall) where you live. Write down an adjective that describes the temperature.
Absolute Zero Objectives (c) describe how there is an absolute scale of temperature that does not depend on the property of any particular substance (ie.
Computer Programming Lab(4).
Lesson 2 TEMPERATURE AND PRESSURE MEASUREMENTS DEFINE the thermodynamic properties temperature and pressure. DESCRIBE the Fahrenheit, Celsius, Kelvin,
TEMPERATURE FAHRENHEIT & CELSIUS. WHAT IS TEMPERATURE? Some people say: it is how hot or cold something is Scientists say: measure of how fast the atoms.
How Low Can You Go??. Temperature Scales Nova Temperature: Quantifying Cold 10:17
Fahrenheit and Celsius Conversion Formulas Fahrenheit to Celsius: Celsius to Fahrenheit:
Temperature. Temperature – measure of the average kinetic energy (energy of motion) of atoms or molecules  Temperature is an average of molecule/atom.
Temperature Section1. Temperature Scales  Fahrenheit ( ◦ F )  Celsius ( ◦ C )  Kelvin ( K )
Heat. Temperature and heat are not the same thing We measure how hot or cold something is by temperature There are three common scales to measure temperature.
Honors Chemistry Unit I - Power Point 6
Temperature. Temperature Scales Temperature can be measured with a variety of scales: – Celsius scale – Fahrenheit scale – Kelvin scale.
Heat and Temperature. Temperature Objective  Define temperature in terms of the average kinetic energy of atoms or molecules  Convert temperature readings.
Radian Measure. Many things can be measured using different units.
Heat and TemperatureSection 1 SPS7.c Determine the heat capacity of a substance using mass, specific heat, and temperature.
Electronic Instrumentation & PLC DKT 314 Digital thermometer LCD display using LM35 Lecturer: En Mat Nor Mohamad B Ismail En Zulkifli Husin.
August 12, 2015 Daily Question: Predict the outcome for each of these situations: 1. Mixing more hot water with cold water. 2. Mixing more cold water with.
Fahrenheit, Celsius & Kelvin. Temperature  Is a measure of how hot or cold an object is compared to another object.  Indicates that heat flows from.
Temperature, Thermal Energy, and Heat.  Thermal Energy – The total energy (potential and kinetic) of all of the particles in an object.  The greater.
What is a phase change? - when matter changes from one form to another due to the addition or removal of heat.
Lesson 5: Temperature and Density. Heat A form of energy that can move from a hot place to a cooler place.
NOTES-Chapter 12 Thermal Energy. Heat is defined and expressed by the Kinetic Molecular Theory of heat.
Temperature Conversions
12/5/12 Temperature Conversions
CHARLIE HAFFEY NORWOOD PUBLIC SCHOOLS Heat & Temperature.
AGBell – ENGT by Andrew G. Bell (260) Module 1 Global Perspective – Temperature.
Comparing Temperature Scales Units of Temperature Fahrenheit scale 0 F Celsius scale commonly used by scientists water boils at C 0 K coldest temperature.
Heat and the 2 nd Law of Thermodynamics.  Although we learned in the first law that the total amount of energy, including heat, is conserved in an isolated.
Physics Review for the GHSGT. Types of energy Solar Electrical Nuclear Chemical Mechanical Potential Kinetic.
Basics of Most C++ Programs // Programmer: Clayton Price date: 9/4/ // File: fahr2celc.cpp 03. // Purpose:
When Thermal Energy is transferred it is called HEAT Heat always transfers from higher to lower In order to have flow there must be a temperature (thermal.
Kelvin, Celsius, Fahrenheit. Fahrenheit In the 1700s, G. Daniel Fahrenheit developed a scale used by meteorologists for measuring surface temperature.
Temperature SWBAT apply addition and subtraction of integers to Celsius and Fahrenheit temperature; use formulas to estimate temperatures in degrees Celsius.
Temperature How Hot is it?. Temperature Temperature is a measure of the average kinetic energy of a molecule of a substance, or… How “hot” it is. On Temperature.
Lesson 3-5 Pages Solving Two-Step Equations Lesson Check 3-4.
Units and Measurements Text Pgs SI – system of units used internationally Base unit – system of measurement based on an object or event in physical.
Celsius and Fahrenheit
Temperature conversions. C to F 1.Open excel 2. In cell "A1" type in "Celsius“ 3. In cell "B1" type in Fahrenheit 4. Since we are converting to celsius.
Group Five MSP430 Project Katy Charlton Jeremy McNutt Ben Ealey Aaron Vallance April 14, 2007.
Bonifaci. Notes: (chapter 2.7) 3 different scales for temperature Celsius (metric system) Fahrenheit (used by US and GB, confusing) Kelvin (used by chemists.
Slope Comes from the French verb monter Which means to climb or to rise.
Temperature vs. Heat. Thermal Energy The total potential and kinetic energy of the particles in a system make up thermal energy. The kinetic energy comes.
EXERCISE R.13 R.13Let  HT be the correlation between humidity, H, and temperature measured in degrees Fahrenheit, F. Demonstrate that the correlation.
Temperature.
Temperature Feeling hot, hot, hot….. Temperature Temperature – a measurement of how much kinetic energy the particles contain.
ECE 4330 – Final Project By: John Litzenberger.  A IC temperature sensor (DS1620)  Reads through ADC (pin.0 Port A)  Feedback control for extreme conditions.
LM35 TEMPERATURE SENSOR  The LM35 is an integrated circuit sensor that can be used to measure temperature with an electrical output proportional to the.
Temperature Sensor TYWu. Seeed’s Temperature Sensor Picture.
SI Base Units of Measurement in Chemistry. SI Units for Mass and Volume Mass: the amount of matter that an object contains –Base Unit: gram –Most Common.
Temperature Measurement
Copyright © Cengage Learning. All rights reserved. Functions 3 The Metric System.
Lecture 3. Temperature. Relative scale – Fahrenheit ( o F) – Celsius ( o C) – Specified reference temperature = the freezing point of water = 0 o C or.
Non-SI Units accepted in the SI
Lesson 1: What is Heat?.
TEMPERATURE CONVERSION
Temperature How Hot is it?.
PIC18F458 Analog-to-Digital
Measurement Part 5 Temperature.
To convert from Fahrenheit to Celsius, use the following equation:
Measurement Part 5 Temperature.
Components of a Computer System
Presentation transcript:

Interpreting Temperature Logger Data Changing Digitized Temperature Readings back into Temperatures Before you can begin programming your Temperature Logger, you will need to understand the three types of memory inside the PICAXE-08M2

Analog Temperature Readings to Digital Values Analog: 0 to 5 volts Digital: 0 to 255 D = (A/5) X 256 The PICAXE can convert any voltage between zero and five volts into a digital value between 0 and 255. This is a linear conversion, so zero volts becomes a digital zero, 2.5 volts becomes a digital 127 (or 128 depending on the accuracy of the 2.5 volts), and five volts becomes a digital 255. You can calculate the digital value of any analog voltage by dividing it by 5 And then multiply by 256. Since the PICAXE does not use decimal points, you need to round up the calculated value.

The LM335 Temperature Sensor Temperature: 0 to 500 kelvins Output: 0 to 5 volts The LM 335 Temperature Sensor produces a voltage that varies linearly with its temperature. Theoretically, it will produce zero volts at absolute zero and five volts at a temperature of 500 kelvins (which is the same as 435 degrees Fahrenheit).

Four Temperature Scales Kelvin Celsius Fahrenheit Rankin There are four popular temperature scales. The temperature scales of Kelvin and Celsius have the same size degrees, but kelvin begins measuring the temperature at Absolute Zero. The temperature scales of Fahrenheit and Rankin have the same size degree (which is different from Kelvin and Celsius), but Rankin begins measuring the temperature at Absolute Zero. Kelvin and Rankin are scientific and engineering scales, that’s why they begin measuring form Absolute Zero. This means there can never be a negative temperature reading in Kelvin and Rankin. To convert Celsius into Kelvin, just add 273 to the temperature in Celsius. To convert Fahrenheit into Rankin, just add 459 to the temperature in Fahrenheit. To convert Celsius into Fahrenheit and back again is a little more difficult. But the next slide will show you a trick that you can use.

Fahrenheit and Celsius There are 1.8 Fahrenheit degrees in 1 Celsius degree -40O Fahrenheit = -40O Celsius There is 1.8 Fahrenheit degrees in one Celsius degree. The inverse is also true, so that there is 5/9 of a Celsius degree in one Fahrenheit degree. It’s also true that -40 degrees is the same temperature in both temperature scales. This means if you plot the temperature in Celsius and Fahrenheit on any other temperature scale, the two lines representing the temperature in Celsius and Fahrenheit would cross at -40 degrees Celsius (or Fahrenheit). This means that if we adjust either of the temperature scales to -40 degrees, the only difference between the two temperature scales is just their slopes. So here is the process to convert Celsius to Fahrenheit. 1. Add 40 to the temperature in Celsius 2. Multiply the new temperature by 1.8 3. Subtract 40 from the new value You can reverse this process and easily convert the temperature in Fahrenheit into Celsius. 1. Add 40 to the temperature in Fahrenheit 2. Divide the new temperature by 1.8

Converting a Digitized Temperature back into Temperature Temperature (k) = R/256 X 500 To convert a digitized temperature reading back into the temperature in Kelvin, you need to take the digitized value and divide it by 256 (the largest number that can be stored in a byte-size memory). Then multiply the result by 500 Kelvins. Now you can convert the temperature in Kelvins into Celsius and from there into Fahrenheit and Rankin.

Spreadsheet Helper Included with the Temperature Logger Along with the Temperature Logger is a spreadsheet for converting digitized temperature readings into temperatures in the Kelvin, Celsius, Fahrenheit, and Rankin scales. But rather than copy the temperature readings into the spreadsheet, create a new spreadsheet from the output form the Temperature Logger and copy the spreadsheet equations into cells. Let’s see how to do this.

Transferring Temperature Data into Notepad Temperature readings are not useful in the Terminal program Copy into Notepad using the Copy Input Buffer option When the Temperature Logger downloads its readings into the PICAXE Editor’s Terminal Program (it can be started by pressing the F8 key), it will be a series of numbers, separated by commas. You cannot use or edit the values while it remains in the Terminal program. So click Edit and two options will appear in the drop down menu. Click the second one, Copy Input Buffer. This copies the data so that it can be pasted into a text editor (use Notepad for this).

This is where you will find the Copy Input Buffer option.

Editing Temperature Data You get: 144,145,146,148 Edit to make it: 144 145 146 148 When you get digitized temperature readings from the Temperature Logger and paste it into Notepad, it will be a series or temperature readings, each separated by a comma. You will need to edit it into a single column of digitized temperature readings with no commas.

In Excel, you will need to select Text Files in the Files of Type window.

Excel will ask if the file is delimited. So click the Next button Excel will ask if the file is delimited. So click the Next button. On the following two windows click the Next and then the Finish buttons.

After the data is imported into Excel, then copy and paste the four equations needed to convert the digitized temperature data into Kelvin, Celsius, Fahrenheit, and Rankin. You should also create a column for the time of each reading. This depends on how frequently you program your Temperature Logger to record data. However, in the this example, the Temperature Logger was programmed to collect temperature readings every one minute.

Now you can create a chart to display your temperature readings Now you can create a chart to display your temperature readings. Be sure to save your file as a spreadsheet.