EM375 MECHANICAL ENGINEERING EXPERIMENTATION THERMOCOUPLE LABORATORY

Size: px
Start display at page:

Download "EM375 MECHANICAL ENGINEERING EXPERIMENTATION THERMOCOUPLE LABORATORY"

Transcription

1 EM375 MECHANICAL ENGINEERING EXPERIMENTATION THERMOCOUPLE LABORATORY PURPOSE The objective of this laboratory is to introduce the student to the manufacture and use of thermocouples. Thermocouples will be modeled as a first order system, and students will explore the transient response characteristics of their thermocouples. Particular attention will be focused on the concept of the time constant. BACKGROUND In 1821 Thomas Seebeck discovered that when two wires of different metals were joined together at each end and the junction at one end was heated, a small, continuous electrical current flowed in the circuit. The current is very small, and rather than measuring current we now connect the wires to a high input impedance meter and measure the resulting voltage. The magnitude of this Seebeck effect increases as the temperature difference between the junctions increases and we can use the measured voltage to determine the temperature difference. The phenomenon, though, is not linear. The most rudimentary thermocouple circuit we can use to measure temperature consists of two dissimilar metals joined at a junction at one end (marked hot in the illustration below) and to a high impedance meter at the other. The main problem with this arrangement is that the meter reading (Seebeck effect) depends upon the temperature difference between the hot junction and the wiring connectors at the meter. Without reference junction temperature compensation this device will measure the difference between the hot temperature and the temperature of the meter. Many thermocouple meters have reference junction temperature compensation which may use internal thermistors to measure the temperature of the wiring block, or alternatively compensating IC. These types of meter or DAQ system make it seem that we only need a single junction to make a working thermocouple. A better wiring arrangement that can give more accurate temperature measurements is shown below. This circuit has two active junctions (HOT and REFERENCE) and two parasitic junctions where the Metal B connects to the wiring block at the meter. The reference junction is maintained at a fixed temperature (e.g., by using an ice bath). The temperature difference between the two junctions can now be used to determine the temperature of the hot junction.

2 There are many different wiring configurations for thermocouples. However they all rely on the Seebeck effect increasing as the temperature difference between junctions also increases. Discussion of those many other approaches is beyond the scope of this course. THEORY You will be making K-type thermocouples which use the metals chromel and alumel 1 for the two wires in each junction. You will then verify the thermocouples are working. This is not a calibration, rather more a field check. You do this by testing your thermocouples at 0 C (melting Ice Cubes in a water bath) and at 100 C (steam). You will also check the zero-point by inserting your thermocouples into a calibrator, which is maintained very accurately at 0 C. RECORD ALL THREE FIELD-CHECK RECORDINGS. Time constant, ττ After you have verified your thermocouples work, you will test one of them to determine its time constant in air. The time constant depends upon several different parameters that include the thermocouple itself (size and materials), and the environment in which it is being used. The theoretical time constant can be estimated from the equation: ττ = ρρcc vvvv haa 1 Chromel and Alumel are trademarks of the Hoskins Manufacturing Company. Chromel is approximately 90%nickel and 10% chromium. Alumel is approximately 95% nickel, 2% manganese, 2% aluminum and 1% silicon.

3 Where ρρ is the density of the thermocouple bead (average of the two metal densities), CC vv is the thermal capacitance, VV is the volume of the bead, AA is the surface area of the bead, and h is the convective heat transfer coefficient between the thermocouple and its surroundings. Your experiment is to subject a thermocouple to a step change in temperature and measure the resulting temperature versus time data. The thermocouple is a first order system. One of the mathematical formulations for the transient response of a first order system subject to a step input is: TT(tt) = TT (TT TT 0 )ee (tt tt 0 )/ττ In this equation, TT 0 is the initial temperature of the thermocouple at time t0, TT is the actual temperature after the step input (the measurand in this case) and TT(tt) is the temperature recorded by the thermocouple system as a function of time. You will be required to process your temperature vs. time data to determine the time constant for the thermocouple and also to determine the temperature of a hot aluminum block. This is a nonlinear regression which can be achieved using a similar method to the one you used for the elastomer lab. PROCEDURE Each group will make two K-type thermocouples; a twisted wire thermocouple and a welded thermocouple. Both thermocouples will be tested to verify they are working. The twisted wire thermocouple will then be inserted in a protection tube (shroud) and brought to room temperature. Shrouds are commonly used for thermocouples; they provide mechanical protection and also change the time constant. After the thermocouple has reached thermal equilibrium you will subject it to a step change in temperature by inserting it into a hot aluminum block. From the measured temperature versus time data, you will determine the time constant for your thermocouple, and also the actual temperature of the calibrator. The detailed procedure will be given in class, and is summarized below: 1. The twisted wire thermocouple is made by stripping about half-inch of the insulation from the ends of the thermocouple wire and twisting the bare ends together. 2. The welded thermocouple is made by stripping the insulation from the ends of the thermocouple wire and joining them using a Helicarc welder. 3. Both thermocouples are verified with field checks with the thermocouples attached to a thermocouple voltmeter. How accurate was your thermocouple when it was placed in the calibrator? How accurate was your thermocouple when it was placed in melting ice? How accurate was your thermocouple when it was placed in steam? 4. Allow the thermocouple to come to room temperature. Make sure it is dry. 5. Insert one of the thermocouples into the shroud. Observe the temperature and ensure it is reasonably stable (not changing) and is close to room temperature. 6. Activate the digital recorder and record a few seconds of ambient temperature data.

4 7. While still recording, quickly lower the measuring junction into the hot aluminum block. Continue to record the temperature as a function of time for about 3 minutes. ANALYSIS and REPORT REQUIREMENTS The data collection, reduction, and report writing will be done in groups. Your report should ONLY include the transient temperature test. DO NOT include manufacturing details, but do report the field check temperatures for all the thermocouples your team manufactured. Your Matlab code should, as a minimum: 1. Plot the entire measured temperature vs. time data set. 2. Select a start point where the transient response is clean and use this to define the start of a reduced data set. Also look at the end of the data set to identify whether any of the trailing recordings need to be eliminated (for example, if you continued to record as you pulled the thermocouple out of the aluminum block). 3. Look at the raw data and estimate an initial estimate for the time constant ττ. Include this value in your report and explain how you obtained it. 4. Conduct a least squares nonlinear regression and determine the initial temperature TT 0, thermocouple time constant ττ and the actual temperature of the aluminum block, TT You will need to write a Matlab function that takes parameters of initial temperature, final temperature and time constant. It should also accept a vector of time values. It will return the temperatures calculated using the parameters and time values. You will then need to program the use of Matlab functions nlinfit and nlparci. You may want to refer back to the code you wrote for the elastomers lab. t0 will be the time of the first point in your reduced data set Use the temperature at this time as your initial guess for TT 0 Use the last temperature in your retained data set as your initial guess for TT What should you use as your initial guess for the time constant? 5. Plot the measured (full data set with all recorded values) temperature data. Overlay the theoretical transient response using your regressed parameters. Only plot the overlay for the time covered by your reduced data set. See the end of this handout for a sample plot. Note that the plot of measured data includes the initial part at ambient temperature. Those values need to be excluded for the analysis, but must be plotted for comparison. The main body of your report should include as a minimum: 1. A statement that gives the calculated time constant and its uncertainty.

5 2. A statement that gives the final temperature time TT and its uncertainty. 3. The plot from Matlab (4) above 4. A discussion about the possible accuracies and errors in the experiment. 5. A discussion about how you could change the time constant of your thermocouple, and why you might want to change it (i.e., make it smaller or larger). 6. Calculations for the following scenario: The thermocouple/shroud you made is initially at room temperature (20 C) and then is plunged into a source at 180 C. What will the thermocouple read after 1 minute? Measured Curve Fit Temperature (deg C) Time (s) Sample plot for a thermocouple tested in a source close to 0 C

Sensors and Actuators Sensors Physics

Sensors and Actuators Sensors Physics Sensors and ctuators Sensors Physics Sander Stuijk (s.stuijk@tue.nl) Department of Electrical Engineering Electronic Systems 2 THERMOELECTRIC SENSORS (Chapter 3.9, 16.4) 3 Thermoelectric effect thermoelectric

More information

Sensing, Computing, Actuating

Sensing, Computing, Actuating Sensing, Computing, ctuating Sander Stuijk (s.stuijk@tue.nl) Department of Electrical Engineering Electronic Systems 2 THERMOELECTRIC EFFECT (Chapter 5.11) 3 Thermocouple cylinder head temperature (thermocouple)

More information

ME 105 Mechanical Engineering Laboratory Spring Quarter Experiment #2: Temperature Measurements and Transient Conduction and Convection

ME 105 Mechanical Engineering Laboratory Spring Quarter Experiment #2: Temperature Measurements and Transient Conduction and Convection ME 105 Mechanical Engineering Lab Page 1 ME 105 Mechanical Engineering Laboratory Spring Quarter 2010 Experiment #2: Temperature Measurements and Transient Conduction and Convection Objectives a) To calibrate

More information

I m. R s. Digital. R x. OhmmetersxSeries Shunt Digital. R m

I m. R s. Digital. R x. OhmmetersxSeries Shunt Digital. R m µa Meter I I s I m s E Digital x I Voltmeter x x E µa Meter m Is OhmmetersxSeries Shunt Digital EIx= = ()E sm x mxvi= x Shunt Ohmmeter Shunt s x E µa Meter I m I m V m E ) ( v I E ) ( E v E v E I When

More information

Temperature Measurements

Temperature Measurements Engineering 80 Spring 2015 Temperature Measurements SOURCE: http://www.eng.hmc.edu/newe80/pdfs/vishaythermdatasheet.pdf SOURCE: http://elcodis.com/photos/19/51/195143/to-92-3_standardbody to-226_straightlead.jpg

More information

Laboratory 12: Three Thermodynamics Experiments

Laboratory 12: Three Thermodynamics Experiments Laboratory 12: Three Thermodynamics Experiments Experiment 1: Coefficient of Linear Expansion of Metals The fact that most objects expand when heated is common knowledge. The change in the linear dimensions

More information

Lecture 36: Temperatue Measurements

Lecture 36: Temperatue Measurements Lecture 36: Temperatue Measurements Contents Principle of thermocouples Materials for themocouples Cold junction compensation Compensating wires Selection of thermocouples Illustration of gas temperature

More information

Veerapong Kanchanawongkul*

Veerapong Kanchanawongkul* Using LabVIEW to Development of Temperature Measurement System with Thermocouple and Thermistor AIS 08 Veerapong Kanchanawongkul* Department of Mechanical Engineering, Faculty of Engineering, South-East

More information

Exercise 1: Thermocouple Characteristics

Exercise 1: Thermocouple Characteristics The Thermocouple Transducer Fundamentals Exercise 1: Thermocouple Characteristics EXERCISE OBJECTIVE When you have completed this exercise, you will be able to describe and demonstrate the characteristics

More information

1) Thermo couple sensor

1) Thermo couple sensor 1) Thermo couple sensor Fundamental operation. In 1821 Mr. Seebeck found that if you connected 2 wires of different metals, a small Voltage would be generated, when this connection (junction) is heated.

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

Temperature Measurement

Temperature Measurement MECE 3320 Measurements & Instrumentation Temperature Measurement Dr. Isaac Choutapalli Department of Mechanical Engineering University of Texas Pan American Introduction Temperature is one of the most

More information

Experiment 5: Thermocouples (tbc 1/14/2007, revised 3/16/2007, 3/22,2007, 2/23/2009, 3/13/2011)

Experiment 5: Thermocouples (tbc 1/14/2007, revised 3/16/2007, 3/22,2007, 2/23/2009, 3/13/2011) Experiment 5: Thermocouples (tbc 1/14/2007, revised 3/16/2007, 3/22,2007, 2/23/2009, 3/13/2011) Objective: To implement a thermocouple circuit for temperature sensing. I. Introduction to Thermocouples

More information

Temperature Measurements Using Type K Thermocouples and the Fluke Helios Plus 2287A Datalogger Artmann, Nikolai; Vonbank, R.; Jensen, Rasmus Lund

Temperature Measurements Using Type K Thermocouples and the Fluke Helios Plus 2287A Datalogger Artmann, Nikolai; Vonbank, R.; Jensen, Rasmus Lund Aalborg Universitet Temperature Measurements Using Type K Thermocouples and the Fluke Helios Plus 2287A Datalogger Artmann, Nikolai; Vonbank, R.; Jensen, Rasmus Lund Publication date: 2008 Document Version

More information

Temperature Sensors & Measurement

Temperature Sensors & Measurement Temperature Sensors & Measurement E80 Spring 2014 Contents Why measure temperature? Characteristics of interest Types of temperature sensors 1. Thermistor 2. RTD Sensor 3. Thermocouple 4. Integrated Silicon

More information

Temperature Measurements

Temperature Measurements ME 22.302 Mechanical Lab I Temperature Measurements Dr. Peter Avitabile University of Massachusetts Lowell Temperature - 122601-1 Copyright 2001 A transducer is a device that converts some mechanical quantity

More information

SEN TRONIC AG 1 A 6 6 / "

SEN TRONIC AG 1 A 6 6 / 1A 66/" 0!"#$%&'() %"*+", - %"*.", - /01234%( 34.+*!54%& 0*%/# "6#,7857.'.0" - 6#)9.:. &%&;! 0 &????'.&% )&" 8" @&& (++ '() %('.('/(#$!!! ' %! %!& ;!;8 ;!;8 0 &&'&&;! C;!C&(D"@@ &;! 0&&+%&;! C&=;!C&(D"@@

More information

Thermocouple Calibrations and Heat Transfer Coefficients

Thermocouple Calibrations and Heat Transfer Coefficients Laboratory Experiment 5: Thermocouple Calibrations and Heat Transfer Coefficients Presented to the University of California, San Diego Department of Mechanical and Aerospace Engineering MAE 170 Prepared

More information

MEASURING INSTRUMENTS

MEASURING INSTRUMENTS Albaha University Faculty of Engineering Mechanical Engineering g Department MEASURING INSTRUMENTS AND CALIBRATION Lecture (7) Temperature measurement By: Ossama Abouelatta o_abouelatta@yahoo.com Mechanical

More information

The Underground Experimental Investigation of Thermocouples

The Underground Experimental Investigation of Thermocouples The Underground Experimental Investigation of Thermocouples April 14, 21 Abstract This experiment investigates a K-type thermocouple in order to demonstrate the Seebeck and Peltier coefficients. Temperature

More information

I. Introduction and Objectives

I. Introduction and Objectives Calibration and Measurement of Temperatures using K, T-Type Thermocouples, and a Thermistor Ben Sandoval 1 8/28/2013 Five K and five T type thermocouples were calibrated using ice water, a hot bath (boiling

More information

Using a Mercury itc with thermocouples

Using a Mercury itc with thermocouples Technical Note Mercury Support Using a Mercury itc with thermocouples Abstract and content description This technical note describes how to make accurate and reliable temperature measurements using an

More information

Temperature Measurement and First-Order Dynamic Response *

Temperature Measurement and First-Order Dynamic Response * OpenStax-CNX module: m13774 1 Temperature Measurement and First-Order Dynamic Response * Luke Graham This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 2.0

More information

ME 105 Mechanical Engineering Laboratory Spring Quarter INTRODUCTION TO TRANSIENT CONDUCTION AND CONVECTION

ME 105 Mechanical Engineering Laboratory Spring Quarter INTRODUCTION TO TRANSIENT CONDUCTION AND CONVECTION ME 105 Mechanical Engineering Lab Page 1 ME 105 Mechanical Engineering Laboratory Spring Quarter 2003 2. INTRODUCTION TO TRANSIENT CONDUCTION AND CONVECTION This set of experiments is designed to provide

More information

ASEN 2002 Experimental Laboratory 1: Temperature Measurement and an Blow Dryer Test

ASEN 2002 Experimental Laboratory 1: Temperature Measurement and an Blow Dryer Test ASEN 2002 Experimental Laboratory 1: Temperature Measurement and an Blow Dryer Test Assigned 6 September 2000 Individual Lab Reports due 3 October 2000 OBJECTIVES Learn the basic concepts and definitions

More information

EA Guidelines on the Calibration of Temperature Indicators and Simulators by Electrical Simulation and Measurement

EA Guidelines on the Calibration of Temperature Indicators and Simulators by Electrical Simulation and Measurement Publication Reference EA-10/11 EA Guidelines on the Calibration of Temperature Indicators and Simulators by Electrical PURPOSE This document has been produced by EA as a means of giving advice for calibrating

More information

Exercise 1: Thermistor Characteristics

Exercise 1: Thermistor Characteristics Exercise 1: Thermistor Characteristics EXERCISE OBJECTIVE When you have completed this exercise, you will be able to describe and demonstrate the characteristics of thermistors. DISCUSSION A thermistor

More information

THERMOCOUPLE CHARACTERISTICS TRAINER

THERMOCOUPLE CHARACTERISTICS TRAINER THERMOCOUPLE CHARACTERISTICS TRAINER (Model No : ) User Manual Version 2.0 Technical Clarification /Suggestion : / Technical Support Division, Vi Microsystems Pvt. Ltd., Plot No :75,Electronics Estate,

More information

NEEL Phase Change in Chromium At the Néel Temperature

NEEL Phase Change in Chromium At the Néel Temperature University of Toronto ADVANCED PHYSICS LABOATOY NEEL Phase Change in Chromium At the Néel Temperature evisions: January 2018: January/August 2016: October 2005: Original: Young-June Kim David Bailey

More information

ECNG3032 Control and Instrumentation I

ECNG3032 Control and Instrumentation I sensor ECNG3032 Control and Instrumentation I Lecture 1 Temperature Sensors Sensors The sensor is the first element in the measurement system. Measurand Transducer Principle Excitation Signal Interface

More information

15. Compare the result with the value you have taken above Compare the calculated pressure value with the actual pressure value that you have

15. Compare the result with the value you have taken above Compare the calculated pressure value with the actual pressure value that you have 105) to convert it to. 15. Compare the result with the value you have taken above. 17. 16. Compare the calculated pressure value with the actual pressure value that you have taken from the, is it the same?

More information

4. Thermometry. Temperature and Heat Flow Temperature Scales Thermometers

4. Thermometry. Temperature and Heat Flow Temperature Scales Thermometers 4. Thermometry Measuring temperature by sensation is very imprecise. That is why we need a temperature scale and a thermometer to measure temperature more accurately. Temperature and Heat Flow Temperature

More information

Measurement of Temperature in the Plastics Industry

Measurement of Temperature in the Plastics Industry Sawi Mess- und Regeltechnik AG CH 8405 Winterthur-Gotzenwil, Switzerland Telephone +41 52 320 50 50, Fax +41 52 320 50 55 www.sawi.ch Measurement of Temperature in the Plastics Industry Johannes Wild,

More information

Section 7. Temperature Measurement

Section 7. Temperature Measurement Section 7 Temperature Measurement 7/25/2017 Engineering Measurements 7 1 Working Definition Temperature is a measure of the average kinetic energy of the molecules that make of a substance. After time,

More information

Thermometry. History. History 1/21/18. The art or science of temperature observation

Thermometry. History. History 1/21/18. The art or science of temperature observation Thermometry The art or science of temperature observation History No one person credited with the invention of the thermometer; developed over time Avicenna used this principal to show that hotness and

More information

Lecture 11 Temperature Sensing. ECE 5900/6900 Fundamentals of Sensor Design

Lecture 11 Temperature Sensing. ECE 5900/6900 Fundamentals of Sensor Design EE 4900: Fundamentals of Sensor Design Lecture 11 Temperature Sensing 1 Temperature Sensing Q: What are we measuring? A: Temperature 2 SI Units: Celcius ( C), Kelvin (K) British Units: Fahrenheit ( F)

More information

SENSORS and TRANSDUCERS

SENSORS and TRANSDUCERS SENSORS and TRANSDUCERS Tadeusz Stepinski, Signaler och system The Thermal Energy Domain Physics» Seebeck effect» Peltier effect» Thomson effect Thermal effects in semiconductors Thermoelectric sensors

More information

Critical parameters of

Critical parameters of Critical parameters of superconductors 2005-03-30 Why do this experiment? Superconductivity is a very interesting property from both commercial and basic scientific points of view. Superconductors are

More information

Temperature Measurement

Temperature Measurement Temperature Measurement Temperature is one of the most common measurements What is Temperature? Intuitively understood as sensation of hot/cold Early Researchers: Galileo (1564-1642) Newton (1642-1727)

More information

APPENDIX ELEVEN Open Fire Temperature Measurements

APPENDIX ELEVEN Open Fire Temperature Measurements APPENDIX ELEVEN Open Fire Temperature Measurements Temperatures are usually recorded with alcohol or mercury thermometers, with thermistors or resistance temperature detectors (platinum resistance thermometers),

More information

Tick the box next to those resources for which the Sun is also the source of energy.

Tick the box next to those resources for which the Sun is also the source of energy. 1 (a) The source of solar energy is the Sun. Tick the box next to those resources for which the Sun is also the source of energy. coal geothermal hydroelectric nuclear wind [2] (b) Fig. 4.1 shows a solar

More information

Temperature Measurement

Temperature Measurement Temperature Measurement Concepts Concept from Claudius Galenus 8 Mixtures of Ice/boiling water Latin temperatura (blending/mixing) At left Galileo s Florentine Thermograph Temperature Measurement Florentine

More information

Department of Mechanical Engineering ME 96. Free and Forced Convection Experiment. Revised: 25 April Introduction

Department of Mechanical Engineering ME 96. Free and Forced Convection Experiment. Revised: 25 April Introduction CALIFORNIA INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering ME 96 Free and Forced Convection Experiment Revised: 25 April 1994 1. Introduction The term forced convection refers to heat transport

More information

Good practice guide containing experimental results and recommendations for the selection, preparation and calibration of the temperature sensors

Good practice guide containing experimental results and recommendations for the selection, preparation and calibration of the temperature sensors Good practice guide containing experimental results and recommendations for the selection, preparation and calibration of the temperature sensors 1. Scope... 2 2. Introduction... 2 3. Selection of thermocouples

More information

T h e rm i s t o r s

T h e rm i s t o r s Data Pack E Issued March 00 - T h e rm i s t o r s NTC thermistors The R S range of NTC thermistors includes standard tolerance negative temperature coefficient thermistors, a range of small close tolerance

More information

Part 2. Sensor and Transducer Instrument Selection Criteria (3 Hour)

Part 2. Sensor and Transducer Instrument Selection Criteria (3 Hour) Part 2 Sensor and Transducer Instrument Selection Criteria (3 Hour) At the end of this chapter, you should be able to: Describe the definition of sensor and transducer Determine the specification of control

More information

Electrical and Magnetic Properties of High Temperature Superconductors Using Varying forms of Data Acquisition

Electrical and Magnetic Properties of High Temperature Superconductors Using Varying forms of Data Acquisition Journal of the Advanced Undergraduate Physics Laboratory Investigation Volume 1 Issue 1 Article 3 2013 Electrical and Magnetic Properties of High Temperature Superconductors Using Varying forms of Data

More information

Comparing 2-D Conduction Experiments with Simulation

Comparing 2-D Conduction Experiments with Simulation Comparing 2-D Conduction Experiments with Simulation Introduction Simulation techniques are often used in industry as a beneficial part in the development process whether an engineer or scientist is designing

More information

Experiment FT1: Measurement of Dielectric Constant

Experiment FT1: Measurement of Dielectric Constant Experiment FT1: Measurement of Dielectric Constant Name: ID: 1. Objective: (i) To measure the dielectric constant of paper and plastic film. (ii) To examine the energy storage capacity of a practical capacitor.

More information

ME 365 EXPERIMENT 5 FIRST ORDER SYSTEM IDENTIFICATION APPLIED TO TEMPERATURE MEASUREMENT SYSTEMS

ME 365 EXPERIMENT 5 FIRST ORDER SYSTEM IDENTIFICATION APPLIED TO TEMPERATURE MEASUREMENT SYSTEMS ME 365 EXPERIMENT 5 FIRST ORDER SYSTEM IDENTIFICATION APPLIED TO TEMPERATURE MEASUREMENT SYSTEMS Objectives: In this two week experiment, we will gain familiarity with first order systems by using two

More information

Community College of Allegheny County Unit 9 Page #1. Thermocouples R1 = 1K

Community College of Allegheny County Unit 9 Page #1. Thermocouples R1 = 1K 10K Community College of Allegheny County Unit 9 Page #1 Thermocouples +12V Thermocouple Junction Vin Copper Wire Constantan Wire + - 3 2 741 7 4 1 5-12V 6 V Vout R1 = 1K Rf = 100K Engineers are not expected

More information

DATA SHEET. Thermocouple module with digital I²C-Interface - THMOD-I²C. Characteristic features. Areas of application. Features.

DATA SHEET. Thermocouple module with digital I²C-Interface - THMOD-I²C. Characteristic features. Areas of application. Features. Description Characteristic features Industrial temperature measuring method Wide measuring range, -270...+1360 C Digital I²C-interface Simple integration to micro-controller Scope of supply with thermocouple,

More information

EXPERIMENT VARIATION OF THERMO-EMF WITH TEMPERATURE. Structure. 7.1 Introduction Objectives

EXPERIMENT VARIATION OF THERMO-EMF WITH TEMPERATURE. Structure. 7.1 Introduction Objectives EXPERIMENT 7 VARIATION OF THERMO-EMF WITH TEMPERATURE Thermo-EMF Structure 7.1 Introduction Objectives 7.2 Working Principle of a Potentiometer 7.3 Measurement of Thermo-EMF and its Variation with Temperature

More information

PHYS 352 Assignment #1 Solutions

PHYS 352 Assignment #1 Solutions PHYS 352 Assignment #1 Solutions 1. Steinhart-Hart Equation for a thermistor In[1]:= a : 0.00128 In[2]:= b : 0.000236 In[3]:= In[4]:= d : 9.27 10^ 8 t r_ : a b Log r d Log r ^3 ^ 1 Note: Mathematica Log

More information

SEMICONDUCTOR THERMAL MEASUREMENT PROCEDURE

SEMICONDUCTOR THERMAL MEASUREMENT PROCEDURE SEMICONDUCTOR TERMAL MEASUREMENT PROCEDURE The following general procedure is equally applicable to either JEDEC or SEMI thermal measurement standards for integrated circuits and thermal test die. 1. Determine

More information

Uncertainty Workshop: Overview of uncertainty factors in HTGHPs

Uncertainty Workshop: Overview of uncertainty factors in HTGHPs Uncertainty Workshop: Overview of uncertainty factors in HTGHPs EMRP Final Stakeholder Meeting NPL, Teddington, United Kingdom 1 DIN/EU Standards for GHPs ISO 830:1991 Thermal insulation Determination

More information

Pre-Lab Quiz / PHYS 224. R-C Circuits. Your Name Lab Section

Pre-Lab Quiz / PHYS 224. R-C Circuits. Your Name Lab Section Pre-Lab Quiz / PHYS 224 R-C Circuits Your Name Lab Section 1. What do we investigate in this lab? 2. For the R-C circuit shown in Figure 1 on Page 3, RR = 100 ΩΩ and CC = 1.00 FF. What is the time constant

More information

c. VH: Heating voltage between the collector and emitter.

c. VH: Heating voltage between the collector and emitter. TERMAL IMPEDANCE MEASUREMENTS FOR INSULATED GATE BIPOLAR TRANSISTORS (DELTA GATE-EMITTER ON VOLTAGE METOD) 1. Purpose. The purpose of this test method is to measure the thermal impedance of the IGBT under

More information

Process Control Instrumentation Technology Curtis D. Johnson Eighth Edition

Process Control Instrumentation Technology Curtis D. Johnson Eighth Edition Process Control Instrumentation Technology Curtis D. Johnson Eighth Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Visit us

More information

Thermocouples calibration and analysis of the influence of the length of the sensor coating

Thermocouples calibration and analysis of the influence of the length of the sensor coating Journal of Physics: Conference Series OPEN ACCESS Thermocouples calibration and analysis of the influence of the length of the sensor coating To cite this article: M Noriega et al 2015 J. Phys.: Conf.

More information

UMEÅ UNIVERSITY Department of Physics Agnieszka Iwasiewicz Leif Hassmyr Ludvig Edman SOLID STATE PHYSICS HALL EFFECT

UMEÅ UNIVERSITY Department of Physics Agnieszka Iwasiewicz Leif Hassmyr Ludvig Edman SOLID STATE PHYSICS HALL EFFECT UMEÅ UNIVERSITY Department of Physics 2004-04-06 Agnieszka Iwasiewicz Leif Hassmyr Ludvig Edman SOLID STATE PHYSICS HALL EFFECT 1. THE TASK To measure the electrical conductivity and the Hall voltage for

More information

Now let s look at some devices that don t have a constant resistance.

Now let s look at some devices that don t have a constant resistance. Lab #3 Now let s look at some devices that don t have a constant resistance. This is the same circuit you built last time. But now, in place of the resistor first build the circuit with a light bulb, then

More information

MECHATRONICS II LABORATORY Experiment #4: First-Order Dynamic Response Thermal Systems

MECHATRONICS II LABORATORY Experiment #4: First-Order Dynamic Response Thermal Systems MECHATRONICS II LABORATORY Experiment #4: First-Order Dynamic Response Thermal Systems The simplest dynamic system is a linear first order system. The time response of a first-order system is exponential.

More information

Experiment 3. Electrical Energy. Calculate the electrical power dissipated in a resistor.

Experiment 3. Electrical Energy. Calculate the electrical power dissipated in a resistor. Experiment 3 Electrical Energy 3.1 Objectives Calculate the electrical power dissipated in a resistor. Determine the heat added to the water by an immersed heater. Determine if the energy dissipated by

More information

Week 14 The Simple Pendulum

Week 14 The Simple Pendulum Week 14 The Simple Pendulum 1. Scope 1.1 Goal Conduct experiment to study the simple harmonic motion of an oscillatory pendulum and analyze and interpret the data 1.2 Units of measurement to use United

More information

Cryogenic Instrumentation I Thermometry OUTLINE Thermometry Pt (pure metal) Temperature Ranges of Thermometer Application Typical Resistive Thermal

Cryogenic Instrumentation I Thermometry OUTLINE Thermometry Pt (pure metal) Temperature Ranges of Thermometer Application Typical Resistive Thermal Cryogenic Instrumentation I 1. Thermometry 2. anges of Application 3. Constant Volume 4. Thermocouples 5. Time esponse Data 6. 4 Terminal esistance Measurement OUTLINE 8. Pt (pure metal) 9. Typical esistive

More information

Professional Article. Fire and Ice

Professional Article. Fire and Ice Professional Article Fire and Ice Professional Article Spectrumanalysis Fire and Ice Temperature measurement is important in the industry. In the chemical industry as well as for environmental protection

More information

Technical Notes. Introduction. PCB (printed circuit board) Design. Issue 1 January 2010

Technical Notes. Introduction. PCB (printed circuit board) Design. Issue 1 January 2010 Technical Notes Introduction Thermal Management for LEDs Poor thermal management can lead to early LED product failure. This Technical Note discusses thermal management techniques and good system design.

More information

Slide 1. Temperatures Light (Optoelectronics) Magnetic Fields Strain Pressure Displacement and Rotation Acceleration Electronic Sensors

Slide 1. Temperatures Light (Optoelectronics) Magnetic Fields Strain Pressure Displacement and Rotation Acceleration Electronic Sensors Slide 1 Electronic Sensors Electronic sensors can be designed to detect a variety of quantitative aspects of a given physical system. Such quantities include: Temperatures Light (Optoelectronics) Magnetic

More information

PURPOSE: See suggested breadboard configuration on following page!

PURPOSE: See suggested breadboard configuration on following page! ECE4902 Lab 1 C2011 PURPOSE: Determining Capacitance with Risetime Measurement Reverse Biased Diode Junction Capacitance MOSFET Gate Capacitance Simulation: SPICE Parameter Extraction, Transient Analysis

More information

Module 1 Units 3,4,5

Module 1 Units 3,4,5 Module 1 Units 3,4,5 1. What is matter? Anything that occupies space or has mass 2. What are the two general categories of substances? Elements and compounds 3. How many naturally occurring elements are

More information

Transducer. A device to which change or converts physical quantity in a more easily measurable quantity. Transducer. (Input) Sensor.

Transducer. A device to which change or converts physical quantity in a more easily measurable quantity. Transducer. (Input) Sensor. Transducer A device to which change or converts physical quantity in a more easily measurable quantity Transducer (Input) Sensor (Output) Actuator Sensor A device which senses and detects the physical

More information

Base metal thermocouples drift rate dependence from thermoelement diameter

Base metal thermocouples drift rate dependence from thermoelement diameter Journal of Physics: Conference Series OPEN ACCESS Base metal thermocouples drift rate dependence from thermoelement diameter To cite this article: P Pavlasek et al 2015 J. Phys.: Conf. Ser. 588 012016

More information

Experiment A4 Sensor Calibration Procedure

Experiment A4 Sensor Calibration Procedure Experiment A4 Sensor Calibration Procedure Deliverables: Checked lab notebook, Brief technical memo Safety Note: Heat gloves and lab coats must be worn when dealing with boiling water. Open-toed shoes

More information

EMRP ENG05 Metrology for Solid State Lighting D2.4.1 Report on junction temperature vs. voltage characteristics for the selected SSL

EMRP ENG05 Metrology for Solid State Lighting D2.4.1 Report on junction temperature vs. voltage characteristics for the selected SSL EMRP ENG05 Metrology for Solid State Lighting D2.4.1 Report on junction temperature vs. voltage characteristics for the selected SSL György Andor, MKEH Petri Kärhä, Aalto University Introduction Five different

More information

CHAPTER 4 THERMAL CONDUCTIVITY AND VISCOSITY MEASUREMENTS

CHAPTER 4 THERMAL CONDUCTIVITY AND VISCOSITY MEASUREMENTS 50 CHAPTER 4 THERMAL CONDUCTIVITY AND VISCOSITY MEASUREMENTS 4.1 INTRODUCTION In the development of any energy-efficient heat transfer fluids for enhanced heat transfer performance, in practical applications,

More information

Study of Resistance Components

Study of Resistance Components Study of Resistance Components Purpose: The purpose of this exercise is to apply fundamental electrical circuit concepts to determine the response of electrical components subjected to a mechanical input

More information

TEST METHOD FOR STILL- AND FORCED-AIR JUNCTION-TO- AMBIENT THERMAL RESISTANCE MEASUREMENTS OF INTEGRATED CIRCUIT PACKAGES

TEST METHOD FOR STILL- AND FORCED-AIR JUNCTION-TO- AMBIENT THERMAL RESISTANCE MEASUREMENTS OF INTEGRATED CIRCUIT PACKAGES SEMI G38-0996 N/A SEMI 1987, 1996 TEST METHOD FOR STILL- AND FORCED-AIR JUNCTION-TO- AMBIENT THERMAL RESISTANCE MEASUREMENTS OF INTEGRATED CIRCUIT PACKAGES 1 Purpose The purpose of this test is to determine

More information

Resistivity and Temperature Coefficients (at 20 C)

Resistivity and Temperature Coefficients (at 20 C) Homework # 4 Resistivity and Temperature Coefficients (at 0 C) Substance Resistivity, Temperature ( m) Coefficient, (C ) - Conductors Silver.59 x 0-0.006 Copper.6 x 0-0.006 Aluminum.65 x 0-0.0049 Tungsten

More information

Harnessing the Power of Arduino for the Advanced Lab

Harnessing the Power of Arduino for the Advanced Lab P P Herbert Jaeger + Harnessing the Power of Arduino for the Advanced Lab (Final Version) ALPhA Immersion Workshop July 27 29, 2017 Department of Physics Indiana University Purdue University Ft. Wayne,

More information

Lab 1f Boiling Heat Transfer Paradox

Lab 1f Boiling Heat Transfer Paradox Lab 1f Boiling Heat Transfer Paradox OBJECTIVES Warning: though the experiment has educational objectives (to learn about boiling heat transfer, etc.), these should not be included in your report. - Obtain

More information

Pin Fin Lab Report Example. Names. ME331 Lab

Pin Fin Lab Report Example. Names. ME331 Lab Pin Fin Lab Report Example Names ME331 Lab 04/12/2017 1. Abstract The purposes of this experiment are to determine pin fin effectiveness and convective heat transfer coefficients for free and forced convection

More information

Control Engineering BDA30703

Control Engineering BDA30703 Control Engineering BDA30703 Lecture 4: Transducers Prepared by: Ramhuzaini bin Abd. Rahman Expected Outcomes At the end of this lecture, students should be able to; 1) Explain a basic measurement system.

More information

AE 3051, Lab #16. Investigation of the Ideal Gas State Equation. By: George P. Burdell. Group E3

AE 3051, Lab #16. Investigation of the Ideal Gas State Equation. By: George P. Burdell. Group E3 AE 3051, Lab #16 Investigation of the Ideal Gas State Equation By: George P. Burdell Group E3 Summer Semester 000 Abstract The validity of the ideal gas equation of state was experimentally tested for

More information

ME 4/549 Lab Assignment 5: Single Block Experiment Spring 2006 due 1 June 2006

ME 4/549 Lab Assignment 5: Single Block Experiment Spring 2006 due 1 June 2006 ME 4/549 Lab Assignment 5: Single Block Experiment Spring 2006 due 1 June 2006 version May 23, 2006 1 Objective The objective of the laboratory exercise is to measure the convective heat transfer coefficient

More information

Measurement of Electrical Resistance and Ohm s Law

Measurement of Electrical Resistance and Ohm s Law Measurement of Electrical Resistance and Ohm s Law Objectives In this experiment, measurements of the voltage across a wire coil and the current in the wire coil will be used to accomplish the following

More information

Module 4 : THERMOELECTRICITY Lecture 21 : Seebeck Effect

Module 4 : THERMOELECTRICITY Lecture 21 : Seebeck Effect Module 4 : THERMOELECTRICITY Lecture 21 : Seebeck Effect Objectives In this lecture you will learn the following Seebeck effect and thermo-emf. Thermoelectric series of metals which can be used to form

More information

Chapter 1. Blackbody Radiation. Theory

Chapter 1. Blackbody Radiation. Theory Chapter 1 Blackbody Radiation Experiment objectives: explore radiation from objects at certain temperatures, commonly known as blackbody radiation ; make measurements testing the Stefan-Boltzmann law in

More information

Measurement in Engineering

Measurement in Engineering Measurement in Engineering Responsible person for the course: Ing. Martin Novak, Ph.D. Report on the laboratory experiment Measurement of temperature of the 12.10.10 - made by Sebastian Kößler Report on

More information

PHYS208 RECITATIONS PROBLEMS: Week 2. Gauss s Law

PHYS208 RECITATIONS PROBLEMS: Week 2. Gauss s Law Gauss s Law Prob.#1 Prob.#2 Prob.#3 Prob.#4 Prob.#5 Total Your Name: Your UIN: Your section# These are the problems that you and a team of other 2-3 students will be asked to solve during the recitation

More information

MCP9700/9700A MCP9701/9701A

MCP9700/9700A MCP9701/9701A Low-Power Linear Active Thermistor ICs Features Tiny Analog Temperature Sensor Available Packages: SC-70-5, SOT-23-5, TO-92-3 Wide Temperature Measurement Range: - -40 C to +125 C Accuracy: - ±2 C (max.),

More information

Sensors and Actuators Sensors Physics

Sensors and Actuators Sensors Physics Sensors and Actuators Sensors Physics Sander Stuijk (s.stuijk@tue.nl) Department of Electrical Engineering Electronic Systems HEMOESISIVE SENSOS (Chapter 16.3) 3 emperature sensors placement excitation

More information

Making Temperature Measurements

Making Temperature Measurements Making Temperature Measurements using Measurement Computing DQ Products THERMOCOUPLE BSICS The Gradient Nature of Thermocouples Thermocouples (TCs) are probably the most widely used and least understood

More information

An Electronic Thermal Transducer

An Electronic Thermal Transducer An Electronic Thermal Transducer PRJ NO: 16 By Okore Daniel F17/969/ Supervisor : Dr. Mwema Examiner: Dr. Abungu INTRODUCTION The aim of this project was to design and implement a temperature sensor in

More information

Chemistry 212 Lab, Spring Design of the Experiment: Standard and Non-Standard Reduction Potentials For Metal/Metal Ion Half-Cells

Chemistry 212 Lab, Spring Design of the Experiment: Standard and Non-Standard Reduction Potentials For Metal/Metal Ion Half-Cells Chemistry 212 Lab, Spring 2009 Electrochemical Cells: Determination of Reduction Potentials for a Series of Metal/Metal Ion Systems, Verification of Nernst Equation, and Determination of Formation Constant

More information

Thermal Characterization of Packaged RFIC, Modeled vs. Measured Junction to Ambient Thermal Resistance

Thermal Characterization of Packaged RFIC, Modeled vs. Measured Junction to Ambient Thermal Resistance Thermal Characterization of Packaged RFIC, Modeled vs. Measured Junction to Ambient Thermal Resistance Steven Brinser IBM Microelectronics Abstract Thermal characterization of a semiconductor device is

More information

MODEL FOR UNCERTAINTY ESTIMATION IN COMPARISON CALIBRATION OF THERMOCOUPLES

MODEL FOR UNCERTAINTY ESTIMATION IN COMPARISON CALIBRATION OF THERMOCOUPLES XVII IMEKO World Congress Metrology in the 3rd Millennium June 7, 003, Dubrovnik, Croatia MODEL OR UNCERTAINTY ESTIMATION IN COMPARISON CALIBRATION O THERMOCOUPLES Georges Bonnier, Eliane Renaot, DavorZvizdic,

More information

ELECTRICITY UNIT REVIEW

ELECTRICITY UNIT REVIEW ELECTRICITY UNIT REVIEW S1-3-04: How does the Atomic Model help to explain static electricity? 1. Which best describes static electricity? a) charges that can be collected and held in one place b) charges

More information

Experiment 12: Superconductivity

Experiment 12: Superconductivity Experiment 12: Superconductivity Using a superconducting ceramic disk (composition: YBa 2 Cu 3 0 7 ), you will demonstrate the Meissner effect (by magnetic levitation) and measure its critical temperature.

More information

Review of Ohm's Law: The potential drop across a resistor is given by Ohm's Law: V= IR where I is the current and R is the resistance.

Review of Ohm's Law: The potential drop across a resistor is given by Ohm's Law: V= IR where I is the current and R is the resistance. DC Circuits Objectives The objectives of this lab are: 1) to construct an Ohmmeter (a device that measures resistance) using our knowledge of Ohm's Law. 2) to determine an unknown resistance using our

More information