IDL Lab #9: Create Spectral Response Curves and Extract the Red Edge Inflection Point from Spectral Data

Size: px
Start display at page:

Download "IDL Lab #9: Create Spectral Response Curves and Extract the Red Edge Inflection Point from Spectral Data"

Transcription

1 IDL Lab #9: Create Spectral Response Curves and Extract the Red Edge Inflection Point from Spectral Data The objectives of this laboratory exercise are to introduce the student to: - Learn basic commands to create line plots in IDL - Use IDL to extract the red edge inflection point For further reading in this lab exercise, please refer to pages in Introduction to IDL, by Mark Piper and Michael D. Galloy, Research Systems, Inc., 2004 Create Simple Line Plots in IDL: Introduction: The spectral response of two plants, called plant A and B, was measured. One plant was severely water stressed and the other plant was well watered. Provided with the background that water stress results in increasing reflectance over the entire wavelength range between 350 to 2500 nm, your first task is to take a look at the spectral response curves of plant A and B to determine which plant is water stressed. To be able to look at the spectral response curves of both plants, you will learn how to create simple line plots with IDL. Example Program to plot spectral response curve of plant A and B: ;; ;; by Jan Eitel ;; IDL Program to create line plot of the spectral response measured ;; for two plants pro line_plot ;; open input spectra_1 openr, 1, '/plant_a.txt' spectra_1 = fltarr(1,2151) readf,1, spectra_1 ;; open input spectra_2 openr, 1, '/plant_b.txt' spectra_2 = fltarr(1,2151) readf,1, spectra_2

2 ;; Specifiy sensor wavelengths ;; Wavelengths are specified in the sensor_wavelength.txt file ;; Set indexed color mode and load a predefined color table into IDL device, decomposed = 0 loadct, 5 ;; Plot spectra ;; Define title, x and y axis of plot plot, sensor_wavelength[0, 0:2150], spectra_2 [0, 0:2150], title = 'Plant A (Blue) and Plant B (Red)', xtitle = 'Wavelength (nm)', ytitle = 'Reflectance (%)', linestyle=1, color=100 ;; Oplot procedure is used to display vector data over a previously drawn plot ;; Oplot can be only called after plot has been called! oplot, sensor_wavelength[0, 0:2150], spectra_1 [0, 0:2150], color = 50 end The spectral response curve of plant A is plotted in blue and of B in red. Task #1: Circle below which plant is water stressed Plant A Plant B Task #2: Create another line plot. To do this, open Excel and type in column A: 400, 500, 600, 700

3 Those values present your wavelengths. Open another Excel spreadsheet and type in column A: 20, 35, 18, 42. Those are the reflectance values associated with each wavelength. Give both spreadsheets a name you can remember and save them as a tab delimited (.txt file) in a folder of your choice. Next, read these values into IDL, and create a line plot. Give the line plot the title: My First Line Plot and label the x- and y- axis of the plot appropriately. Red Edge Inflection Point Introduction: The red edge inflection point refers to the maximum slope of the prominent increase in reflectance between the red and the near infrared range for green vegetation. It has been shown that structural and chemical changes of leaves may result in a shift of the red edge inflection point. Due to the fact that biotic and abiotic stress can cause structural and chemical changes within leaves, shifts of the red edge inflection point could be used to remotely detect plant stress. In the following, we write a program that allows us to extract the red edge inflection point from plant A and B. ;; Jan Eitel ;; ;; Program to extract red edge inflection point Pro red_edge_final ;; open input spectra_1 openr, 1, '/plant_a.txt' spectra_1 = fltarr(1,2151) readf,1, spectra_1 ;; create output arrays red_edge_1 = make_array(1, 2151, value = 0,/float) red_edge_2 = make_array(1, 1, value = 0,/float) red_edge_3 = make_array(1, 1, value = 0,/float) ;; Sensor wavelengths ;; Define sampling interval

4 sint = 5 ;; Take first derivative y_in = y + sint red_edge_1[0, y] = ((spectra_1[0, y_in]-spectra_1[0, y])/sint) ;; Extract maximum Slope red_edge_2 [0, 0] = max(red_edge_1[0, 330:400]) ;; Find wavelength associated with maximum slope if (red_edge_1[0, y] EQ red_edge_2[0, 0]) then begin red_edge_3[0, 0] = sensor_wavelength[y + sint] endif print, 'The red edge inflection point for plant A is:', red_edge_3[0, 0] ;; Repeat same procedure for spectrum 2 ;; open input spectra_2 openr, 1, '/plant_b.txt' spectra_2 = fltarr(1,2151) readf,1, spectra_2 ;; create output arrays red_edge_1 = make_array(1, 2151, value = 0,/float) red_edge_2 = make_array(1, 1, value = 0,/float) red_edge_3 = make_array(1, 1, value = 0,/float) ;; Sensor wavelengths ;; Define sampling interval sint = 5 ;; Take first derivative y_in = y + sint

5 red_edge_1[0, y] = ((spectra_2[0, y_in]-spectra_2[0, y])/sint) ;; Extract maximum Slope red_edge_2 [0, 0] = max(red_edge_1[0, 330:400]) ;; Find wavelength associated with maximum slope if (red_edge_1[0, y] EQ red_edge_2[0, 0]) then begin red_edge_3[0, 0] = sensor_wavelength[y + sint] endif print, 'The red edge inflection point for plant B is:', red_edge_3[0, 0] end Task #3: Does water stress result in a shift of the red edge inflection point (circle the right answer) Yes No Task #4: If water stress results in a shift of the red edge inflection point does the inflection point shift towards (circle the right answer): Shorter Wavelengths Longer Wavelengths

In addition to reading this assignment, also read Appendices A and B.

In addition to reading this assignment, also read Appendices A and B. 1 Kinematics I Introduction In addition to reading this assignment, also read Appendices A and B. We will be using a motion detector to track the positions of objects with time in several lab exercises

More information

EXPERIMENT 12 GAS LAWS ( BOYLE S AND GAY-LUSSAC S LAW)

EXPERIMENT 12 GAS LAWS ( BOYLE S AND GAY-LUSSAC S LAW) EXPERIMENT 12 GAS LAWS ( BOYLE S AND GAY-LUSSAC S LAW) INTRODUCTION: In order to specify fully the condition of a gas it is necessary to know its pressure, volume, and temperature. This quantities are

More information

Boyle s Law: Pressure-Volume Relationship in Gases

Boyle s Law: Pressure-Volume Relationship in Gases Boyle s Law: Pressure-Volume Relationship in Gases Computer 6 The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we use

More information

A study of advection of short wind waves by long waves from surface slope images

A study of advection of short wind waves by long waves from surface slope images A study of advection of short wind waves by long waves from surface slope images X. Zhang, J. Klinke, and B. Jähne SIO, UCSD, CA 993-02, USA Abstract Spatial and temporal measurements of short wind waves

More information

If you need to reinstall FastBreak Pro you will need to do a complete reinstallation and then install the update.

If you need to reinstall FastBreak Pro you will need to do a complete reinstallation and then install the update. Using this Beta Version of FastBreak Pro First, this new beta version (Version 6.X) will only work with users who have version 5.X of FastBreak Pro. We recommend you read this entire addendum before trying

More information

Boyle s Law: Pressure-Volume Relationship in Gases

Boyle s Law: Pressure-Volume Relationship in Gases Boyle s Law: Pressure-Volume Relationship in Gases The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we will use is air,

More information

LABORATORY INVESTIGATION

LABORATORY INVESTIGATION LABORATORY INVESTIGATION MEASURING THE RATE OF PHOTOSYNTHESIS Light and Photosynthesis About 2.5-3 billion years ago a new chemical process, photosynthesis, was evolved by a unicellular life form. This

More information

PUV Wave Directional Spectra How PUV Wave Analysis Works

PUV Wave Directional Spectra How PUV Wave Analysis Works PUV Wave Directional Spectra How PUV Wave Analysis Works Introduction The PUV method works by comparing velocity and pressure time series. Figure 1 shows that pressure and velocity (in the direction of

More information

SPIRIT III Radiometer Saturation Effect

SPIRIT III Radiometer Saturation Effect Utah State University DigitalCommons@USU Space Dynamics Lab Publications Space Dynamics Lab 1-1-1997 SPIRIT III Radiometer Saturation Effect Joseph J. Tansock Follow this and additional works at: https://digitalcommons.usu.edu/sdl_pubs

More information

Any laboratory is equipped with specific tools, equipment,

Any laboratory is equipped with specific tools, equipment, Use of Laboratory Equipment and Supplies 3 When you have completed this exercise, you will be able to: 1. Use a balance. 2. Use pipettes and graduated cylinders to measure the volume of liquids. 3. Use

More information

Vertical in situ profiles of nitrate and oxygen in the northern Japan Sea

Vertical in situ profiles of nitrate and oxygen in the northern Japan Sea Vertical in situ profiles of nitrate and oxygen in the northern Japan Sea Dmitry D. Kaplunenko, Vyacheslav B. Lobanov, Pavel Ya. Tishchenko and Maria G. Shvetsova V.I.Il'ichev Pacific Oceanological Institute,

More information

Real-time Analysis of Industrial Gases with Online Near- Infrared Spectroscopy

Real-time Analysis of Industrial Gases with Online Near- Infrared Spectroscopy Real-time Analysis of Industrial Gases with Online Near- Infrared Branch 5 Petrochemical, Biofuels Keywords Process, NIR, Gases, Gas Cell, Ethylene, Carbon Dioxide, Propane, Butane, Acetylene Summary Near-infrared

More information

Diagnosis of Fuel Evaporative System

Diagnosis of Fuel Evaporative System T S F S 0 6 L A B E X E R C I S E 2 Diagnosis of Fuel Evaporative System April 5, 2017 1 objective The objective with this laboratory exercise is to read, understand, and implement an algorithm described

More information

Mid-IR Lasers Market Review and Forecast 2010

Mid-IR Lasers Market Review and Forecast 2010 Mid-IR Market Review and Forecast 2010 Report OM-56 September 2010 Strategies Unlimited 201 San Antonio Circle, Suite 225 Mountain View, California 94040 Phone: (650) 941-3438 Fax: (650) 941-5120 e-mail:

More information

INTRODUCTION TO THE SPECTROPHOTOMETER AND PIPETTING SKILLS

INTRODUCTION TO THE SPECTROPHOTOMETER AND PIPETTING SKILLS INTRODUCTION TO THE SPECTROPHOTOMETER AND PIPETTING SKILLS Section A: Intro to the spectrophotometer A commonly used instrument in the analysis of cellular extracts is the Spectrophotometer. Today you

More information

Response Spectra (cont.)

Response Spectra (cont.) WORKSHOP PROBLEM 9b Response Spectra (cont.) Objectives: Apply the shock spectrum. Submit the file for analysis in MSC/NASTRAN. Calculate the shock response using SOL 103. MSC/NASTRAN 102 Exercise Workbook

More information

Lab 5: Descriptive Statistics

Lab 5: Descriptive Statistics Page 1 Technical Math II Lab 5: Descriptive Stats Lab 5: Descriptive Statistics Purpose: To gain experience in the descriptive statistical analysis of a large (173 scores) data set. You should do most

More information

Biology Unit 2, Structure of Life, Lab Activity 2-3

Biology Unit 2, Structure of Life, Lab Activity 2-3 Biology Unit 2, Structure of Life, Lab Activity 2-3 Cellular respiration is the release of energy from organic compounds by metabolic chemical oxidation in the mitochondria within each cell. Cellular respiration

More information

INSTRUCTOR RESOURCES

INSTRUCTOR RESOURCES Gases: Dalton s Law INSTRUCTOR RESOURCES By Dale A. Hammond, PhD LEARNING OBJECTIVES introduce the concept of ideal gases. experimentally determine the relationship between pressure and amount of gas,

More information

Boyle s Law: Pressure-Volume. Relationship in Gases

Boyle s Law: Pressure-Volume. Relationship in Gases Boyle s Law: Pressure-Volume Relationship in Gases The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we use will be air,

More information

Player, Coach, Manager, and Team Account Creation

Player, Coach, Manager, and Team Account Creation Player, Coach, Manager, and Team Account Creation for GotSoccer The below instructions will help walk you though the process of creating player, coach, team official and team accounts (profiles) in GotSoccer.

More information

LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS

LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS Date: Name: LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS OBJECTIVE: To demonstrate the relation between valve stem position and the fluid flow through a control valve, for both linear and equal

More information

Module 3 Developing Timing Plans for Efficient Intersection Operations During Moderate Traffic Volume Conditions

Module 3 Developing Timing Plans for Efficient Intersection Operations During Moderate Traffic Volume Conditions Module 3 Developing Timing Plans for Efficient Intersection Operations During Moderate Traffic Volume Conditions CONTENTS (MODULE 3) Introduction...1 Purpose...1 Goals and Learning Outcomes...1 Organization

More information

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments)

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Laboratory 2(a): Interfacing WiiMote Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Instructors: Edward A. Lee Sanjit A. Seshia University of California, Berkeley EECS

More information

The Gas Laws: Boyle's Law and Charles Law

The Gas Laws: Boyle's Law and Charles Law Exercise 6 Page 1 Illinois Central College CHEMISTRY 130 Name The Gas Laws: Boyle's Law and Charles Law Objective The simple laws governing the properties of gases can be readily demonstrated experimentally.

More information

Lab 4: Transpiration

Lab 4: Transpiration Lab 4: Transpiration Water is transported in plants, from the roots to the leaves, following a decreasing water potential gradient. Transpiration, or loss of water from the leaves, helps to create a lower

More information

Evaluation of the Wisconsin DOT Walking Profiler

Evaluation of the Wisconsin DOT Walking Profiler Final Report Evaluation of the Wisconsin DOT Walking Profiler March 2007 U.S. Department of Transportation Federal Highway Administration Notice This document is disseminated under the sponsorship of the

More information

Using a double entry table "Temperature graph"

Using a double entry table Temperature graph Aims "Temperature graph" Practising using a double entry table to draw graphs. 16-21 Level 2 Exercise 1 Applications Materials In class: introduction to decimal numbers and fractions, advanced reading

More information

Underwater measurement of photosynthetically active radiation

Underwater measurement of photosynthetically active radiation Underwater measurement of photosynthetically active radiation Mark Blonquist, Damon Nitzel, and Bruce Bugbee Apogee Instruments, Inc., Logan, Utah Introduction Quantum sensors (photosynthetically active

More information

Lab 4: Root Locus Based Control Design

Lab 4: Root Locus Based Control Design Lab 4: Root Locus Based Control Design References: Franklin, Powell and Emami-Naeini. Feedback Control of Dynamic Systems, 3 rd ed. Addison-Wesley, Massachusetts: 1994. Ogata, Katsuhiko. Modern Control

More information

(Lab Interface BLM) Acceleration

(Lab Interface BLM) Acceleration Purpose In this activity, you will study the concepts of acceleration and velocity. To carry out this investigation, you will use a motion sensor and a cart on a track (or a ball on a track, if a cart

More information

A NOVEL SENSOR USING REMOTE PLASMA EMISSION SPECTROSCOPY FOR MONITORING AND CONTROL OF VACUUM WEB COATING PROCESSES

A NOVEL SENSOR USING REMOTE PLASMA EMISSION SPECTROSCOPY FOR MONITORING AND CONTROL OF VACUUM WEB COATING PROCESSES A NOVEL SENSOR USING REMOTE PLASMA EMISSION SPECTROSCOPY FOR MONITORING AND CONTROL OF VACUUM WEB COATING PROCESSES F. Papa 1, J. Brindley 2, T. Williams 2, B. Daniel 2, V. Bellido-Gonzalez 2, Dermot Monaghan

More information

Specifications and information are subject to change without notice. Up-to-date address information is available on our website.

Specifications and information are subject to change without notice. Up-to-date address information is available on our website. www.smar.com Specifications and information are subject to change without notice. Up-to-date address information is available on our website. web: www.smar.com/contactus.asp LD302 - AssetView HMI LD302

More information

Digital Level Control One and Two Loops Proportional and Integral Control Single-Loop and Cascade Control

Digital Level Control One and Two Loops Proportional and Integral Control Single-Loop and Cascade Control Digital Level Control One and Two Loops Proportional and Integral Control Single-Loop and Cascade Control Introduction This experiment offers a look into the broad field of process control. This area of

More information

Lab 4 VGA Display Snake Game

Lab 4 VGA Display Snake Game Lab 4 VGA Display Snake Game Design and implement a digital circuit capable of displaying predefined patterns on the screen of a VGA monitor, and provide the basic components for the Snake game. Your circuit

More information

JASCO 810 CD SPECTROPLOARIMETER STANDARD OPERATING PROCEDURE

JASCO 810 CD SPECTROPLOARIMETER STANDARD OPERATING PROCEDURE JASCO 810 CD SPECTROPLOARIMETER STANDARD OPERATING PROCEDURE Purpose of this Instrument: This instrument is for measuring differences in the absorption of lefthanded polarized light versus right-handed

More information

Ozobot Bit Classroom Application: Boyle s Law Simulation

Ozobot Bit Classroom Application: Boyle s Law Simulation OZO AP P EAM TR T S BO RO VE D Ozobot Bit Classroom Application: Boyle s Law Simulation Created by Richard Born Associate Professor Emeritus Northern Illinois University richb@rborn.org Topics Chemistry,

More information

Purpose: Hypothesis: Procedure:

Purpose: Hypothesis: Procedure: Name: Block: Properties of Water Lab As we have discussed in class and on notes, water has many unique properties that are critical to life on Earth. The goal of this lab is to study the properties of

More information

Page 1 of 5 Name # Section Date Mr. Mangiacapre Standing Waves in a Closed Tube Lab Introduction: When the sound wave from a tuning fork is sent into a closed tube, a standing wave is created. The standing

More information

Wind Turbines. Figure 1. Wind farm (by BC Hydro)

Wind Turbines. Figure 1. Wind farm (by BC Hydro) Wind Turbines Figure 1. Wind farm (by BC Hydro) Purpose Observe the operation of a wind turbine at different wind speeds Contextualize the size of an industrial wind turbine Introduction and Theory Humans

More information

Preparation for Salinity Control ME 121

Preparation for Salinity Control ME 121 Preparation for Salinity Control ME 121 This document describes a set of measurements and analyses that will help you to write an Arduino program to control the salinity of water in your fish tank. The

More information

Overview. 2 Module 13: Advanced Data Processing

Overview. 2 Module 13: Advanced Data Processing 2 Module 13: Advanced Data Processing Overview This section of the course covers advanced data processing when profiling. We will discuss the removal of the fairly gross effects of ship heave and talk

More information

Diameter in cm. Bubble Number. Bubble Number Diameter in cm

Diameter in cm. Bubble Number. Bubble Number Diameter in cm Bubble lab Data Sheet Blow bubbles and measure the diameter to the nearest whole centimeter. Record in the tables below. Try to blow different sized bubbles. Name: Bubble Number Diameter in cm Bubble Number

More information

KISSsoft 03/2016 Tutorial 9

KISSsoft 03/2016 Tutorial 9 KISSsoft 03/2016 Tutorial 9 Cylindrical Gear Fine Sizing KISSsoft AG Rosengartenstrasse 4 8608 Bubikon Switzerland Phone: +41 55 254 20 50 Fax: +41 55 254 20 51 info@kisssoft.ag www.kisssoft.ag Table of

More information

Evaluation copy. Vapor Pressure of Liquids. computer OBJECTIVES MATERIALS

Evaluation copy. Vapor Pressure of Liquids. computer OBJECTIVES MATERIALS Vapor Pressure of Liquids Computer 10 In this experiment, you will investigate the relationship between the vapor pressure of a liquid and its temperature. When a liquid is added to the Erlenmeyer flask

More information

Kinematics Lab #1: Walking the Graphs Results and Discussion. By: Alex Liu Teacher: Mr. Chung Due: October 28, 2010 SPH3U1-01

Kinematics Lab #1: Walking the Graphs Results and Discussion. By: Alex Liu Teacher: Mr. Chung Due: October 28, 2010 SPH3U1-01 Kinematics Lab #1: Walking the Graphs Results and Discussion By: Teacher: Mr. Chung Due: October 28, 2010 SPH3U1-01 1 Introduction The goal of this lab was to match, as accurately as possible, three position-time

More information

1 Chapter 8: Root Locus Techniques. Chapter 8. Root Locus Techniques. 2000, John Wiley & Sons, Inc. Nise/Control Systems Engineering, 3/e

1 Chapter 8: Root Locus Techniques. Chapter 8. Root Locus Techniques. 2000, John Wiley & Sons, Inc. Nise/Control Systems Engineering, 3/e 1 Chapter 8 Root Locus Techniques 2 Figure 8.1 a. Closedloop system; b. equivalent transfer function 3 Figure 8.2 Vector representation of complex numbers: a. s = σ + jω; b. (s + a); c. alternate representation

More information

SOLUBILITY OF A SOLID IN WATER

SOLUBILITY OF A SOLID IN WATER 1516L Experiment 2 SOLUBILITY OF A SOLID IN WATER Objectives In this experiment you will determine the solubility of potassium nitrate (KNO 3 ) in water at various temperatures. You will prepare a plot

More information

RSKtools for Matlab processing RBR data

RSKtools for Matlab processing RBR data Table of Contents Introduction... 1 RSKtools help... 1 Getting set up... 1 Remove atmospheric pressure from measured total pressure... 2 Correct for A2D zero-order hold... 2 Low-pass filtering... 3 Alignment

More information

UNDERGROUND SURVEY WITH MINEMODELLER

UNDERGROUND SURVEY WITH MINEMODELLER UNDERGROUND SURVEY WITH MINEMODELLER A Tutorial Derek C. Diamond derek@primethought.biz CONTENTS Underground Survey with MineModeller... 2 Introduction... 2 Requirements... 2 Getting Started with MineModeller...

More information

Lab 1. Adiabatic and reversible compression of a gas

Lab 1. Adiabatic and reversible compression of a gas Lab 1. Adiabatic and reversible compression of a gas Introduction The initial and final states of an adiabatic and reversible volume change of an ideal gas can be determined by the First Law of Thermodynamics

More information

Skills Key Words. Task. Key words. Write a definition for each of the key words listed below. Hypothesis. Variable. Prediction. Method.

Skills Key Words. Task. Key words. Write a definition for each of the key words listed below. Hypothesis. Variable. Prediction. Method. KS3 Science Skills Skills Key Words Write a definition for each of the key words listed below Key words Hypothesis Variable Prediction Method Hazard Precision Accuracy Repeatability Reproducibility Anomaly

More information

Tying Knots. Approximate time: 1-2 days depending on time spent on calculator instructions.

Tying Knots. Approximate time: 1-2 days depending on time spent on calculator instructions. Tying Knots Objective: Students will find a linear model to fit data. Students will compare and interpret different slopes and intercepts in a context. Students will discuss domain and range: as discrete

More information

In this assignment, students will analyze statistics from the U.S. Department of Transportation to determine the safest means of travel.

In this assignment, students will analyze statistics from the U.S. Department of Transportation to determine the safest means of travel. Background Information In the United States, we often are told that commercial airlines are statistically the safest mode of travel. Yet, many people do not believe this due to the fact that plane crashes

More information

Predator Prey Lab Exercise L3

Predator Prey Lab Exercise L3 Predator Prey Lab Exercise L3 Name Date Objective: To compare predator and prey populations over time in a small ecosystem. Introduction: In 1970 the deer population of a small island forest preserve was

More information

Vapor Pressure of Liquids

Vapor Pressure of Liquids Vapor Pressure of Liquids In this experiment, you will investigate the relationship between the vapor pressure of a liquid and its temperature. When a liquid is added to the Erlenmeyer flask shown in Figure

More information

Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held

Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held As part of my research in Sebastian Thrun's autonomous driving team, my goal is to predict the wait-time for a car at a 4-way intersection.

More information

The Decomposition of Hydrogen Peroxide

The Decomposition of Hydrogen Peroxide The Decomposition of Hydrogen Peroxide Calculator 12 The decomposition of hydrogen peroxide in aqueous solution proceeds very slowly. A bottle of 3% hydrogen peroxide sitting on a grocery store shelf is

More information

What is new in CAPWAP 2014

What is new in CAPWAP 2014 What is new in CAPWAP 2014 CAPWAP model changes/additions Time Increment/wave speed variations This feature is especially important for analyzing cast-in-situ and other concrete piles. It allows modeling

More information

CHAPTER 7 : SMOKE METERS AND THEIR INSTALLATIONS

CHAPTER 7 : SMOKE METERS AND THEIR INSTALLATIONS CHAPTER 7 : SMOKE METERS AND THEIR INSTALLATIONS 1 Scope : This Chapter covers the requirements of smoke meters and their installation on engines for full load and free acceleration tests, mentioned in

More information

Exploring the Properties of Gases. Evaluation copy. 10 cm in diameter and 25 cm high)

Exploring the Properties of Gases. Evaluation copy. 10 cm in diameter and 25 cm high) Exploring the Properties of Gases Computer 30 The purpose of this investigation is to conduct a series of experiments, each of which illustrates a different gas law. You will be given a list of equipment

More information

New Generation System M, leading the World in the Non-Invasive Measurement of Critical Real-Time Parameters.

New Generation System M, leading the World in the Non-Invasive Measurement of Critical Real-Time Parameters. New Generation System M, leading the World in the Non-Invasive Measurement of Critical Real-Time Parameters. System M Spectrum Medicals total commitment to continuous product improvement is demonstrated

More information

Combination Analysis Tutorial

Combination Analysis Tutorial Combination Analysis Tutorial 3-1 Combination Analysis Tutorial It is inherent in the Swedge analysis (when the Block Shape = Wedge), that tetrahedral wedges can only be formed by the intersection of 2

More information

Vapor Pressure of Liquids

Vapor Pressure of Liquids Experiment 10 In this experiment, you will investigate the relationship between the vapor pressure of a liquid and its temperature. When a liquid is added to the Erlenmeyer flask shown in Figure 1, it

More information

Sconser Quarry, Caol Mor

Sconser Quarry, Caol Mor Sconser Quarry, Caol Mor AUTODEPOMOD MODELLIN G REPORT 4.2017 Registered in Scotland No. 138843 Registered Office, 1st Floor, Admiralty Park, Admiralty Road, Rosyth, FIFE, KY11 2YW Marine Harvest ( Scotland)

More information

Courseware Sample F0

Courseware Sample F0 Electric Power / Controls Courseware Sample 85303-F0 A ELECTRIC POWER / CONTROLS COURSEWARE SAMPLE by the Staff of Lab-Volt Ltd. Copyright 2009 Lab-Volt Ltd. All rights reserved. No part of this publication

More information

Questions. Background. Equipment. Activities LAB 3. WAVES

Questions. Background. Equipment. Activities LAB 3. WAVES Questions LAB 3. WAVES How can we measure the velocity of a wave? How are the wavelength, period, and speed of a wave related? What types of behavior do waves exhibit? Background Consider what happens

More information

Exploring the Properties of Gases

Exploring the Properties of Gases Computer 30 The purpose of this investigation is to conduct a series of experiments, each of which illustrates a different gas law. You will be given a list of equipment and materials and some general

More information

UNIVERSITY OF WATERLOO

UNIVERSITY OF WATERLOO UNIVERSITY OF WATERLOO Department of Chemical Engineering ChE 524 Process Control Laboratory Instruction Manual January, 2001 Revised: May, 2009 1 Experiment # 2 - Double Pipe Heat Exchanger Experimental

More information

Compare the scalar of speed and the vector of velocity.

Compare the scalar of speed and the vector of velocity. Review Video QOD 2/14/12: Compare the scalar of speed and the vector of velocity. What are the equations for each? Feb 14 6:51 AM 1 Imagine that you are a race car driver. You push on the accelerator.

More information

Standard Operating Procedure Inductively Coupled Plasma Optical Emission Spectrometer (ICP-OES) - Thermo Scientific icap 6300

Standard Operating Procedure Inductively Coupled Plasma Optical Emission Spectrometer (ICP-OES) - Thermo Scientific icap 6300 Standard Operating Procedure Inductively Coupled Plasma Optical Emission Spectrometer (ICP-OES) - Thermo Scientific icap 6300 The Thermo Scientific icap 6300 Inductively Coupled Plasma Optical Emission

More information

Excel Solver Case: Beach Town Lifeguard Scheduling

Excel Solver Case: Beach Town Lifeguard Scheduling 130 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring 2015 Excel Solver Case: Beach Town Lifeguard Scheduling Purpose: Optimization under constraints. A. GETTING STARTED All Excel projects

More information

Lab 5: Forces on Submerged Objects

Lab 5: Forces on Submerged Objects A. Background Information Lab 5: Forces on Submerged Objects When an object is submerged in a fluid (liquid or gas), it will experience a force due to the pressure exerted by the fluid on the object. The

More information

EXPERIMENT XI. Careful!! Improper handling of the vacuum line may result in the release of SO 2 which is an irritating and suffocating gas.

EXPERIMENT XI. Careful!! Improper handling of the vacuum line may result in the release of SO 2 which is an irritating and suffocating gas. Chem 366-3 Page XI - 1 EXPERIMENT XI INFRARED SPECTRUM OF SO2 (S&G, 5th ed. Expt 36, 6th ed. Expt. 35) 1. Pre-Lab preparation. The description of this experiment has disappeared from the more recent editions

More information

National Curriculum Statement: Determine quartiles and interquartile range (ACMSP248).

National Curriculum Statement: Determine quartiles and interquartile range (ACMSP248). Teacher Notes 7 8 9 10 11 12 Aim TI-Nspire CAS Investigation Student 90min To compare the height, weight, age and field positions of all football players from the 32 teams which participated in the 2010

More information

Aerobic Respiration. Evaluation copy

Aerobic Respiration. Evaluation copy Aerobic Respiration Computer 17 Aerobic cellular respiration is the process of converting the chemical energy of organic molecules into a form immediately usable by organisms. Glucose may be oxidized completely

More information

Lab # 03: Visualization of Shock Waves by using Schlieren Technique

Lab # 03: Visualization of Shock Waves by using Schlieren Technique AerE545 Lab # 03: Visualization of Shock Waves by using Schlieren Technique Objectives: 1. To get hands-on experiences about Schlieren technique for flow visualization. 2. To learn how to do the optics

More information

Motion. 1 Describing Motion CHAPTER 2

Motion. 1 Describing Motion CHAPTER 2 CHAPTER 2 Motion What You ll Learn the difference between displacement and distance how to calculate an object s speed how to graph motion 1 Describing Motion 2(D), 4(A), 4(B) Before You Read Have you

More information

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14.

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14. Workshop 1: Bubbly Flow in a Rectangular Bubble Column 14. 5 Release Multiphase Flow Modeling In ANSYS CFX 2013 ANSYS, Inc. WS1-1 Release 14.5 Introduction This workshop models the dispersion of air bubbles

More information

SENSUS PRO MANAGER (for SENSUS or SENSUS PRO devices) User s Guide -- Windows. Version 2.0 Published October 17, ReefNet Inc.

SENSUS PRO MANAGER (for SENSUS or SENSUS PRO devices) User s Guide -- Windows. Version 2.0 Published October 17, ReefNet Inc. SENSUS PRO MANAGER (for SENSUS or SENSUS PRO devices) User s Guide -- Windows Version 2.0 Published October 17, 2002 2002 ReefNet Inc. 1.0 Introduction The SENSUS PRO data recorder captures the time, depth,

More information

From lab to production, providing a window into the process

From lab to production, providing a window into the process From lab to production, providing a window into the process On-Line Viscosity Measurement ViscoSensor Continuous Melt Rheometer (CMR IV) Flow Characterization Rheometer (FCR) A Window into the Process

More information

WEST POINT GOLF CLUB USING THE GOLFSOFTWARE PROGRAM FOR THE DRAW AND SCORING

WEST POINT GOLF CLUB USING THE GOLFSOFTWARE PROGRAM FOR THE DRAW AND SCORING USING THE GOLFSOFTWARE PROGRAM FOR THE DRAW AND SCORING The new software is made up of 3 modules - Handicap, Tournament and Player Portal. Note that the Handicap module and the Tournament module have separate

More information

Bagh Dail nan Ceann ( BDNC) Salmon Farm, Loch Shuna

Bagh Dail nan Ceann ( BDNC) Salmon Farm, Loch Shuna Bagh Dail nan Ceann ( BDNC) Salmon Farm, Loch Shuna AUTODEPOMOD MODELLIN G REPORT 09. 2016V1 REPORT WRITTEN BY ENVIRONMENTA L ANALYST) CHECKED BY ENVIRONMENTAL MAN AGER) Registered in Scotland No. 138843

More information

Built-in Purge Control Functions

Built-in Purge Control Functions Built-in Purge Control Functions Why clean a sensor? As the velocity sensor was calibrated clean, operating it clean also preserves the best calibration. Any build up of material on a thermal sensor tends

More information

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT v. 10.0 GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts

More information

Understanding Winter Road Conditions in Yellowstone National Park Using Cumulative Sum Control Charts

Understanding Winter Road Conditions in Yellowstone National Park Using Cumulative Sum Control Charts 1 Understanding Winter Road Conditions in Yellowstone National Park Using Cumulative Sum Control Charts Amber Nuxoll April 1st, 2014 Contents 1 Introduction 2 2 Data Collection and Background 2 3 Exploratory

More information

Quantitative Analysis of Hydrocarbons by Gas Chromatography

Quantitative Analysis of Hydrocarbons by Gas Chromatography Quantitative Analysis of Hydrocarbons by Gas Chromatography Introduction Gas-liquid chromatography (GLC) accomplishes a separation by partitioning solutes between a mobile gas phase and a stationary liquid

More information

User s Guide for inext Online: Software for Interpolation and

User s Guide for inext Online: Software for Interpolation and Original version (September 2016) User s Guide for inext Online: Software for Interpolation and Extrapolation of Species Diversity Anne Chao, K. H. Ma and T. C. Hsieh Institute of Statistics, National

More information

Automated design of a ship mooring system

Automated design of a ship mooring system Automated design of a ship mooring system The challenge: To investigate a mechanism to control and automate a mooring system between two ships at sea Maplesoft, a division of Waterloo Maple Inc., 29 Editor's

More information

BLOOD PRESSURE SENSOR BT17i USER S GUIDE

BLOOD PRESSURE SENSOR BT17i USER S GUIDE BLOOD PRESSURE SENSOR BT17i USER S GUIDE CENTRE FOR MICROCOMPUTER APPLICATIONS http://www.cma-science.nl Short description The Blood Pressure sensor BT17i allows measuring arterial blood pressure. The

More information

Minimal influence of wind and tidal height on underwater noise in Haro Strait

Minimal influence of wind and tidal height on underwater noise in Haro Strait Minimal influence of wind and tidal height on underwater noise in Haro Strait Introduction Scott Veirs, Beam Reach Val Veirs, Colorado College December 2, 2007 Assessing the effect of wind and currents

More information

Quantitative Risk of Linear Infrastructure on Permafrost Heather Brooks, PE. Arquluk Committee Meeting November 2015

Quantitative Risk of Linear Infrastructure on Permafrost Heather Brooks, PE. Arquluk Committee Meeting November 2015 Slide 1 Quantitative Risk of Linear Infrastructure on Permafrost Heather Brooks, PE Arquluk Committee Meeting November 2015 Welcome to the meeting of the committee for Arquluk s Quantitative Risk of Linear

More information

Saphir Guided Session #8

Saphir Guided Session #8 Ecrin v4.30 - Doc v4.30.05 - KAPPA 1988-2013 Saphir Guided Session #8 SapGS08-1/11 Saphir Guided Session #8 A01 Introduction This Guided Session illustrates the minifrac option available for analysis of

More information

Hydrostatics Physics Lab XI

Hydrostatics Physics Lab XI Hydrostatics Physics Lab XI Objective Students will discover the basic principles of buoyancy in a fluid. Students will also quantitatively demonstrate the variance of pressure with immersion depth in

More information

Boyle s Law. Pressure-Volume Relationship in Gases. Figure 1

Boyle s Law. Pressure-Volume Relationship in Gases. Figure 1 Boyle s Law Pressure-Volume Relationship in Gases The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we use will be air,

More information

Describing a journey made by an object is very boring if you just use words. As with much of science, graphs are more revealing.

Describing a journey made by an object is very boring if you just use words. As with much of science, graphs are more revealing. Distance vs. Time Describing a journey made by an object is very boring if you just use words. As with much of science, graphs are more revealing. Plotting distance against time can tell you a lot about

More information

Report for Experiment #11 Testing Newton s Second Law On the Moon

Report for Experiment #11 Testing Newton s Second Law On the Moon Report for Experiment #11 Testing Newton s Second Law On the Moon Neil Armstrong Lab partner: Buzz Aldrin TA: Michael Collins July 20th, 1969 Abstract In this experiment, we tested Newton s second law

More information

Analysis of the Radar Doppler Signature of a Moving Human

Analysis of the Radar Doppler Signature of a Moving Human Analysis of the Radar Doppler Signature of a Moving Human Traian Dogaru Calvin Le Getachew Kirose U.S. Army Research Laboratory RF Signal Processing and Modeling Branch Outline Use Doppler radar to detect

More information

Fun with Gas Laws. Prepared by Vance O. Kennedy and Ross S. Nord, Eastern Michigan University PURPOSE

Fun with Gas Laws. Prepared by Vance O. Kennedy and Ross S. Nord, Eastern Michigan University PURPOSE Experiment 2 Fun with Gas Laws Prepared by Vance O. Kennedy and Ross S. Nord, Eastern Michigan University PURPOSE The purpose of this laboratory experience is to explore the gas law relationships between

More information

Effects of Bulb Degradation on Fly Attraction to Insect Light Traps

Effects of Bulb Degradation on Fly Attraction to Insect Light Traps Effects of Bulb Degradation on Fly Attraction to Insect Light Traps Final Report to the Pest Management Foundation John Cooksey Roberto M. Pereira Philip G. Koehler 2/10/14 Table of Contents Table of Contents...

More information