LABORATORY NUMBER 9 STATISTICAL ANALYSIS OF DATA

Size: px
Start display at page:

Download "LABORATORY NUMBER 9 STATISTICAL ANALYSIS OF DATA"

Transcription

1 LABORATORY NUMBER 9 STATISTICAL ANALYSIS OF DATA 1.0 INTRODUCTION The purpose of this laboratory is to introduce the student to the use of statistics to analyze data. Using the data acquisition system (DAS), the student will take data for two different experiments, then use a statistical analysis program and a spreadsheet program for analysis. In the first experiment, a tank of air will be discharged and the internal pressure and temperature measured. We will then correlate the temperature with the pressure. The purpose of this experiment is that it represents a simple real world situation and the correlation can be expected to be good but some data scatter can be expected. In this case, we know the expected outcome based on thermodynamics theory but this kind of experiment could be used in the other direction -- i.e., to deduce the theory from experimental measurements. In the second experiment, the voltage of a capacitor draining to ground through a resistance will be measured as a function of time. Resistors, capacitors and inductors are close to ideal devices and since we are measuring only voltages, we would expect very little data scatter and we expect very good correlation of the data. In this case, theory tells us that the natural log of the voltage should be a linear function of time. 2.0 BLOWDOWN OF AN AIR TANK 2.1 EXPERIMENTAL EQUIPMENT The apparatus, sketched in Figure 9.1 for the first experiment consists of a small compressed air tank, a pressure transducer and a battery power supply, a bourdon type pressure gage and a thermocouple to measure the tank air temperature relative to a reference thermocouple placed in an ice bath (or alternatively, an electronic ice reference simulator). 2.2 BLOWDOWN THEORY Figure 9.1 Blowdown Experiment If T i and P i are the initial values of temperature and pressure respectively, then thermodynamics predicts that the temperature dependence on pressure is: ( ) ( ) where n is called the "polytropic" exponent. If the process is reversible and adiabatic, then n is equal to k, the specific heat ratio which for air has a value of 1.4. This process is not adiabatic and it is expected that n will differ from 1.4. If we take the logarithm of both sides of the above equation, we would expect the following 9.1

2 linear relationship: ( ) [ ( ) ] ( ) Taking the logarithms of our data, we can see how well they agree with this prediction and find the value of n for our experiment. The tank should be initially charged to a pressure of ~100 psi. The instructor will instruct you on how to charge the tank. Prepare an ice bath for the reference thermocouple. (Alternatively, you may be supplied with an electronic ice reference. This is a device which simulates the voltage of a thermocouple at 0 C.) Turn on the DAS and when Windows has loaded, start LabVIEW and load the program Lab9_blowdown.vi from the folder entitled ENGR 300 Labs located on the Desktop. When you are ready to collect data, open the valve on the tank about 1/2 turn to start the transient and then press the run button ( ) on the LabVIEW toolbar. Open the valve the rest of the way until it is wide open. Data will be saved to the Desktop to a file titled Lab9_blowdown_data.xls where the first column is the pressure transducer output in kpa (absolute pressure) and the second column is the thermocouple output (in Kelvin). 3.0 DISCHARGE OF A CAPACITOR 3.1 EXPERIMENTAL EQUIPMENT This experiment consists of a capacitor connected to ground through a resistor as shown in Figure EXPERIMENTAL PROCEDURE Initially, the battery is used to charge the capacitor. At the start of the measurements, a momentary switch connecting the charging battery is released and the battery voltage then decays in an exponential manner. The value of the capacitor and the resistor are shown on the apparatus and you should be able to predict the resulting voltage transient. The purpose of this experiment however is not to demonstrate the validity of the theory but to show that statistical analysis through the correlation coefficient can demonstrate that there is a functional relationship between voltage of the capacitor and time. To collect data, open the file Lab9_C_discharge.vi in LabVIEW. Make sure that the output of the metal project box is connected to analog input 0 on the DAS input box. Hold down the momentary switch on the metal project box, press the run button ( ) on the LabVIEW toolbar, then release the momentary switch. The LabVIEW VI will save data to the Desktop to the file Lab9_data.xls, with the first column representing the time in seconds and the second column representing the output voltage (in volts). 9.2

3 4.0 STATISTICAL EVALUATION OF YOUR RESULTS Although you have a large number of data points, you will find that you can use a spreadsheet program to perform the evaluations quite easily. There is an attached data reduction procedure which explains how to reduce your data using a spreadsheet program. You may use this procedure, or you may also use other software applications such as Matlab or modify the LabVIEW VI accordingly (if you do the latter, save the modified VI using a different filename!). The results you are to produce for the first experiment are: 1. The linear correlation coefficient for absolute temperature versus absolute pressure 2. The linear correlation coefficient for ln(t) versus ln(p) 3. The coefficients for the best fit straight line for the ln(t) versus ln(p) data 4. A plot showing the T vs P data (as a series of lines connecting the data points but not showing the data points themselves) and the best fit straight line. A similar plot for ln(t) vs ln(p) For the second experiment the required results are: 1. The linear correlation coefficient for voltage versus time 2. The linear correlation coefficient for ln(voltage) versus time 3. The coefficients for a least squares fit line of voltage versus time 4. The coefficients for a least squares fit line of ln(voltage) versus time 5. A plot of the data and fitted line for voltage versus time 6. A plot of the data and fitted line for ln(voltage) versus time 9.3

4 5.0 DATA REDUCTION PROCEDURE One purpose of Experiment 9 is to demonstrate how a data acquisition system can be used to take and statistically analyze large volumes of data. The following describes a procedure which can be used to do this for each of the two experiments performed for Experiment 9. Note that the LabVIEW VIs can be modified to carry out the statistical data analysis after the data is collected. This has not been done so that the student can practice carrying out the data analysis procedure. An outline of the procedure using Microsoft Excel is as follows: 1. Take the data using LabVIEW VI 2. Import the data into EXCEL. 3. Use EXCEL to calculate the required logarithms 4. Use EXCEL to find the correlation coefficients and least squares lines. 5. Create columns of the require least square fits to the data 6. Create the required plots. STATISTICAL ANALYSIS USING EXCEL The following material explains how functions in Excel can be used to compute the correlation coefficient for two columns of data and to compute the least squares best fit line for two columns of data. Consider that values of the independent variable (x) are contained in a column, for example B2:B20 and that the values of the dependent variable are contained in a separate column, for example D2:D20. To find the correlation coefficient between the y and the x variables, perform the following steps: 1. Find a clear block on the spreadsheet at least 3 rows high and 2 columns wide. 2. In the top leftmost cell of this block type Rxy= 3. In the cell to the right of the Rxy= label cell, type =CORREL(D2:D20,B2:B20) and then Return. 4. The correlation coefficient for the two data columns should appear. To find the coefficients of the best fit straight line y = ax + b, perform the following steps: 1. Locate the cursor below the cell labeled Rxy and type the title a= 2. In the cell to the right of the a= label cell, type =SLOPE(D2:D20,B2:B20) and then Return. The value of the slope a will appear. 3. In the cell below a= type b= 4. In the cell to the right of the b= cell type =INTERCEPT(D2:D20,B2:B20) and then Return. The value of the intecept b will appear. 9.4

5 Note: For the functions SLOPE and INTERCEPT, the block for the y values as the first argument and the block for the x values appears second. Alternatively you can find the correlation coefficient and the least squares line using the plotting functions of Excel, or even the statistical functions of Excel s Analysis ToolPak. Note however that the Analysis ToolPak is an optional installation item and may or may not be installed on your computer. 6.0 THE REPORT This lab is to be reported in a format specified by the instructor. What differences did you observe in the character of the results for the two experiments? Can you explain any irregularity in the data for the blowdown experiment? 9.5

6 SUPPLEMENTARY INFORMATION FOR LABORATORY 9 STATISTICAL ANALYSIS OF DATA 1.0 INTRODUCTION TO STATISTICAL ANALYSIS OF DATA Engineering experiments can be performed for a variety of reasons. One is to simply determine if an engineered system performs according to its design specifications. In this case, the test data is simply compared to the desired or expected performance. In another kind of experiment, data is taken to confirm a preexisting theory and the test data is compared to the theory (or possible a revised theory). In other more exploratory test, the functional behavior of the test data is unknown in advance and it is desired to establish a non- theory based functional relationship. This is known as data correlation. Correlation may also be used in cases where the exact functional relationship is unknown but there is some knowledge about the underlying theory. Two important techniques in correlating data are the Correlation Coefficient and Regression Analysis of which the simplest method is the Least Squares Linear Fit. 2.0 THE CORRELATION COEFFICIENT There are several common statistical techniques which can be used to advantage to correlate data. One of these is to establish the correlation coefficient for a set of experimental variables. The correlation coefficient is a number whose magnitude can be used to determine if there in fact exists a functional relationship between two measured variables. For example, one might expect a very weak correlation between exam scores and the height of the student. On the other hand, we might expect a fairly strong correlation between the total electric power delivered by PG&E and the time of the day. The correlation coefficient is a number which can be used to measure the degree of correlation between two variables. If we have two variables x and y and our experiment yields a set of n data points (xi, yi), i=1, n, then we can compute the linear correlation coefficient from: ( )( ) [ ( ) ( ) ] where x and y are the mean values of x and y obtained experimentally and are given by: r xy should lie in the range from -1 to +1. A value of +1 would indicate a perfectly linear relationship between the variables with a positive slope, i.e. increasing x results in increasing y. A value of -1 indicates a perfectly linear relationship with negative slope, i.e. increasing x produces decreasing y. A value of zero indicates there is no linear correlation between the variables. 9.6

7 In fact, there is probably no correlation if the absolute value of r xy is simply a small number. Ordinary random variations in the measurements will usually result in a nonzero value of r xy even if there is no relationship between them at all. Based on statistical theory, values of r have been established to which r xy can be compared in order to determine if there is a significant correlation between the two variables. For two variables, n data pairs and assuming that the correlation coefficient could be positive or negative, the appropriate values of r for significance are given in the attached table. It is a function of the number of samples and the confidence interval. For common engineering purposes, the confidence interval is usually taken as 95% which corresponds to a value of of 5%. For a given set of data, we get r t from the table and compare it to the value of r xy computed from the data. If r xy > r t, then we can presume that y does depend on x in a non-random manner and can expect a linear relationship will offer some approximation of the true functional relationship between x and y. A very low value of r xy does not necessarily mean there is no correlation - the functional relationship might be very non-linear - a circle for example. 3.0 THE LEAST SQUARES LINEAR FIT We now go on to a method to fit a function to the data. The simplest function is a straight line of the form y = ax + b. If we only have two pairs of data, the solution is simple since the points completely determine the straight line. If there are more points, then we want to determine a "best fit" to the data. The most common method for finding this best fit is the method of least squares. The test data consist of data pairs (xi, yi). For each value of x i, we can predict a value of y according to the linear relationship y = ax + b. These predicted values are called Yi. For each value of xi, we then have an error e i = (Y i - y i ) and e i 2 = (Yi - yi) 2 = (axi + b - y i ) 2 The sum of the squared errors for all the data points is then: ( ) We now choose a and b to minimize S by differentiating S wrt a and b and setting the results to zero: ( ) ( ) These two equations can be solved simultaneously for a and b. 9.7

8 The results are: ( ) ( ) The resulting line is called the least squares best fit to the data. This procedure can be applied to functions more complicated that a straight line, a second order parabola for example. Higher order fits are not considered in this experiment. 9.8

Lab 10: DC RC circuits

Lab 10: DC RC circuits Name: Lab 10: DC RC circuits Group Members: Date: TA s Name: Objectives: 1. To understand current and voltage characteristics of a DC RC circuit 2. To understand the effect of the RC time constant Apparatus:

More information

PHYS 2212L - Principles of Physics Laboratory II

PHYS 2212L - Principles of Physics Laboratory II PHYS 2212L - Principles of Physics Laboratory II Laboratory Advanced Sheet Resistors 1. Objectives. The objectives of this laboratory are a. to verify the linear dependence of resistance upon length of

More information

The Coupled Pendulum Experiment

The Coupled Pendulum Experiment The Coupled Pendulum Experiment In this lab you will briefly study the motion of a simple pendulum, after which you will couple two pendulums and study the properties of this system. 1. Introduction to

More information

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction Switch Lab 6. Circuits ower upply Goals + + R 5 V Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction Switch Lab 6. Circuits ower upply Goals + + R 5 V Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

Laboratory 3 Measuring Capacitor Discharge with the MicroBLIP

Laboratory 3 Measuring Capacitor Discharge with the MicroBLIP Laboratory 3 page 1 of 6 Laboratory 3 Measuring Capacitor Discharge with the MicroBLIP Introduction In this lab, you will use the MicroBLIP in its Data Acquisition Mode to sample the voltage over time

More information

RC Circuit Lab - Discovery PSI Physics Capacitors and Resistors

RC Circuit Lab - Discovery PSI Physics Capacitors and Resistors 1 RC Circuit Lab - Discovery PSI Physics Capacitors and Resistors Name Date Period Purpose The purpose of this lab will be to determine how capacitors behave in R-C circuits. The manner in which capacitors

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor.

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Experiment 4 RC Circuits 4.1 Objectives Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Graphically determine the time constant τ for the decay. 4.2

More information

ENERGY AND TIME CONSTANTS IN RC CIRCUITS By: Iwana Loveu Student No Lab Section: 0003 Date: February 8, 2004

ENERGY AND TIME CONSTANTS IN RC CIRCUITS By: Iwana Loveu Student No Lab Section: 0003 Date: February 8, 2004 ENERGY AND TIME CONSTANTS IN RC CIRCUITS By: Iwana Loveu Student No. 416 614 5543 Lab Section: 0003 Date: February 8, 2004 Abstract: Two charged conductors consisting of equal and opposite charges forms

More information

Class #12: Experiment The Exponential Function in Circuits, Pt 1

Class #12: Experiment The Exponential Function in Circuits, Pt 1 Class #12: Experiment The Exponential Function in Circuits, Pt 1 Purpose: The objective of this experiment is to begin to become familiar with the properties and uses of the exponential function in circuits

More information

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction Switch Lab 9. Circuits ower upply Goals + + R 5 V Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

University of TN Chattanooga Physics 1040L 8/18/2012 PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB

University of TN Chattanooga Physics 1040L 8/18/2012 PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB OBJECT: To study the discharging of a capacitor and determine the time constant for a simple circuit. APPARATUS: Capacitor (about 24 μf), two resistors (about

More information

EXPERIMENT 5A RC Circuits

EXPERIMENT 5A RC Circuits EXPERIMENT 5A Circuits Objectives 1) Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. 2) Graphically determine the time constant for the decay, τ =.

More information

Newton s Second Law. Computer with Capstone software, motion detector, PVC pipe, low friction cart, track, meter stick.

Newton s Second Law. Computer with Capstone software, motion detector, PVC pipe, low friction cart, track, meter stick. F = m a F = m a Newton s Second Law 1 Object To investigate, understand and verify the relationship between an object s acceleration and the net force acting on that object as well as further understand

More information

PHYS 2211L - Principles of Physics Laboratory I

PHYS 2211L - Principles of Physics Laboratory I PHYS 2211L - Principles of Physics Laboratory I Laboratory Advanced Sheet Acceleration Due to Gravity 1. Objectives. The objectives of this laboratory are a. To measure the local value of the acceleration

More information

Practical 1 RC Circuits

Practical 1 RC Circuits Objectives Practical 1 Circuits 1) Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. 2) Graphically determine the time constant for the decay, τ =.

More information

Lab 5 RC Circuits. What You Need To Know: Physics 212 Lab

Lab 5 RC Circuits. What You Need To Know: Physics 212 Lab Lab 5 R ircuits What You Need To Know: The Physics In the previous two labs you ve dealt strictly with resistors. In today s lab you ll be using a new circuit element called a capacitor. A capacitor consists

More information

EXPERIMENT 4 ONE DIMENSIONAL MOTION

EXPERIMENT 4 ONE DIMENSIONAL MOTION EXPERIMENT 4 ONE DIMENSIONAL MOTION INTRODUCTION This experiment explores the meaning of displacement; velocity, acceleration and the relationship that exist between them. An understanding of these concepts

More information

PHYS 1111L - Introductory Physics Laboratory I

PHYS 1111L - Introductory Physics Laboratory I PHYS 1111L - Introductory Physics Laboratory I Laboratory Advanced Sheet Acceleration Due to Gravity 1. Objectives. The objectives of this laboratory are a. To measure the local value of the acceleration

More information

Lab 4 RC Circuits. Name. Partner s Name. I. Introduction/Theory

Lab 4 RC Circuits. Name. Partner s Name. I. Introduction/Theory Lab 4 RC Circuits Name Partner s Name I. Introduction/Theory Consider a circuit such as that in Figure 1, in which a potential difference is applied to the series combination of a resistor and a capacitor.

More information

Ideal Gas Law and Absolute Zero

Ideal Gas Law and Absolute Zero Experiment IX Ideal Gas Law and Absolute Zero I. Purpose The purpose of this lab is to examine the relationship between the pressure, volume and temperature of air in a closed chamber. To do this, you

More information

Lab 6. RC Circuits. Switch R 5 V. ower upply. Voltmete. Capacitor. Goals. Introduction

Lab 6. RC Circuits. Switch R 5 V. ower upply. Voltmete. Capacitor. Goals. Introduction Switch ower upply Lab 6. RC Circuits + + R 5 V Goals Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT. Physics 211 E&M and Quantum Physics Spring Lab #4: Electronic Circuits I

NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT. Physics 211 E&M and Quantum Physics Spring Lab #4: Electronic Circuits I NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT Physics 211 E&M and Quantum Physics Spring 2018 Lab #4: Electronic Circuits I Lab Writeup Due: Mon/Wed/Thu/Fri, Feb. 12/14/15/16, 2018 Background The concepts

More information

( ) ( ) = q o. T 12 = τ ln 2. RC Circuits. 1 e t τ. q t

( ) ( ) = q o. T 12 = τ ln 2. RC Circuits. 1 e t τ. q t Objectives: To explore the charging and discharging cycles of RC circuits with differing amounts of resistance and/or capacitance.. Reading: Resnick, Halliday & Walker, 8th Ed. Section. 27-9 Apparatus:

More information

2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM FREE-RESPONSE QUESTIONS

2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM FREE-RESPONSE QUESTIONS 2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM In the circuit shown above, resistors 1 and 2 of resistance R 1 and R 2, respectively, and an inductor of inductance L are connected to a battery of emf e and

More information

Precalculations Individual Portion Correlation and Regression: Statistical Analysis of Trends

Precalculations Individual Portion Correlation and Regression: Statistical Analysis of Trends Name: Date of lab: Section number: M E 345. Lab 3 Precalculations Individual Portion Correlation and Regression: Statistical Analysis of Trends Precalculations Score (for instructor or TA use only): /

More information

LAB 3 INSTRUCTIONS SIMPLE LINEAR REGRESSION

LAB 3 INSTRUCTIONS SIMPLE LINEAR REGRESSION LAB 3 INSTRUCTIONS SIMPLE LINEAR REGRESSION In this lab you will first learn how to display the relationship between two quantitative variables with a scatterplot and also how to measure the strength of

More information

Switch + R. ower upply. Voltmete. Capacitor. Goals. Introduction

Switch + R. ower upply. Voltmete. Capacitor. Goals. Introduction Lab 6. Switch RC Circuits ower upply Goals To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and to compare + the result

More information

LAB 3: Capacitors & RC Circuits

LAB 3: Capacitors & RC Circuits LAB 3: Capacitors & C Circuits Name: Circuits Experiment Board Wire leads Capacitors, esistors EQUIPMENT NEEDED: Two D-cell Batteries Multimeter Logger Pro Software, ULI Purpose The purpose of this lab

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

More information

Old Dominion University Physics 112N/227N/232N Lab Manual, 13 th Edition

Old Dominion University Physics 112N/227N/232N Lab Manual, 13 th Edition RC Circuits Experiment PH06_Todd OBJECTIVE To investigate how the voltage across a capacitor varies as it charges. To find the capacitive time constant. EQUIPMENT NEEDED Computer: Personal Computer with

More information

The RC Time Constant

The RC Time Constant The RC Time Constant Objectives When a direct-current source of emf is suddenly placed in series with a capacitor and a resistor, there is current in the circuit for whatever time it takes to fully charge

More information

Tutorial 23 Back Analysis of Material Properties

Tutorial 23 Back Analysis of Material Properties Tutorial 23 Back Analysis of Material Properties slope with known failure surface sensitivity analysis probabilistic analysis back analysis of material strength Introduction Model This tutorial will demonstrate

More information

PHY222 - Lab 7 RC Circuits: Charge Changing in Time Observing the way capacitors in RC circuits charge and discharge.

PHY222 - Lab 7 RC Circuits: Charge Changing in Time Observing the way capacitors in RC circuits charge and discharge. PHY222 Lab 7 RC Circuits: Charge Changing in Time Observing the way capacitors in RC circuits charge and discharge. Print Your Name Print Your Partners' Names You will return this handout to the instructor

More information

Remember that C is a constant and ë and n are variables. This equation now fits the template of a straight line:

Remember that C is a constant and ë and n are variables. This equation now fits the template of a straight line: CONVERTING NON-LINEAR GRAPHS INTO LINEAR GRAPHS Linear graphs have several important attributes. First, it is easy to recognize a graph that is linear. It is much more difficult to identify if a curved

More information

Error Analysis, Statistics and Graphing Workshop

Error Analysis, Statistics and Graphing Workshop Error Analysis, Statistics and Graphing Workshop Percent error: The error of a measurement is defined as the difference between the experimental and the true value. This is often expressed as percent (%)

More information

PHYSICS LAB. Newton's Law. Date: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY

PHYSICS LAB. Newton's Law. Date: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY PHYSICS LAB Newton's Law Printed Names: Signatures: Date: Lab Section: Instructor: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY Revision August 2003 NEWTON S SECOND LAW Purpose: 1. To become familiar

More information

α m ! m or v T v T v T α m mass

α m ! m or v T v T v T α m mass FALLING OBJECTS (WHAT TO TURN IN AND HOW TO DO SO) In the real world, because of air resistance, objects do not fall indefinitely with constant acceleration. One way to see this is by comparing the fall

More information

I. Pre-Lab Introduction

I. Pre-Lab Introduction I. Pre-Lab Introduction Please complete the following pages before the lab by filling in the requested items. A. Atomic notation: Atoms are composed of a nucleus containing neutrons and protons surrounded

More information

Lab 08 Capacitors 2. Figure 2 Series RC circuit with SPDT switch to charge and discharge capacitor.

Lab 08 Capacitors 2. Figure 2 Series RC circuit with SPDT switch to charge and discharge capacitor. Lab 08: Capacitors Last edited March 5, 2018 Learning Objectives: 1. Understand the short-term and long-term behavior of circuits containing capacitors. 2. Understand the mathematical relationship between

More information

Experiment 1 Solutions: Equipotential Lines and Electric Fields

Experiment 1 Solutions: Equipotential Lines and Electric Fields MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Experiment 1 Solutions: Equipotential Lines and Electric Fields IN-LAB ACTIVITIES EXPERIMENTAL SETUP 1. Download the LabView file from the

More information

Capacitors GOAL. EQUIPMENT. CapacitorDecay.cmbl 1. Building a Capacitor

Capacitors GOAL. EQUIPMENT. CapacitorDecay.cmbl 1. Building a Capacitor PHYSICS EXPERIMENTS 133 Capacitor 1 Capacitors GOAL. To measure capacitance with a digital multimeter. To make a simple capacitor. To determine and/or apply the rules for finding the equivalent capacitance

More information

ECE 220 Laboratory 4 Volt Meter, Comparators, and Timer

ECE 220 Laboratory 4 Volt Meter, Comparators, and Timer ECE 220 Laboratory 4 Volt Meter, Comparators, and Timer Michael W. Marcellin Please follow all rules, procedures and report requirements as described at the beginning of the document entitled ECE 220 Laboratory

More information

San Jose State University Department of Electrical Engineering. Exam 2 Solution. EE 098-MIT 6.002x Fall 2012

San Jose State University Department of Electrical Engineering. Exam 2 Solution. EE 098-MIT 6.002x Fall 2012 San Jose State University Department of Electrical Engineering Exam Solution EE 98-MIT 6.x Fall 1 losed Book, losed Notes, and no electronic devices. Instructions: There are six problems. Interpretation

More information

Measuring the time constant for an RC-Circuit

Measuring the time constant for an RC-Circuit Physics 8.02T 1 Fall 2001 Measuring the time constant for an RC-Circuit Introduction: Capacitors Capacitors are circuit elements that store electric charge Q according to Q = CV where V is the voltage

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

Lab 3 Acceleration. What You Need To Know: Physics 211 Lab

Lab 3 Acceleration. What You Need To Know: Physics 211 Lab b Lab 3 Acceleration Physics 211 Lab What You Need To Know: The Physics In the previous lab you learned that the velocity of an object can be determined by finding the slope of the object s position vs.

More information

Physics Investigation 10 Teacher Manual

Physics Investigation 10 Teacher Manual Physics Investigation 10 Teacher Manual Observation When a light bulb is connected to a number of charged capacitors, it lights up for different periods of time. Problem What does the rate of discharging

More information

Lab 8: Magnetic Fields

Lab 8: Magnetic Fields Lab 8: Magnetic Fields Name: Group Members: Date: TA s Name: Objectives: To measure and understand the magnetic field of a bar magnet. To measure and understand the magnetic field of an electromagnet,

More information

Conservation of Mechanical Energy Activity Purpose

Conservation of Mechanical Energy Activity Purpose Conservation of Mechanical Energy Activity Purpose During the lab, students will become familiar with solving a problem involving the conservation of potential and kinetic energy. A cart is attached to

More information

Lesson 9 Exploring Graphs of Quadratic Functions

Lesson 9 Exploring Graphs of Quadratic Functions Exploring Graphs of Quadratic Functions Graph the following system of linear inequalities: { y > 1 2 x 5 3x + 2y 14 a What are three points that are solutions to the system of inequalities? b Is the point

More information

Kinetics of Crystal Violet Bleaching

Kinetics of Crystal Violet Bleaching Kinetics of Crystal Violet Bleaching Authors: V. C. Dew and J. M. McCormick* From Update March 12, 2013 with revisions Nov. 29, 2016 Introduction Chemists are always interested in whether a chemical reaction

More information

Evaluation copy. Ground Temperature Measurements. computer OBJECTIVES MATERIALS PRE-LAB QUESTIONS

Evaluation copy. Ground Temperature Measurements. computer OBJECTIVES MATERIALS PRE-LAB QUESTIONS Ground Temperature Measurements Computer P3 Throughout the daylight hours the sun heats up the air and the soil. Project 1 in this manual investigates the changes in air temperature during this process.

More information

Chemical Kinetics: Integrated Rate Laws. ** updated Procedure for Spec 200 use **

Chemical Kinetics: Integrated Rate Laws. ** updated Procedure for Spec 200 use ** Chemical Kinetics: Integrated Rate Laws ** updated Procedure for Spec 200 use ** *DISCLAIMER: It is highly recommended that students bring in their own computers to lab this week to use excel. There may

More information

PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS

PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS The first purpose of this laboratory is to observe voltages as a function of time in an RC circuit and compare it to its expected time behavior. In the second

More information

After successfully completing this laboratory assignment, including the assigned reading, the lab

After successfully completing this laboratory assignment, including the assigned reading, the lab University of California at Santa Cruz Jack Baskin School of Engineering Electrical Engineering Department EE-145L: Properties of Materials Laboratory Lab 6: Temperature Dependence of Semiconductor Conductivity

More information

TALLINN UNIVERSITY OF TECHNOLOGY, INSTITUTE OF PHYSICS 6. THE TEMPERATURE DEPENDANCE OF RESISTANCE

TALLINN UNIVERSITY OF TECHNOLOGY, INSTITUTE OF PHYSICS 6. THE TEMPERATURE DEPENDANCE OF RESISTANCE 6. THE TEMPERATURE DEPENDANCE OF RESISTANCE 1. Objective Determining temperature coefficient of metal and activation energy of self-conductance of semiconductor sample. 2. Equipment needed Metal and semiconductor

More information

M61 1 M61.1 PC COMPUTER ASSISTED DETERMINATION OF ANGULAR ACCELERATION USING TORQUE AND MOMENT OF INERTIA

M61 1 M61.1 PC COMPUTER ASSISTED DETERMINATION OF ANGULAR ACCELERATION USING TORQUE AND MOMENT OF INERTIA M61 1 M61.1 PC COMPUTER ASSISTED DETERMINATION OF ANGULAR ACCELERATION USING TORQUE AND MOMENT OF INERTIA PRELAB: Before coming to the lab, you must write the Object and Theory sections of your lab report

More information

July 11, Capacitor CBL 23. Name Date: Partners: CAPACITORS. TI-83 calculator with unit-tounit. Resistor (about 100 kω) Wavetek multimeter

July 11, Capacitor CBL 23. Name Date: Partners: CAPACITORS. TI-83 calculator with unit-tounit. Resistor (about 100 kω) Wavetek multimeter July 11, 2008 - CBL 23 Name Date: Partners: CAPACITORS Materials: CBL unit TI-83 calculator with unit-tounit link cable Resistor (about 100 kω) Connecting wires Wavetek multimeter TI voltage probe Assorted

More information

Extending Transducer Calibration Range by Extrapolation

Extending Transducer Calibration Range by Extrapolation Introduction Extending Transducer Calibration by olation by LaVar Clegg Force and torque transducers must be calibrated in a laboratory in order to be useful in their intended application. Applications

More information

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION August 7, 007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION PURPOSE: This experiment illustrates the numerical solution of Laplace's Equation using a relaxation method. The results of the relaxation method

More information

Ozobot Bit Classroom Application: Radiation Half-Life Simulator

Ozobot Bit Classroom Application: Radiation Half-Life Simulator OZO AP P EAM TR T S BO RO VE D Ozobot Bit Classroom Application: Radiation Half-Life Simulator Created by Richard Born Associate Professor Emeritus Northern Illinois University richb@rborn.org Topics Physics,

More information

5-Sep-15 PHYS101-2 GRAPHING

5-Sep-15 PHYS101-2 GRAPHING GRAPHING Objectives 1- To plot and analyze a graph manually and using Microsoft Excel. 2- To find constants from a nonlinear relation. Exercise 1 - Using Excel to plot a graph Suppose you have measured

More information

EXPERIMENT 2: FREE FALL

EXPERIMENT 2: FREE FALL LAB SECTION: NAME: EXPERIMENT : FREE FALL Introduction: In this lab, you will measure the acceleration of an object as it falls toward the earth s surface. Air resistance should not be a factor, so the

More information

Basic Analysis of Data

Basic Analysis of Data Basic Analysis of Data Department of Chemical Engineering Prof. Geoff Silcox Fall 008 1.0 Reporting the Uncertainty in a Measured Quantity At the request of your supervisor, you have ventured out into

More information

Physics 240 Fall 2005: Exam #3. Please print your name: Please list your discussion section number: Please list your discussion instructor:

Physics 240 Fall 2005: Exam #3. Please print your name: Please list your discussion section number: Please list your discussion instructor: Physics 240 Fall 2005: Exam #3 Please print your name: Please list your discussion section number: Please list your discussion instructor: Form #1 Instructions 1. Fill in your name above 2. This will be

More information

Newton s Cooling Model in Matlab and the Cooling Project!

Newton s Cooling Model in Matlab and the Cooling Project! Newton s Cooling Model in Matlab and the Cooling Project! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 10, 2014 Outline Your Newton

More information

Dr. Julie J. Nazareth

Dr. Julie J. Nazareth Name: Dr. Julie J. Nazareth Lab Partner(s): Physics: 133L Date lab performed: Section: Capacitors Parts A & B: Measurement of capacitance single, series, and parallel combinations Table 1: Voltage and

More information

Mechatronics II Laboratory EXPERIMENT #1 MOTOR CHARACTERISTICS FORCE/TORQUE SENSORS AND DYNAMOMETER PART 1

Mechatronics II Laboratory EXPERIMENT #1 MOTOR CHARACTERISTICS FORCE/TORQUE SENSORS AND DYNAMOMETER PART 1 Mechatronics II Laboratory EXPEIMENT #1 MOTO CHAACTEISTICS FOCE/TOQUE SENSOS AND DYNAMOMETE PAT 1 Force Sensors Force and torque are not measured directly. Typically, the deformation or strain of some

More information

Mechatronics II Laboratory EXPERIMENT #1: FORCE AND TORQUE SENSORS DC Motor Characteristics Dynamometer, Part I

Mechatronics II Laboratory EXPERIMENT #1: FORCE AND TORQUE SENSORS DC Motor Characteristics Dynamometer, Part I Mechatronics II Laboratory EXPEIMENT #1: FOCE AND TOQUE SENSOS DC Motor Characteristics Dynamometer, Part I Force Sensors Force and torque are not measured directly. Typically, the deformation or strain

More information

Experiment #6. Thevenin Equivalent Circuits and Power Transfer

Experiment #6. Thevenin Equivalent Circuits and Power Transfer Experiment #6 Thevenin Equivalent Circuits and Power Transfer Objective: In this lab you will confirm the equivalence between a complicated resistor circuit and its Thevenin equivalent. You will also learn

More information

Kinematics Lab. 1 Introduction. 2 Equipment. 3 Procedures

Kinematics Lab. 1 Introduction. 2 Equipment. 3 Procedures Kinematics Lab 1 Introduction An object moving in one dimension and undergoing constant or uniform acceleration has a position given by: x(t) =x 0 +v o t +1/2at 2 where x o is its initial position (its

More information

Department of Mechanical and Aerospace Engineering. MAE334 - Introduction to Instrumentation and Computers. Final Examination.

Department of Mechanical and Aerospace Engineering. MAE334 - Introduction to Instrumentation and Computers. Final Examination. Name: Number: Department of Mechanical and Aerospace Engineering MAE334 - Introduction to Instrumentation and Computers Final Examination December 12, 2003 Closed Book and Notes 1. Be sure to fill in your

More information

LAB MANUAL EXPERIMENT NO. 7

LAB MANUAL EXPERIMENT NO. 7 LAB MANUAL EXPERIMENT NO. 7 Aim of the Experiment: Concept of Generalized N-port scattering parameters, and formulation of these parameters into 2-port reflection and transmission coefficients. Requirement:

More information

Circuits-Ohm's Law. 1. Which graph best represents the relationship between the electrical power and the current in a resistor that obeys Ohm s Law?

Circuits-Ohm's Law. 1. Which graph best represents the relationship between the electrical power and the current in a resistor that obeys Ohm s Law? 1. Which graph best represents the relationship between the electrical power and the current in a resistor that obeys Ohm s Law? 2. A potential drop of 50 volts is measured across a 250- ohm resistor.

More information

Examining the Effect of Temperature on Reaction Rate

Examining the Effect of Temperature on Reaction Rate 1 Purpose: To measure reaction rate at different temperatures for the reaction between persulfate ions, S2O8-2, and iodide ions, I -, and thereby determine the activation energy and frequency factor for

More information

Straight Line Motion (Motion Sensor)

Straight Line Motion (Motion Sensor) Straight Line Motion (Motion Sensor) Name Section Theory An object which moves along a straight path is said to be executing linear motion. Such motion can be described with the use of the physical quantities:

More information

Electric Fields and Equipotentials

Electric Fields and Equipotentials OBJECTIVE Electric Fields and Equipotentials To study and describe the two-dimensional electric field. To map the location of the equipotential surfaces around charged electrodes. To study the relationship

More information

Laboratory 7: Charging and Discharging a Capacitor Prelab

Laboratory 7: Charging and Discharging a Capacitor Prelab Phys 132L Fall 2018 Laboratory 7: Charging and Discharging a Capacitor Prelab Consider a capacitor with capacitance C connected in series to a resistor with resistance R as shown in Fig. 1. Theory predicts

More information

In this experiment, the concept of electric field will be developed by

In this experiment, the concept of electric field will be developed by Physics Equipotential Lines and Electric Fields Plotting the Electric Field PURPOSE MATERIALS 5 alligator clip leads 2 batteries, 9 V 2 binder clips, large computer In this experiment, the concept of electric

More information

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION In this lab you will learn how to use Excel to display the relationship between two quantitative variables, measure the strength and direction of the

More information

MEASUREMENT OF THE CHARGE TO MASS RATIO (e/m e ) OF AN ELECTRON

MEASUREMENT OF THE CHARGE TO MASS RATIO (e/m e ) OF AN ELECTRON MEASUREMENT OF THE CHARGE TO MASS RATIO (e/m e ) OF AN ELECTRON Object This experiment will allow you to observe and understand the motion of a charged particle in a magnetic field and to measure the ratio

More information

RC Circuit (Power amplifier, Voltage Sensor)

RC Circuit (Power amplifier, Voltage Sensor) Object: RC Circuit (Power amplifier, Voltage Sensor) To investigate how the voltage across a capacitor varies as it charges and to find its capacitive time constant. Apparatus: Science Workshop, Power

More information

371 Lab Rybolt Data Analysis Assignment Name

371 Lab Rybolt Data Analysis Assignment Name Data Analysis Assignment 1 371 Lab Rybolt Data Analysis Assignment Name You wake up one morning and feel you may have a fever. You have an oral thermometer marked in Celsius degrees and find your temperature

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Physics 8.01 Fall Term 2010 Experiment 03: Work and Energy Purpose of the Experiment: In this experiment you allow a cart to roll down an inclined

More information

Electric Field and Electric Potential

Electric Field and Electric Potential 1 Electric Field and Electric Potential 2 Prelab Write experiment title, your name and student number at top of the page. Prelab 1: Write the objective of this experiment. Prelab 2: Write the relevant

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

Activity 1: Investigating Temperature

Activity 1: Investigating Temperature Contents Activity Overview... 5 Quick Start Guide... 5 Software Installation... 5 Hardware Setup... 6 mytemp Getting Started Program... 10 General Tips and Tricks... 11 Activity 1: Investigating Temperature...

More information

Complete all the identification fields below or 10% of the lab value will be deduced from your final mark for this lab.

Complete all the identification fields below or 10% of the lab value will be deduced from your final mark for this lab. Simple circuits 3 hr Identification page Instructions: Print this page and the following ones before your lab session to prepare your lab report. Staple them together with your graphs at the end. If you

More information

SOTM LAB: P16 OHM S LAW I. TEACHER NOTES & GUIDELINES TITLE OF LAB: Ohm s Law DEVELOPERS OF LAB:

SOTM LAB: P16 OHM S LAW I. TEACHER NOTES & GUIDELINES TITLE OF LAB: Ohm s Law DEVELOPERS OF LAB: SOTM LAB: P16 OHM S LAW I. TEACHER NOTES & GUIDELINES TITLE OF LAB: Ohm s Law DEVELOPERS OF LAB: John Lane, JD853@maristb.marist.edu Taylor Pancoast, JD573@maristb.marist.edu OVERVIEW OF LAB DESCRIPTION

More information

Experiment 4 Radiation in the Visible Spectrum

Experiment 4 Radiation in the Visible Spectrum Experiment 4 Radiation in the Visible Spectrum Emission spectra can be a unique fingerprint of an atom or molecule. The photon energies and wavelengths are directly related to the allowed quantum energy

More information

Chapter 3: Examining Relationships

Chapter 3: Examining Relationships Chapter 3: Examining Relationships Most statistical studies involve more than one variable. Often in the AP Statistics exam, you will be asked to compare two data sets by using side by side boxplots or

More information

Fault Tolerant Computing CS 530DL

Fault Tolerant Computing CS 530DL Fault Tolerant Computing CS 530DL Additional Lecture Notes Modeling Yashwant K. Malaiya Colorado State University March 8, 2017 1 Quantitative models Derived from first principles: Arguments are actual

More information

Motion with Constant Acceleration

Motion with Constant Acceleration Motion with Constant Acceleration INTRODUCTION Newton s second law describes the acceleration of an object due to an applied net force. In this experiment you will use the ultrasonic motion detector to

More information

EXPERIMENT 3 Analysis of a freely falling body Dependence of speed and position on time Objectives

EXPERIMENT 3 Analysis of a freely falling body Dependence of speed and position on time Objectives EXPERIMENT 3 Analysis of a freely falling body Dependence of speed and position on time Objectives to verify how the distance of a freely-falling body varies with time to investigate whether the velocity

More information

To receive full credit, you must show all your work (including steps taken, calculations, and formulas used).

To receive full credit, you must show all your work (including steps taken, calculations, and formulas used). Page 1 Score Problem 1: (35 pts) Problem 2: (25 pts) Problem 3: (25 pts) Problem 4: (25 pts) Problem 5: (15 pts) TOTAL: (125 pts) To receive full credit, you must show all your work (including steps taken,

More information

Herefordshire College of Technology Center Number Student:

Herefordshire College of Technology Center Number Student: Herefordshire College of Technology Center Number 024150 Course: : BTEC Level 3 Subsidiary Diploma in Engineering / Diploma in Electrical/Electronic Engineering Student: Unit/s: 6 Electrical & Electronic

More information

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information