REU Research Experience for Undergraduate Program. Engineering, Baltimore City Community College, BCCC 2

Size: px
Start display at page:

Download "REU Research Experience for Undergraduate Program. Engineering, Baltimore City Community College, BCCC 2"

Transcription

1 Temperature, Pressure, and Humidity (Tempredity) Quantifications From the Howard University Beltsville Campus Atmospheric Research Center in Beltsville, Maryland REU SCHOLAR: OLUWASEUN OJIMI 1 MENTORS: DR. VENABLE, D. 2, DR. SAKAI, R. 3 REU Research Experience for Undergraduate Program 1 Engineering, Baltimore City Community College, BCCC 2 Physics and Astronomy Department, Howard University, Washington, DC 3 NOAA Center for Atmospheric Sciences, Howard University, Washington, DC ABSTRACT Quantifications of atmospheric parameters have played a vital role in weather and climate research which has contributed to an extensive data network used for modeling. For data model input on climate and weather research, a significant number of findings from the atmosphere are needed. The purpose of this study is to find cheap but efficient alternative sensors to the standard temperature, pressure and humidity sensors. The preliminary results showed that the inexpensive sensors can assemble more precise data when reading atmospheric parameters. INTRODUCTION This research focused on the Intercomparison of the standard Temperature, pressure and humidity sensors with inexpensive sensors. The two inexpensive sensors were tested for accuracy in comparison with the standard sensors which were the National Weather Service (NWS) sondes. The goal of the study was to find and compare affordable atmospheric parameters sensors substitute for the standard sensors that are also validated for accuracy. The hypothesis was that DHT22 temperaturehumidity and BMP180 Barometric Pressure/Temperature/Altitude Sensor will emulate close accurate data as the Model 278 Barometric Pressure Transducer and Model 41382VC Relative humidity / Temperature probe sensor in reading atmospheric parameters. INSTRUMENTS CHARACTERISTICS It is obvious and important to consider the accuracy and precision simultaneously for the quantification of TEMPREDITY measurements. Tempredity is an abbreviation formed from the initial letters of the words temperature, pressure and humidity. Based on given research, it would be a waste of time and energy to determine result with high precision if we know that the result would be highly inaccurate. Equally, a result cannot be 1

2 considered to be extremely accurate if the precision is low. It is very crucial to differentiate between the terms accuracy and precision in any measuring experiment. The accuracy of an experiment shows how close the experiment is to the true value. Therefore, it is the measure of correctness to the accepted true value. The precision of an experiment is a measure of how well the result has been determined, without reference to its agreement to the true value. Precise result can also be reproduce to give a well and accurate data result. Two forms of precision data are absolute and relative precision. Absolute precision indicates the magnitudes of the uncertainty in the result. While relative precision indicates the uncertainty in terms of a fraction of the value of the result. UNDERSTANDING OF THERMODYNAMIC PROPERTIES Temperature measurement: The thermodynamic temperature shows the degree of warmth or coldness of an object or substance and one of the seven quantities in the international system unit (SI). The kelvin, unit of thermodynamic temperature, is the fraction 1/ of the thermodynamic temperature of the triple point of water. Degree Celsius is commonly used in meteorological and atmospheric science observation. Atmospheric pressure: the surface of the earth is at the bottom of the atmospheric sea. The standard atmospheric pressure is measured in various units. For weather applications, the standard atmospheric pressure is frequently called 1 bar or 1000 milibars or hectopascals. This has been found to be easy for recording the relatively small deviations from standard atmospheric pressure with normal weather patterns. Humidity: this describes the fact that the atmosphere contain water vapor. The most commonly used term to quantify humidity is called relative humidity. Relative humidity is defined as the amount of water in the air relative to the saturation amount the air can hold at a given temperature multiplied by 100 when pressure is considered to be constant. INSTRUMENT PROTOTYPE Sonde is a National Weather Service (NWS) instrument design with different sensors that are used for calibration of atmospheric parameters. The schematic below shows the schematic design of a sonde prototype. 2

3 Schematic 1. Sensor Function PAR (Photo synthetically Active Radiation) Sensor: sensor reports the photosynthetic photon flux density (PPFD). This is the power of electromagnetic radiation in the spectral range that is used by plants for photosynthesis ( nm). This sensor is ideal for experiments investigating photosynthesis. T, RH, Air Pressure sensor: the sensor is used for the quantification of thermodynamic parameters GPS: gives the location of every measurements A/D board converter: this converts ultra violet radiation voltage to numbers. TIME LAG The lagged-correlation is the correlation of two time series shifted in time. According to Meko [2011]: Lagged correlation is important in studying the relationship between time series for two reasons. First, one series may have a delayed response to the other series, or perhaps a delayed response to a common stimulus that affects both series. Second, the response of one series to the other series or an outside stimulus may be smeared in time, such that a stimulus restricted to one observation elicits a response at multiple observations. The majority of atmospheric data are recorded as a time series. These time series are documented and plotted to later be manipulated in order to process some form of statistical analysis. Each time series represents a collection of data, each one being recorded at a specific time. Time series provide compact descriptions of data, and can be used to predict future values of the time series [Davis, 2012]. The location of the Model 278 Barometric Pressure/Model 41382vc relative humidity & temperature sensor and DHT 22/BMP180 probes are similar. The plotted time series are from June 10, 2015 to June 11, To observe the time series on a smaller scale, the time series were plotted based on days of the year: Figure 1 displays the time series plot of the three temperature data of sonde. Figure 2 displays the time series of relative humidity sensors. Figure 3 displays the time series of pressure sensors. 3

4 Figure 1 Figure 2 Figure 3 LINEAR REGRESSION In measurement, linear regression is a method used for modeling the relationship between a scalar dependent variable y and independent variable x. Mathematical representation of linear fit implies 4

5 The model function created for modeling linear fits for the experiment was: function[a0 a1]=linear_regression(p1,p2t) n=length(p1); a1=(n*sum(p1.*p2t)- sum(p1)*sum(p2t))/(n*sum(p1.^2) - (sum(p1))^2); a0=mean(p2t)- a1*mean(p1); end. The plots below indicate the linear regression or fit to the preliminary results of the experiment. Hysteresis occurs from this result due to differences in time series (i.e., Time lag). Figure 14 Linear Fit of True T. vs T1 Figure 5 RHT v RH1 Figure 26 TT v T2 Figure 7 RHT v RH2 Linear Fit 5

6 Figure 8 PT v P Linear Fit CORRELATION COEFFICIENT How well does linear regression equation truly represent the set of data? The only way to determine the answer to this question is to examine the correlation coefficient (r) and the coefficient of determination (r 2 ). Lin. Reg equation: Y=a x + b Where a=slope b= y intercept r 2 =coefficient of determination r=correlation coefficient The quantity r, called the linear correlation coefficient, measures the strength and the direction of a linear relationship between the two variables. The importance of r is such that -1 < r < +1. The + and signs are used for positive linear correlations and negative linear correlations, respectively. The mathematical formula for computing (r) correlation coefficient implies where n = the number of pairs of the data. The Matlab function created for finding r is function [r]=correlation_coefficient n=length(x) r=(n*sum(x.*y)- sum(x)*sum(y)/sqrt(n*sum(x.^2)- (sum(x))^2)*sqrt(n*sum(y.^2)- (sum(y))^2); end Positive correlations: If x and y have a strong positive correlation, r value is close to +1. An r value of exactly +1 shows a perfect positive fit. Positive values indicate a relationship between x and y variables such that as values for x increase, values for y also increase. Negative correlation: If x and y have a strong negative linear correlation, r is close to -1. An 6

7 r value of exactly -1 indicates a perfect negative fit. Negative values indicate a relationship between x and y such that as values for x increase, values for y decrease. A perfect correlation of ± 1 occurs only when the data points all lie exactly on a straight line. If r = +1, the slope of this line is positive. If r = -1, the slope of this line is negative. A correlation greater than 0.8 is generally described as strong, whereas a correlation less than 0.5 is generally described as weak. COEFFICIENT OF DETERMINATION, r 2 The coefficient of determination, r 2, is very important because it provides the amount of the change (fluctuation) of one variable that is predictable from the other variable and indicates how well the regression line represents the data. If the regression line passes exactly through every point on the scatter plot, it would be able to explain all of the variation. The further the line is away from the points, the less it is able to explain. This provides more information on how well the inexpensive pressure sensor can be compare to the standard one. The table below displays the correlation between each sensors and describe the final statistical data result of the project. TABLE 1. Correlation and Statistical Data Sensor Correlation Coefficient of Root Mean Y = ax + b Y Intercept comparison coefficient (r) determination Square Slope (a) (b) (r^2) (RMS) T1 &TT T2&TT T1&T P1&TP TRH&RH TRH&RH RH1&RH The coefficient of determination is a measure that cultivated me to determine how certain one can be in making predictions from a certain plot/model. r 2 is the ratio of the explained variation to the total fluctuation or change. Is such that 0 < r 2 < 1, and denotes the strength of the linear association between x and y. For example, if r = 0.922, then r 2 = 0.850, which means that 85% of the total variation in TT can be explained by the linear relationship between T1 and TT (as described by the regression equation). The other 15% of the total variation in TT remains unexplained. SENSORS SPECIFICATION DISCOVERY It was found that Barometric pressure transducer Setra s Model 278 is the ultimate solution for quantifying barometric pressure 7

8 for remote environmental applications. The 278 is designed using the SETRACERAM ceramic sensor, allowing it to meet tough accuracy desires over wide operating temperatures in remote applications. Model 278 is as well ideal for solar powered applications because of its low power consumption and sleep mode feature. Under normal operation, this feature minimizes current draw when readings are not being taken. Setra s Model 278 is considered to be the standard sensor for pressure quantification and it is costly compare to other barometric pressure sensor. The Model 41382VC Relative Humidity/Temperature Probe combines high accuracy humidity and temperature sensors in a single probe. The output signal is 0-1 V (standard) or 0-5 V (user selected option) for both relative humidity and temperature. RH range is 0-100%. Temperature range is -50 to +50 C. Model 41382VC also considered to be the expensive standard Relative humidity temperature sensor. The DHT22 is an elementary, low-cost digital temperature and humidity sensor. It uses a capacitive humidity sensor and a thermistor to measure the surrounding air, and spits out a digital signal on the data pin (no analog input pins needed). It is fairly simple to operate, but requires careful timing to grab data. The only real downside of this sensor is you can only get new data from it once every 2 seconds, so when using a library, sensor readings can be up to 2 seconds old. Table 2 8

9 DISCUSSION AND CONCLUSIONS The collection of data enabled the direct analysis and comparison of Tempredity quantification from both DHT22/BMP180 (inexpensive sensor) and Model 278/Model VC (standard sensor). Based on the final results, I am competent to back up my educated guess (hypothesis) that the two inexpensive sensors are well-suited for collecting more precise and accurate data alternatives to the standard ones. I detected that entrancing measurements with inexpensive sensors require strong sampling of data. The plots below give an overview of strong correlation coefficient r /coefficient of determination r 2 between different sensor data collected at the Howard University Beltsville atmospheric research site and a weaker correlation coefficient for the inexpensive relative humidity sensor data with the expensive relative humidity sensor data from Beltsville. Figure 9. Comparison of TT & T1 Figure 10. Comparison of TT & T2 9

10 Figure 11. Comparison of T1 & T2 Figure 12 Comparison of P1 & PT 10

11 Figure 13 Comparison of RH1 & RHT Figure 14 Comparison of RH2 & RHT Figure 15 Comparison of RH1 & RH2 11

12 ACKNOWLEDGEMENTS This study was supported by the National Science Foundation Research Experiences for Undergraduates. I would like to acknowledge the National Science Foundation for financial support of the Research Experience for Undergraduates (REU) summer program and the Howard University REU in Physics Site (NSF Grant PHY ). s_10.pdf Wallace, J.M & Hobbs, V.P. (2006). Atmospheric Science an Introductory Survey. Burlington, MA: Elsevier Inc. I would also like to thank Dr. Demetrius Venable, Dr. Ricardo Sakai, and Dr. Misra Prabhakar, for the opportunity given to me to be able to perform this research. I would also like to thank Dr. Siwei Li and my REU partner Francios Junior, for all of their help in conducting this research. REFERENCES Bevington, P.R. & Keith Robinson, D (1992). Data reduction and error analysis for the physical sciences. United States of America: McGraw-Hill, Inc. Davis, R. A. [July 25, 2012]. Introduction to Statistical Analysis of Time Series [PDF document]. Retrieved from ures/session6.pdf Mat bit, Correlation Coefficient. (n.d) retrieved July , from finding your way around Web Site: Statistics2/correlation.htm Meko, D. M. [2011]. Course outline (lessons): 10. Lagged correlation. [PDF document]. Retrieved from Lecture Notes Online Website: 12

Sensitivity of Convective Indices to Humidity Adjustments

Sensitivity of Convective Indices to Humidity Adjustments Sensitivity of Convective Indices to Humidity Adjustments M. E. Splitt University of Utah Salt Lake City, Utah R. A. Peppler Cooperative Institute for Mesoscale Meteorological Studies University of Oklahoma

More information

Eric. W. Harmsen 1, John Mecikalski 2, Vanessa Acaron 3 and Jayson Maldonado 3

Eric. W. Harmsen 1, John Mecikalski 2, Vanessa Acaron 3 and Jayson Maldonado 3 Estimating Ground-Level Solar Radiation and Evapotranspiration In Puerto Rico Using Satellite Remote Sensing Eric. W. Harmsen 1, John Mecikalski 2, Vanessa Acaron 3 and Jayson Maldonado 3 1 Department

More information

5.1 Use of the Consensus Reference Concept for Testing Radiosondes. Joe Facundo and Jim Fitzgibbon, Office of Operational Systems,

5.1 Use of the Consensus Reference Concept for Testing Radiosondes. Joe Facundo and Jim Fitzgibbon, Office of Operational Systems, 5. Use of the Consensus Reference Concept for Testing Radiosondes Joe Facundo and Jim Fitzgibbon, Office of Operational Systems, Silver Spring, Maryland and Sterling, Virginia. INTRODUCTION The U. S. has

More information

Vantage Pro Technical Reference

Vantage Pro Technical Reference Vantage Pro Technical Reference Davis Instruments 3465 Diablo Ave. Hayward, CA 94545 Created: 9/11/01 Calculations of Derived Variables The following parameters do not have any sensors or circuitry. They

More information

Development of Innovative Technology to Provide Low-Cost Surface Atmospheric Observations in Data-sparse Regions

Development of Innovative Technology to Provide Low-Cost Surface Atmospheric Observations in Data-sparse Regions Development of Innovative Technology to Provide Low-Cost Surface Atmospheric Observations in Data-sparse Regions Paul Kucera and Martin Steinson University Corporation for Atmospheric Research/COMET 3D-Printed

More information

Introduction. Outline

Introduction. Outline Introduction Outline Planck s constant (h = 6.63 x 10-34 Js) is a universal constant that lies at the heart of quantum physics. It defines the scale of this theory just as the speed of light (c = 3.00

More information

3URGXFWLQIRUPDWLRQ 5HVHUYDWLRQRISURSHUW\ULJKWV

3URGXFWLQIRUPDWLRQ 5HVHUYDWLRQRISURSHUW\ULJKWV 3URGXFWLQIRUPDWLRQ +\URSKLO Š '7W\SH 5HVHUYDWLRQRISURSHUW\ULKWV 7KHFRQWHQWRIWKLVGRFXPHQWLVWKHLQWHOOHFWXDOSURSHUW\RI%$57(&DQGPXVWQHLWKHUEHFRSLHGQRUPDGHDYDLO DEOHWRWKLUGSDUWLHVQRWHYHQLQH[WUDFWVZLWKRXWRXUH[SUHVVDSSURYDOLQZULWLQ$Q\LQIULQHPHQWZLOOUHVXOWLQD

More information

Temperature. 3

Temperature. 3 Temperature In 1848, Sir William Thomson (Lord Kelvin) stated the zero principle of dynamics. This principle enabled him to define thermodynamic temperature and to establish an objective method of measuring

More information

A Case Study on Diurnal Boundary Layer Evolution

A Case Study on Diurnal Boundary Layer Evolution UNIVERSITY OF OKLAHOMA A Case Study on Diurnal Boundary Layer Evolution Meteorological Measurement Systems Fall 2010 Jason Godwin 12/9/2010 Lab partners: Sam Irons, Charles Kuster, Nathan New, and Stefan

More information

Assimilation of satellite derived soil moisture for weather forecasting

Assimilation of satellite derived soil moisture for weather forecasting Assimilation of satellite derived soil moisture for weather forecasting www.cawcr.gov.au Imtiaz Dharssi and Peter Steinle February 2011 SMOS/SMAP workshop, Monash University Summary In preparation of the

More information

accuracy inverse relationship model significant figures dependent variable line of best fit physics scientific law

accuracy inverse relationship model significant figures dependent variable line of best fit physics scientific law A PHYSICS TOOLKIT Vocabulary Review Write the term that correctly completes the statement. Use each term once. accuracy inverse relationship model significant figures dependent variable line of best fit

More information

Modeling of Environmental Systems

Modeling of Environmental Systems Modeling of Environmental Systems While the modeling of predator-prey dynamics is certainly simulating an environmental system, there is more to the environment than just organisms Recall our definition

More information

Specifications for a Reference Radiosonde for the GCOS Reference. Upper-Air Network (GRUAN)

Specifications for a Reference Radiosonde for the GCOS Reference. Upper-Air Network (GRUAN) Specifications for a Reference Radiosonde for the GCOS Reference Upper-Air Network (GRUAN) By the Working Group on Atmospheric Reference Observations (WG-ARO) Final Version, October 2008 1. Introduction

More information

Chapter 1. A Physics Toolkit

Chapter 1. A Physics Toolkit Chapter 1 A Physics Toolkit Chapter 1 A Physics Toolkit In this chapter you will: Use mathematical tools to measure and predict. Apply accuracy and precision when measuring. Display and evaluate data graphically.

More information

Amateur Weather Stations

Amateur Weather Stations Amateur Weather Stations Part 2 Baro Sensor / GPS Receiver / Anemometer Kurt Kochendarfer, KE7KUS Sacramento Mountains Radio Club Overview Review Barometric Pressure Sensors Temperature / Pressure / Humidity

More information

PHYS 352. On Measurement, Systematic and Statistical Errors. Errors in Measurement

PHYS 352. On Measurement, Systematic and Statistical Errors. Errors in Measurement PHYS 352 On Measurement, Systematic and Statistical Errors Errors in Measurement when you make a measurement you should quote an estimate of the uncertainty or error all measurements have systematic errors

More information

Antonio Aguirre Jr. Office of Science, Faculty and Student Team Internship Program. New York City College of Technology, Brooklyn

Antonio Aguirre Jr. Office of Science, Faculty and Student Team Internship Program. New York City College of Technology, Brooklyn Retrieval of Optical and Size Parameters of Aerosols Utilizing a Multi-Filter Rotating Shadowband Radiometer and Inter-comparison with CIMEL and Microtops Sun Photometers Antonio Aguirre Jr. Office of

More information

AUTOMOTIVE CURRENT TRANSDUCER OPEN LOOP TECHNOLOGY HAH1BVW S/08

AUTOMOTIVE CURRENT TRANSDUCER OPEN LOOP TECHNOLOGY HAH1BVW S/08 AUTOMOTIVE CURRENT TRANSDUCER OPEN LOOP TECHNOLOGY HAH1BVW S/08 Introduction The HAH1BVW family is for the electronic measurement of DC, AC or pulsed currents in high power and low voltage automotive applications

More information

K-12 Environmental Education

K-12 Environmental Education UCSD TIES adapted from NYSERDA Energy Smart www.schoolpowernaturally.org Solar Kit Lesson #12 Calibration Curve for a Radiation Meter TEACHER INFORMATION LEARNING OUTCOME After using measurement, students

More information

Calibration and Temperature Retrieval of Improved Ground-based Atmospheric Microwave Sounder

Calibration and Temperature Retrieval of Improved Ground-based Atmospheric Microwave Sounder PIERS ONLINE, VOL. 6, NO. 1, 2010 6 Calibration and Temperature Retrieval of Improved Ground-based Atmospheric Microwave Sounder Jie Ying He 1, 2, Yu Zhang 1, 2, and Sheng Wei Zhang 1 1 Center for Space

More information

Temperature Scales. Temperature, and Temperature Dependent on Physical Properties. Temperature. Temperature Scale

Temperature Scales. Temperature, and Temperature Dependent on Physical Properties. Temperature. Temperature Scale Temperature Scales The Celsius, Fahrenheit, and Kelvin Temperature Scales: Temperature, and Temperature Dependent on Physical Properties Physics Enhancement Programme Dr. M.H. CHAN, HKBU 9 T F T 5 T T

More information

PTA-427 BAROMETRIC PRESSURE TRANSDUCER OPERATOR S MANUAL

PTA-427 BAROMETRIC PRESSURE TRANSDUCER OPERATOR S MANUAL PTA-427 BAROMETRIC PRESSURE TRANSDUCER OPERATOR S MANUAL REVISION: 4/95 COPYRIGHT 1991, 1995 CAMPBELL SCIENTIFIC, INC. WARRANTY AND ASSISTANCE The PTA-427 Barometric Pressure Transducer is warranted by

More information

Thermodynamics INTRODUCTION AND BASIC CONCEPTS. Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Thermodynamics INTRODUCTION AND BASIC CONCEPTS. Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Thermodynamics INTRODUCTION AND BASIC CONCEPTS Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. THERMODYNAMICS AND ENERGY Thermodynamics: The science of energy.

More information

EAS 535 Laboratory Exercise Weather Station Setup and Verification

EAS 535 Laboratory Exercise Weather Station Setup and Verification EAS 535 Laboratory Exercise Weather Station Setup and Verification Lab Objectives: In this lab exercise, you are going to examine and describe the error characteristics of several instruments, all purportedly

More information

Improved Fields of Satellite-Derived Ocean Surface Turbulent Fluxes of Energy and Moisture

Improved Fields of Satellite-Derived Ocean Surface Turbulent Fluxes of Energy and Moisture Improved Fields of Satellite-Derived Ocean Surface Turbulent Fluxes of Energy and Moisture First year report on NASA grant NNX09AJ49G PI: Mark A. Bourassa Co-Is: Carol Anne Clayson, Shawn Smith, and Gary

More information

SHEBA GLASS SOUNDING DATA

SHEBA GLASS SOUNDING DATA SHEBA GLASS SOUNDING DATA Erik R. Miller and Kathryn Beierle - 12 June 2000 NCAR ATD Considerable speculation has been brought to bear as to whether there is a dry bias in the SHEBA radiosonde data. Two

More information

Department Mechanical Engineering IIT Kanpur. Instructors Dr. K. Muralidhar Dr. P.K. Panigrahi

Department Mechanical Engineering IIT Kanpur. Instructors Dr. K. Muralidhar Dr. P.K. Panigrahi NPTEL Online - IIT Bombay Course Name Optical Measurement Techniques in Thermal Science Department Mechanical Engineering IIT Kanpur Instructors Dr. K. Muralidhar Dr. P.K. Panigrahi Course Description

More information

Centralized Forecasting Registration and Communication Requirements for Distribution Connected Variable Generators. IESO Training

Centralized Forecasting Registration and Communication Requirements for Distribution Connected Variable Generators. IESO Training Centralized Forecasting Registration and Communication Requirements for Distribution Connected Variable Generators IESO Training May 2017 Centralized Forecasting - Registration and Communication Requirements

More information

PREDICTING SURFACE TEMPERATURES OF ROADS: Utilizing a Decaying Average in Forecasting

PREDICTING SURFACE TEMPERATURES OF ROADS: Utilizing a Decaying Average in Forecasting PREDICTING SURFACE TEMPERATURES OF ROADS: Utilizing a Decaying Average in Forecasting Student Authors Mentor Peter Boyd is a senior studying applied statistics, actuarial science, and mathematics, and

More information

The Meisei sonde data product

The Meisei sonde data product The Meisei sonde data product - Progress and plans - - February 24, 2015 - Nobuhiko Kizu ( Tateno/JMA HQ ) 1 Overview 1. Outline of Meisei radiosondes 2. GRUAN Data Product for Meisei radiosonde - Outline

More information

Many short reports are inadequate and need more work

Many short reports are inadequate and need more work University of Maryland Baltimore County - UMBC Phys650 - Special Topics in Experimental Atmospheric Physics (Spring 2009) J. V. Martins and M. H. Tabacniks Grading feedback: http://userpages.umbc.edu/~martins/phys650/

More information

GRUAN-wide strategy for the transition away from the RS92 radiosonde

GRUAN-wide strategy for the transition away from the RS92 radiosonde GRUAN-wide strategy for the transition away from the RS92 radiosonde Ruud Dirksen, GRUAN Lead Center ICM-8 26 April 2016 Motivation 14 out of 22 GRUAN sites employ Vaisala RS92 RS92 will phase out mid-2017

More information

Real-time PBL analysis system using profilers observations from The New York State Mesonet

Real-time PBL analysis system using profilers observations from The New York State Mesonet Real-time PBL analysis system using profilers observations from The New York State Mesonet Sarah Lu University at Albany State University of New York Outline Background System description and progress

More information

Change of Dew Point Temperature and Density of Saturated Water Vapor with High and its Impact on Cloud Cover

Change of Dew Point Temperature and Density of Saturated Water Vapor with High and its Impact on Cloud Cover IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 06, Issue 01 (January. 2016), V1 PP 06-13 www.iosrjen.org Change of Dew Point Temperature and Density of Saturated Water

More information

WEATHER MULTI-SENSOR. Vaisala Weather Transmitter WXT510. Change the Way You Measure Weather

WEATHER MULTI-SENSOR. Vaisala Weather Transmitter WXT510. Change the Way You Measure Weather WXT510 WEATHER MULTI-SENSOR Vaisala Weather Transmitter WXT510 Change the Way You Measure Weather Vaisala Weather Transmitter WXT510 The Most Essential of Weather The Vaisala Weather Transmitter WXT510

More information

Meteorological Equations and Conversion Algorithms

Meteorological Equations and Conversion Algorithms Meteorological Equations and Conversion Algorithms Autumn 1997 Heat Index & Wind Chill Index Last Updated: August 25, 1997 Heat Index Calculates the heat index. #1 function calcheatindex(t, rh) var t2=t*t;

More information

Chapter 12 - Part I: Correlation Analysis

Chapter 12 - Part I: Correlation Analysis ST coursework due Friday, April - Chapter - Part I: Correlation Analysis Textbook Assignment Page - # Page - #, Page - # Lab Assignment # (available on ST webpage) GOALS When you have completed this lecture,

More information

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Chapter 10 Correlation and Regression McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Chapter 10 Overview Introduction 10-1 Scatter Plots and Correlation 10- Regression 10-3 Coefficient of Determination and

More information

Lower Troposphere Remote Sensing Activities at UMBC

Lower Troposphere Remote Sensing Activities at UMBC Lower Troposphere Remote Sensing Activities at UMBC Ruben Delgado, Belay Demoz Atmospheric Lidar Group Joint Center for Earth Systems Technology University of Maryland, Baltimore County Ad-Hoc Mixing Layer

More information

Low Cost Weather Stations for Developing Countries (Kenya)

Low Cost Weather Stations for Developing Countries (Kenya) Low Cost Weather Stations for Developing Countries (Kenya) Charles Mwangi Kenya Space Agency 7 th UNSPIDER Conference 23th-25th October 2017 Prepared with support of: Martin Steinson/Paul Kucera - UCAR/NCAR

More information

Detection of Exoplanets Using the Transit Method

Detection of Exoplanets Using the Transit Method Detection of Exoplanets Using the Transit Method De nnis A fanase v, T h e Geo rg e W a s h i n g t o n Un i vers i t y, Washington, DC 20052 dennisafa@gwu.edu Abstract I conducted differential photometry

More information

METHODS FOR CERTIFYING MEASUREMENT EQUIPMENT. Scott Crone

METHODS FOR CERTIFYING MEASUREMENT EQUIPMENT. Scott Crone METHODS FOR CERTIFYING MEASUREMENT EQUIPMENT Scott Crone North American Sales Manager AMETEK Calibration Instruments 8600 Somerset Drive Largo, Florida 33773 USA INTRODUCTION Like any other piece of equipment,

More information

A Comparison of Clear-Sky Emission Models with Data Taken During the 1999 Millimeter-Wave Radiometric Arctic Winter Water Vapor Experiment

A Comparison of Clear-Sky Emission Models with Data Taken During the 1999 Millimeter-Wave Radiometric Arctic Winter Water Vapor Experiment A Comparison of Clear-Sky Emission Models with Data Taken During the 1999 Millimeter-Wave Radiometric Arctic Winter Water Vapor Experiment E. R. Westwater, Y. Han, A. Gasiewski, and M. Klein Cooperative

More information

G109 Midterm Exam (Version A) October 10, 2006 Instructor: Dr C.M. Brown 1. Time allowed 50 mins. Total possible points: 40 number of pages: 5

G109 Midterm Exam (Version A) October 10, 2006 Instructor: Dr C.M. Brown 1. Time allowed 50 mins. Total possible points: 40 number of pages: 5 G109 Midterm Exam (Version A) October 10, 2006 Instructor: Dr C.M. Brown 1 Time allowed 50 mins. Total possible points: 40 number of pages: 5 Part A: Short Answer & Problems (12), Fill in the Blanks (6).

More information

New Radiosonde Temperature Bias Adjustments for Potential NWP Applications Based on GPS RO Data

New Radiosonde Temperature Bias Adjustments for Potential NWP Applications Based on GPS RO Data Eighth FORMOSAT-3/COSMIC Data Users Workshop 30 September 2 October 2014 Boulder, Colorado, USA New Radiosonde Temperature Bias Adjustments for Potential NWP Applications Based on GPS RO Data Bomin Sun

More information

Can the Convective Temperature from the 12UTC Sounding be a Good Predictor for the Maximum Temperature, During the Summer Months?

Can the Convective Temperature from the 12UTC Sounding be a Good Predictor for the Maximum Temperature, During the Summer Months? Meteorology Senior Theses Undergraduate Theses and Capstone Projects 12-1-2017 Can the Convective Temperature from the 12UTC Sounding be a Good Predictor for the Maximum Temperature, During the Summer

More information

5.6. Barrow, Alaska, USA

5.6. Barrow, Alaska, USA SECTION 5: QUALITY CONTROL SUMMARY 5.6. Barrow, Alaska, USA The Barrow installation is located on Alaska s North Slope at the edge of the Arctic Ocean in the city of Barrow. The instrument is located in

More information

Measurement and Instrumentation, Data Analysis. Christen and McKendry / Geography 309 Introduction to data analysis

Measurement and Instrumentation, Data Analysis. Christen and McKendry / Geography 309 Introduction to data analysis 1 Measurement and Instrumentation, Data Analysis 2 Error in Scientific Measurement means the Inevitable Uncertainty that attends all measurements -Fritschen and Gay Uncertainties are ubiquitous and therefore

More information

Eric. W. Harmsen 1, John Mecikalski 2, Pedro Tosado Cruz 1 Ariel Mercado Vargas 1

Eric. W. Harmsen 1, John Mecikalski 2, Pedro Tosado Cruz 1 Ariel Mercado Vargas 1 Estimating Evapotranspiration using Satellite Remote Sensing in Puerto Rico, Haiti and the Dominican Republic Eric. W. Harmsen 1, John Mecikalski 2, Pedro Tosado Cruz 1 Ariel Mercado Vargas 1 1. University

More information

Validation of sea ice concentration in the myocean Arctic Monitoring and Forecasting Centre 1

Validation of sea ice concentration in the myocean Arctic Monitoring and Forecasting Centre 1 Note No. 12/2010 oceanography, remote sensing Oslo, August 9, 2010 Validation of sea ice concentration in the myocean Arctic Monitoring and Forecasting Centre 1 Arne Melsom 1 This document contains hyperlinks

More information

China BeiDou radiosonde system

China BeiDou radiosonde system China BeiDou radiosonde system Yang RongKang Meteorological Observation Cntre of CMA yrkaoc@cma.gov.cn 23 Chinese Beidou satllite are working now,and positioning service cover the asia-pacific region BeiDou

More information

INC 331 Industrial Process Measurement. Instrument Characteristics

INC 331 Industrial Process Measurement. Instrument Characteristics INC 331 Industrial Process Measurement Instrument Characteristics Introduction Measurement is the experimental process of acquiring any quantitative information. When doing a measurement, we compare the

More information

First European Space Weather Week. Space weather - atmospheres, drag, global change future needs. 29 November-3 December 2004

First European Space Weather Week. Space weather - atmospheres, drag, global change future needs. 29 November-3 December 2004 First European Space Weather Week Space weather - atmospheres, drag, global change future needs 29 November-3 December 2004 Timescales of important phenomena Weather Climate No single statement of requirement

More information

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Chapter 10 Correlation and Regression McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Example 10-2: Absences/Final Grades Please enter the data below in L1 and L2. The data appears on page 537 of your textbook.

More information

The flux density of solar radiation at the Earth s surface, on a horizontal plane, is comprised of a fraction of direct beam and diffuse radiation

The flux density of solar radiation at the Earth s surface, on a horizontal plane, is comprised of a fraction of direct beam and diffuse radiation Instructor: Dennis Baldocchi Professor of Biometeorology Ecosystem Science Division Department of Environmental Science, Policy and Management 35 Hilgard Hall University of California, Berkeley Berkeley,

More information

Observational Needs for Polar Atmospheric Science

Observational Needs for Polar Atmospheric Science Observational Needs for Polar Atmospheric Science John J. Cassano University of Colorado with contributions from: Ed Eloranta, Matthew Lazzara, Julien Nicolas, Ola Persson, Matthew Shupe, and Von Walden

More information

REMOTE SENSING OF THE ATMOSPHERE AND OCEANS

REMOTE SENSING OF THE ATMOSPHERE AND OCEANS EAS 6145 SPRING 2007 REMOTE SENSING OF THE ATMOSPHERE AND OCEANS Instructor: Prof. Irina N. Sokolik office 2258, phone 404-894-6180 isokolik@eas.gatech.edu Meeting Time: Mondays: 3:05-4:25 PM Wednesdays:

More information

Near Space The Ultimate STEM Experience

Near Space The Ultimate STEM Experience Near Space The Ultimate STEM Experience Your Students Can Take Pictures Like This and Collect Data Like This. NearSys LLC is ready to help you and your students design, test, and fly experiments in the

More information

ERROR ANALYSIS ACTIVITY 1: STATISTICAL MEASUREMENT UNCERTAINTY AND ERROR BARS

ERROR ANALYSIS ACTIVITY 1: STATISTICAL MEASUREMENT UNCERTAINTY AND ERROR BARS ERROR ANALYSIS ACTIVITY 1: STATISTICAL MEASUREMENT UNCERTAINTY AND ERROR BARS LEARNING GOALS At the end of this activity you will be able 1. to explain the merits of different ways to estimate the statistical

More information

Sensor Characteristics

Sensor Characteristics Lecture (3) Sensor Characteristics (Part Two) Prof. Kasim M. Al-Aubidy Philadelphia University-Jordan AMSS-MSc Prof. Kasim Al-Aubidy 1 3. Computation of Stimulus: The main objective of sensing is to determine

More information

1. Mark the correct statement(s)

1. Mark the correct statement(s) 1. Mark the correct statement(s) Figure to the right shows a mass measurement scale using a spring. 1.1 The span of the scale is a) 16 kg b) 21 kg c) 11 kg d) 5-16 kg 1.2 The range of the scale is a) 16

More information

Introduction to Uncertainty and Treatment of Data

Introduction to Uncertainty and Treatment of Data Introduction to Uncertainty and Treatment of Data Introduction The purpose of this experiment is to familiarize the student with some of the instruments used in making measurements in the physics laboratory,

More information

Thermodynamics Thermal Equilibrium Temperature

Thermodynamics Thermal Equilibrium Temperature Thermodynamics Thermal Equilibrium Temperature Lana Sheridan De Anza College April 18, 2017 Last time Torricelli s Law applications of Bernoulli s equation Overview heat, thermal equilibrium, and the 0th

More information

Non-Acoustical Inputs

Non-Acoustical Inputs CHAPTER 18 Non-Acoustical Inputs This chapter discusses the use of external transducers and devices to provide non-acoustical data to the Model 831. Included are the following: 831-INT 831-INT Interface

More information

AUTOMOTIVE CURRENT TRANSDUCER OPEN LOOP TECHNOLOGY HC6H 400-S/SP1

AUTOMOTIVE CURRENT TRANSDUCER OPEN LOOP TECHNOLOGY HC6H 400-S/SP1 AUTOMOTIVE CURRENT TRANSDUCER OPEN LOOP TECHNOLOGY HC6H 400-S/SP1 Picture of product with pencil Introduction The HC6H family is for the electronic measurement of DC, AC or pulsed currents in high power

More information

INTRODUCTION AND BASIC CONCEPTS. Chapter 1. Mehmet Kanoglu. Thermodynamics: An Engineering Approach, 6 th Edition. Yunus A. Cengel, Michael A.

INTRODUCTION AND BASIC CONCEPTS. Chapter 1. Mehmet Kanoglu. Thermodynamics: An Engineering Approach, 6 th Edition. Yunus A. Cengel, Michael A. Thermodynamics: An Engineering Approach, 6 th Edition Yunus A. Cengel, Michael A. Boles McGraw-Hill, 2008 Chapter 1 INTRODUCTION AND BASIC CONCEPTS Mehmet Kanoglu Copyright The McGraw-Hill Companies, Inc.

More information

Comparison of Vaisala Radiosondes RS41 and RS92 WHITE PAPER

Comparison of Vaisala Radiosondes RS41 and RS92 WHITE PAPER Comparison of Vaisala Radiosondes RS41 and RS92 WHITE PAPER Table of Contents CHAPTER 1 Introduction... 4 CHAPTER 2 Key Improvements in RS41... 5 CHAPTER 3 RS41 and RS92 Comparison Tables... 6 CHAPTER

More information

Uncertainty, Error, and Precision in Quantitative Measurements an Introduction 4.4 cm Experimental error

Uncertainty, Error, and Precision in Quantitative Measurements an Introduction 4.4 cm Experimental error Uncertainty, Error, and Precision in Quantitative Measurements an Introduction Much of the work in any chemistry laboratory involves the measurement of numerical quantities. A quantitative measurement

More information

Shortwave Radiative Transfer in the Earth s Atmosphere: Current Models and Validation

Shortwave Radiative Transfer in the Earth s Atmosphere: Current Models and Validation Shortwave Radiative Transfer in the Earth s Atmosphere: Current Models and Validation Jennifer Delamere, Eli Mlawer, and Tony Clough Atmospheric & Environmental Research, Inc. Summary AER builds radiative

More information

Issues, Evidence, and You NORTH CAROLINA EDITION

Issues, Evidence, and You NORTH CAROLINA EDITION Issues, Evidence, and You GRADE 6 NORTH CAROLINA EDITION Issues, Evidence, and You GRADE 6 NORTH CAROLINA EDITION ISSUES, EVIDENCE, AND YOU GRADE 6, NORTH CAROLINA EDITION Studying Soil Scientifically

More information

Observations of Integrated Water Vapor and Cloud Liquid Water at SHEBA. James Liljegren

Observations of Integrated Water Vapor and Cloud Liquid Water at SHEBA. James Liljegren Observations of Integrated Water Vapor and Cloud Liquid Water at SHEBA James Liljegren Ames Laboratory Ames, IA 515.294.8428 liljegren@ameslab.gov Introduction In the Arctic water vapor and clouds influence

More information

PAR Meter Instruction Manual. Product # Product # Year Warranty

PAR Meter Instruction Manual. Product # Product # Year Warranty PAR Meter Instruction Manual Product #748200 Product #748205 1 Year Warranty Measuring PPF with Quantum Meter Photosynthesis is driven by the number of photons between 400 and 700 nanometers (nm). This

More information

A Longwave Broadband QME Based on ARM Pyrgeometer and AERI Measurements

A Longwave Broadband QME Based on ARM Pyrgeometer and AERI Measurements A Longwave Broadband QME Based on ARM Pyrgeometer and AERI Measurements Introduction S. A. Clough, A. D. Brown, C. Andronache, and E. J. Mlawer Atmospheric and Environmental Research, Inc. Cambridge, Massachusetts

More information

Teacher s Guide For. Core Physics: Classical Physics

Teacher s Guide For. Core Physics: Classical Physics Teacher s Guide For Core Physics: Classical Physics For grade 7 - College Program produced by Centre Communications, Inc. for Ambrose Video Publishing, Inc. Executive Producer William V. Ambrose Teacher's

More information

Routine Cal/Val Activities for GRUAN

Routine Cal/Val Activities for GRUAN Routine Cal/Val Activities for John Dykema Harvard University School of Engineering and Applied Sciences 12 Oxford Street, Cambridge, MA 02138 (USA) dykema@huarp.harvard.edu SI Traceability in situ Jerry

More information

Spectral Albedos. a: dry snow. b: wet new snow. c: melting old snow. a: cold MY ice. b: melting MY ice. d: frozen pond. c: melting FY white ice

Spectral Albedos. a: dry snow. b: wet new snow. c: melting old snow. a: cold MY ice. b: melting MY ice. d: frozen pond. c: melting FY white ice Spectral Albedos a: dry snow b: wet new snow a: cold MY ice c: melting old snow b: melting MY ice d: frozen pond c: melting FY white ice d: melting FY blue ice e: early MY pond e: ageing ponds Extinction

More information

Lecture 14. Analysis of Variance * Correlation and Regression. The McGraw-Hill Companies, Inc., 2000

Lecture 14. Analysis of Variance * Correlation and Regression. The McGraw-Hill Companies, Inc., 2000 Lecture 14 Analysis of Variance * Correlation and Regression Outline Analysis of Variance (ANOVA) 11-1 Introduction 11-2 Scatter Plots 11-3 Correlation 11-4 Regression Outline 11-5 Coefficient of Determination

More information

Lecture 14. Outline. Outline. Analysis of Variance * Correlation and Regression Analysis of Variance (ANOVA)

Lecture 14. Outline. Outline. Analysis of Variance * Correlation and Regression Analysis of Variance (ANOVA) Outline Lecture 14 Analysis of Variance * Correlation and Regression Analysis of Variance (ANOVA) 11-1 Introduction 11- Scatter Plots 11-3 Correlation 11-4 Regression Outline 11-5 Coefficient of Determination

More information

GLOBE Data Explorations

GLOBE Data Explorations Data at Altitude: A GLOBE Data Exploration Purpose Students learn how temperature varies with altitude while exploring GLOBE air temperature data collected at different elevations. Overview Students analyze

More information

Educational cosmic ray experiments with Geiger counters

Educational cosmic ray experiments with Geiger counters Educational cosmic ray experiments with Geiger counters F. BLANCO, F. FICHERA, P. LA ROCCA, F. LIBRIZZI, O. PARASOLE AND F. RIGGI INFN and Department of Physics and Astronomy, University of Catania, Via

More information

Preliminary results of refined site analysis for the Antarctic node of the Latin American Giant Observatory

Preliminary results of refined site analysis for the Antarctic node of the Latin American Giant Observatory Preliminary results of refined site analysis for the Antarctic node of the Latin American Giant Observatory A.M Gulisano 1,2,3, V.E López. 4, S. Dasso 2,3,5, for the LAGO collaboration 6 1 Instituto Antártico

More information

Accurate Position Measurement at Varying Temperatures

Accurate Position Measurement at Varying Temperatures T E C H N I C A L W H I T E P A P E R Accurate Position Measurement at Varying Temperatures Author: Darran Kreit, Technical Manager, Zettlex UK Ltd File ref: technical articles/accurate position measurement

More information

REX Evaluation Guide. American Micro Detection Systems Inc March Lane, Suite 200 Stockton, CA 95219

REX Evaluation Guide. American Micro Detection Systems Inc March Lane, Suite 200 Stockton, CA 95219 REX Evaluation Guide American Micro Detection Systems Inc. 2800 March Lane, Suite 200 Stockton, CA 95219 I. INTRODUCTION REX (Real-time Elemental X-ray Fluorescence System) is the only instrument capable

More information

LOADS, CUSTOMERS AND REVENUE

LOADS, CUSTOMERS AND REVENUE EB-00-0 Exhibit K Tab Schedule Page of 0 0 LOADS, CUSTOMERS AND REVENUE The purpose of this evidence is to present the Company s load, customer and distribution revenue forecast for the test year. The

More information

Memorandum. September 21. To: Terry Cool, Project Manager From: Brian Lim, Lead Scientist Re: Progress Report on Temperature Controllers

Memorandum. September 21. To: Terry Cool, Project Manager From: Brian Lim, Lead Scientist Re: Progress Report on Temperature Controllers Memorandum September 21 To: Terry Cool, Project Manager From: Brian Lim, Lead Scientist Re: Progress Report on Temperature Controllers Summary I propose using an inexpensive NTC thermistor to maintain

More information

Mini Environmental Quality Meter

Mini Environmental Quality Meter Mini Environmental Quality Meter 850027 Mini Environmental Quality Meter 850027 Copyright 2012 by Sper Scientific ALL RIGHTS RESERVED Printed in the USA The contents of this manual may not be reproduced

More information

Estimation of ocean contribution at the MODIS near-infrared wavelengths along the east coast of the U.S.: Two case studies

Estimation of ocean contribution at the MODIS near-infrared wavelengths along the east coast of the U.S.: Two case studies GEOPHYSICAL RESEARCH LETTERS, VOL. 32, L13606, doi:10.1029/2005gl022917, 2005 Estimation of ocean contribution at the MODIS near-infrared wavelengths along the east coast of the U.S.: Two case studies

More information

Determination of aerosol optical depth using a Micro Total Ozone Spectrometer II. (MICROTOPS II) sun-photometer

Determination of aerosol optical depth using a Micro Total Ozone Spectrometer II. (MICROTOPS II) sun-photometer Determination of aerosol optical depth using a Micro Total Ozone Spectrometer II (MICROTOPS II) sun-photometer Agossa Segla, Antonio Aguirre, and VivianaVladutescu Office of Educational Program (FAST Program)

More information

Atmosphere Properties and Instruments. Outline. AT351 Lab 2 January 30th, 2008

Atmosphere Properties and Instruments. Outline. AT351 Lab 2 January 30th, 2008 Atmosphere Properties and Instruments AT351 Lab 2 January 30th, 2008 Outline 1. Atmospheric Variables and How We Measure Them 2. Composition of the Atmosphere 3. How to Represent Weather Data Visually

More information

Measurement: The Basics

Measurement: The Basics I. Introduction Measurement: The Basics Physics is first and foremost an experimental science, meaning that its accumulated body of knowledge is due to the meticulous experiments performed by teams of

More information

Principles Of Engineering Detailed Outline

Principles Of Engineering Detailed Outline Principles Of Engineering Detailed Outline Unit 1 Energy and Power Time Days: 115 days Lesson 1.0 Introduction to POE (15 days) 1. Introduction to classroom expectations, Engineering notebook, Pretest

More information

Physics 3150, Laboratory X January 22, 2014 Ann Onymous (lab partner: John Doe)

Physics 3150, Laboratory X January 22, 2014 Ann Onymous (lab partner: John Doe) A. Procedure and Results Physics 150, Laboratory X January, 01 Ann Onymous (lab partner: John Doe) A.1. Voltage and current for a resistor bridge We constructed a resistor bridge circuit as indicated in

More information

4/3/2019. Advanced Measurement Systems and Sensors. Dr. Ibrahim Al-Naimi. Chapter one. Introduction to Measurement Systems

4/3/2019. Advanced Measurement Systems and Sensors. Dr. Ibrahim Al-Naimi. Chapter one. Introduction to Measurement Systems Advanced Measurement Systems and Sensors Dr. Ibrahim Al-Naimi Chapter one Introduction to Measurement Systems 1 Outlines Control and measurement systems Transducer/sensor definition and classifications

More information

SENSOR. Weather TRANSMITTERS

SENSOR. Weather TRANSMITTERS Weather SENSOR TRANSMITTERS 4~20mA Environmental Monitoring Probe Sets Anemometer (Wind Speed) Wind Vane Light Energy Sensor (Pyranometer) Solar Radiation Shield Model THP-CL Humidity Sensor Temperature

More information

Global warming trend and multi-decadal climate

Global warming trend and multi-decadal climate Global warming trend and multi-decadal climate variability Sergey Kravtsov * and Anastasios A. Tsonis * Correspondence and requests for materials should be addressed to SK (kravtsov@uwm.edu) 0 Climate

More information

First step: make the detector, a current-to-voltage converter using an op amp and a photodiode

First step: make the detector, a current-to-voltage converter using an op amp and a photodiode Making a photodiode light detector, for several purposes: * Measuring falloff of light with distance from the source (laser, or LED / other divergent source) * Making the detector for a photometer for

More information

Chapter 1 INTRODUCTION AND BASIC CONCEPTS

Chapter 1 INTRODUCTION AND BASIC CONCEPTS Thermodynamics: An Engineering Approach Seventh Edition in SI Units Yunus A. Cengel, Michael A. Boles McGraw-Hill, 2011 Chapter 1 INTRODUCTION AND BASIC CONCEPTS Mehmet Kanoglu University of Gaziantep

More information

5B.1 DEVELOPING A REFERENCE CROP EVAPOTRANSPIRATION CLIMATOLOGY FOR THE SOUTHEASTERN UNITED STATES USING THE FAO PENMAN-MONTEITH ESTIMATION TECHNIQUE

5B.1 DEVELOPING A REFERENCE CROP EVAPOTRANSPIRATION CLIMATOLOGY FOR THE SOUTHEASTERN UNITED STATES USING THE FAO PENMAN-MONTEITH ESTIMATION TECHNIQUE DEVELOPING A REFERENCE CROP EVAPOTRANSPIRATION CLIMATOLOGY FOR THE SOUTHEASTERN UNITED STATES USING THE FAO PENMAN-MONTEITH ESTIMATION TECHNIQUE Heather A. Dinon*, Ryan P. Boyles, and Gail G. Wilkerson

More information

Trevor Lee Director, Buildings. Grant Edwards PhD Department of Environment and Geography

Trevor Lee Director, Buildings. Grant Edwards PhD Department of Environment and Geography Weather Affects Building Performance Simulation v Monitoring real time solar and coincident weather data for building optimisation and energy management Trevor Lee Director, Buildings Grant Edwards PhD

More information

Section 1.1: Patterns in Division

Section 1.1: Patterns in Division Section 1.1: Patterns in Division Dividing by 2 All even numbers are divisible by 2. E.g., all numbers ending in 0,2,4,6 or 8. Dividing by 4 1. Are the last two digits in your number divisible by 4? 2.

More information