The PyMca Application and Toolkit V.A. Solé - European Synchrotron Radiation Facility 2009 Python for Scientific Computing Conference

Size: px
Start display at page:

Download "The PyMca Application and Toolkit V.A. Solé - European Synchrotron Radiation Facility 2009 Python for Scientific Computing Conference"

Transcription

1 The PyMca Application and Toolkit V.A. Solé - European Synchrotron Radiation Facility 2009 Python for Scientific Computing Conference Slide: 1

2 The ESRF: Just an X-Ray Source Slide: 2

3 (Partial) Synchrotron Chart Slide: 3

4 X-Ray Fluorescence Basics Energy of emitted X rays is element dependent Slide: 4

5 Visualization via Multi-Channel Analyzers (MCA) Slide: 5

6 PyMca? PyMca is set of software tools on its way to become a reference in XRF For the end users and the specific developers Set of programs and widgets for XRF analysis Spectrum modeling Quantification ROI imaging Fit imaging via batch processing For the general developer Set of python modules Data visualization Peak search Function fitting Imaging of 1D data V.A. Solé, E. Papillon, M. Cotte, Ph. Walter, J. Susini, Spectrochimica Acta B 62 (2007) Slide: 6

7 Generalities - First release in Source code SVN repository available at sourceforge since Official releases aim to provide ready-to-use binaries to end users - External dependencies on numpy, PyQt4 and PyQwt5 - If installed, Matplotlib is used to generate high quality output - Provides high level functional widgets that can be embedded in your own application Slide: 7

8 XRF Spectrum Analysis Typical procedure: 1. Calibration 2. Peak identification 3. Peak area extraction Region of interest (ROI) Deconvolution (FIT) 4. Quantification Documentation at Slide: 8

9 1. Calibration Detailed documentation at Slide: 9

10 2. Identification Theoretical database in ASCII format IUPAC notation whenever possible PyMca proposes, the user decides Slide: 10

11 3.1 Peak area via ROI Slide: 11

12 3.2 Peak area via fitting Slide: 12

13 3.2 Peak area via fitting Slide: 13

14 Fit configuration Dialog (I) Slide: 14

15 Fit Configuration Dialog (II) Slide: 15

16 Emission Lines Allowed transitions Implemented transitions Any transition defined KShellRates.dat LShellRates.dat MShellRates.dat Slide: 16

17 4. Quantification (I) Parallel beam approximation Slide: 17

18 4. Quantification (II) Nominal concentration 500 ppm Slide: 18

19 XRF Analysis Integration in other Applications Integration in mxcube (ESRF) Integration elsewhere Slide: 19

20 Is it easy to embed? For the previous examples, basically one just needs 4 lines of code: from PyMca import McaAdvancedFit fitwindow = McaAdvancedFit.McaAdvancedFit() fitwindow.setdata(x, y) fitwindow.show() It can be used from ipython just starting it as ipython q4thread Slide: 20

21 Advanced Fit Batch processing Select the input files Select the fit configuration Select the output directory Select the output options Start Slide: 21

22 Output Images in ASCII and ESRF format Easy to import in other programs Individual peak contributions in ASCII Use your own plotting program Fully automated HTML report Browse your results! Slide: 22

23 XRF Imaging One spectrum for each pixel + A sum spectrum for the whole image Slide: 23

24 Pb Ca S Sb We wanted to know what pigments were used in this section of the painting Copyright C2RMF Slide: 24

25 Based on the batch generated element distribution maps Slide: 25

26 and their correlations as shown by the program Sulfur and antimony correlated Lead and antimony not correlated we were able to determine the possible presence of stibnite grains (Sb 2 S 3 ) embedded in a lead containing matrix. M. Cotte, E. Welcomme, V.A. Solé, M. Salomé, M. Menu, Ph. Walter, J. Susini, Anal. Chem. 79 (2007) Slide: 26

27 Generic Fitting Module Levenberg-Marquardt algorithm with constraints on fitting parameters It accepts user defined functions The simplest form of user function: Slide: 27

28 Automatic Peak Search Routines Slide: 28

29 1D Stack ROI Imaging In this example: Stack = 101x200x2000 numpy array spectra of 2000 channels Pixel[i, j] = numpy.sum(stack[i, j, :]) Pixel[i, j] = numpy.sum(stack[i, j, ch0:ch1]) Slide: 29

30 1D Stack ROI Imaging We can generate new images by moving the cursors or defining new ROIs in the table Slide: 30

31 Imaging and Principal Component Analysis Subtract the average spectrum from each spectrum of the dataset and arrange it as NpixelsxNchannels Calculate the covariance = Data.T * Data Get the eigenvectors of the covariance Add the average spectrum to each row and get the projections of that dataset on each eigenvector (Npixels scalars for each eigenvector) Reshape the projections in the original map shape to obtain the Eigenimages Covariance method, other ways in en.wikipedia.org/wiki/principal_components_analysis Slide: 31

32 Eigenimages and Eigenvectors Slide: 32

33 Eigenimages and Eigenvectors Slide: 33

34 Eigenimages and Eigenvectors Slide: 34

35 Eigenimages and Eigenvectors Slide: 35

36 Eigenimages and Eigenvectors Slide: 36

37 Eigenimages and Eigenvectors Slide: 37

38 Getting the actual information We can select a set of pixels on any of the displayed images and display the cumulative spectrum associated to those pixels. Here we can see the average spectrum associated to the hotter pixels of the Eigenimage 02 (in red) compared to the average spectrum of the map (in black). Slide: 38

39 We could have easily missed the presence of one element if we would have just analyzed the sum spectrum via ROIs. Slide: 39

40 What have we done? We have used principal components analysis to know what sample regions were worth to take a closer look. Not bad when you have a lot of data This data treatment is totally generic and applicable to other methods of analysis Slide: 40

41 Current Developments HDF5 Support - Collaboration with D. Dale from Cornell High Energy Synchrotron Source (CHESS) - HDF5 expected to become the file format of most European synchrotrons sources - Additional dependency on h5py - Partial support already available in current SVN sources Slide: 41

42 Current Developments 3D and 4D -The goal is to provide ways to visualize and interact with multiparametric data -Already available at the ESRF through an additional PyMca set of modules -Currently evaluating the pros and cons of using MayaVi Slide: 42

43 Slide: 43

44 Slide: 44

45 Conclusion PyMca is a program as well as an XRF analysis toolkit - Open source and distributed under the conditions of the GPLv2+ - Can be used as a fitting and visualization tool (for up to 4-dimensional data) - Provides high level widgets based on PyQt that can be used independently or integrated into your application - Allows you to specify a physically meaningful model which can quantitatively determine element concentrations from energy dispersive X-ray spectra - Is implemented at many synchrotron facilities and labs around the world - Active development is funded by the ESRF Slide: 45

46 Acknowledgements My ESRF colleagues (mainly software group and microscopy beamlines ID21 and ID22) Ph. Walter and M. Cotte (Centre de Recherche et de Restauration des Musées de France) Darren Dale (Cornell High Energy Synchrotron Source) The PyMca users, for their enthusiasm and their encouragements Slide: 46

Final Project Report (NHL Cumulative Game by Game Visualization) Patrick Wong April 24, Motivation & Audience for Visualization

Final Project Report (NHL Cumulative Game by Game Visualization) Patrick Wong April 24, Motivation & Audience for Visualization Final Project Report (NHL Cumulative Game by Game Visualization) Patrick Wong April 24, 2012 1 Motivation & Audience for Visualization I created an application that visualizes various NHL teams cumulative

More information

MATRIX-MG Series. Innovation with Integrity. Automated High-Performance Gas Analyzers FT-IR

MATRIX-MG Series. Innovation with Integrity. Automated High-Performance Gas Analyzers FT-IR MATRIX-MG Series Automated High-Performance Gas Analyzers Innovation with Integrity FT-IR The MATRIX-MG Series comprises three high-performance FT-IR gas analyzers in a compact and rugged housing. They

More information

Introduction to topological data analysis

Introduction to topological data analysis Introduction to topological data analysis Ippei Obayashi Adavnced Institute for Materials Research, Tohoku University Jan. 12, 2018 I. Obayashi (AIMR (Tohoku U.)) Introduction to TDA Jan. 12, 2018 1 /

More information

FACE DETECTION. Lab on Project Based Learning May Xin Huang, Mark Ison, Daniel Martínez Visual Perception

FACE DETECTION. Lab on Project Based Learning May Xin Huang, Mark Ison, Daniel Martínez Visual Perception FACE DETECTION Lab on Project Based Learning May 2011 Xin Huang, Mark Ison, Daniel Martínez Visual Perception Contents Introduction Exploration into local invariant features The final method Results Conclusions

More information

Diver Training Options

Diver Training Options MAIN INTERNET ON-SITE TAILORED PACKAGES INTER-COMPANY Diver Training Options DBI offers a menu of tailored courses Designed for users as well as IT Professionals to learn how to master the functionality

More information

Information Technology for Monitoring of Municipal Gas Consumption, Based on Additive Model and Correlated for Weather Factors

Information Technology for Monitoring of Municipal Gas Consumption, Based on Additive Model and Correlated for Weather Factors ISSN 1746-7659, England, UK Journal of Information and Computing Science Vol. 11, No. 3, 2016, pp.180-187 Information Technology for Monitoring of Municipal Gas Consumption, Based on Additive Model and

More information

Ocean Wave Forecasting

Ocean Wave Forecasting Ocean Wave Forecasting Jean-Raymond Bidlot* Marine Prediction Section Predictability Division of the Research Department European Centre for Medium-range Weather Forecasts (E.C.M.W.F.) Reading, UK * With

More information

Predicting Horse Racing Results with Machine Learning

Predicting Horse Racing Results with Machine Learning Predicting Horse Racing Results with Machine Learning LYU 1703 LIU YIDE 1155062194 Supervisor: Professor Michael R. Lyu Outline Recap of last semester Object of this semester Data Preparation Set to sequence

More information

Central scientific research automobile and automotive engine institute

Central scientific research automobile and automotive engine institute Central scientific research automobile and automotive engine institute The next mandatory requirements for gas analytical equipment act both in Russian Federation and countries of Customs Union (Belarus,

More information

Antech Lab Requisition System. Antech Setup From the Main Vetware Menu Tools Antech Processes Antech Setup To display the following screen

Antech Lab Requisition System. Antech Setup From the Main Vetware Menu Tools Antech Processes Antech Setup To display the following screen Antech Lab Requisition System Overview Antech Setup From the Main Vetware Menu Tools Antech Processes Antech Setup To display the following screen Entry suggestions are provided on the right of the screen.

More information

P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method

P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method 19 May 2014 M. Daniels This tutorial is for configuring a P3000 series (Pressurements) deadweight tester to be used with COMPASS

More information

Xactix XeF2 OPERATION MANUAL

Xactix XeF2 OPERATION MANUAL General Information The Xactix e-1 is a xenon difluoride (XeF 2) isotropic silicon etcher. XeF 2 is a vapor phase etch, which exhibits very high selectivity of silicon to photo-resist, silicon dioxide,

More information

FLUORESCENCE DETERMINATION OF OXYGEN

FLUORESCENCE DETERMINATION OF OXYGEN FLUORESCENCE DETERMINATION OF OXYGEN Objectives This experiment will familiarize the students with the principles of fluorescence quenching as well as the Ocean Optics FOXY Fiber Optic Sensor System. Spectra

More information

SS32L Dissolved O 2 Probe

SS32L Dissolved O 2 Probe BIOPAC WWW.biopac.com Systems, Inc. Application Note PH-185 SS32L Dissolved O 2 Probe SS32L Dissolved O 2 Probe BIOPAC Software SS32L Specifications BSL PRO v. 3.6.6 BIOPAC Hardware SS32L Dissolved O 2

More information

UNIVERSITY OF EDINBURGH GENERIC RISK ASSESSMENT - RADIATION RP/RA8 - WORK WITH X-RAY FLUORESCENCE ANALYSERS

UNIVERSITY OF EDINBURGH GENERIC RISK ASSESSMENT - RADIATION RP/RA8 - WORK WITH X-RAY FLUORESCENCE ANALYSERS UNIVERSITY OF EDINBURGH GENERIC RISK ASSESSMENT - RADIATION RP/RA8 - WORK WITH X-RAY FLUORESCENCE ANALYSERS Foreword This is a generic risk assessment for use by persons involved in or effected by the

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

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3 Tutorial for the Total Vertical Uncertainty Analysis Tool in NaviModel3 May, 2011 1. Introduction The Total Vertical Uncertainty Analysis Tool in NaviModel3 has been designed to facilitate a determination

More information

ACCURATE PRESSURE MEASUREMENT FOR STEAM TURBINE PERFORMANCE TESTING

ACCURATE PRESSURE MEASUREMENT FOR STEAM TURBINE PERFORMANCE TESTING ACCURATE PRESSURE MEASUREMENT FOR STEAM TURBINE PERFORMANCE TESTING Blair Chalpin Charles A. Matthews Mechanical Design Engineer Product Support Manager Scanivalve Corp Scanivalve Corp Liberty Lake, WA

More information

Implementation on Analyzing the Bubble Flows in Microchannels using Image Processing

Implementation on Analyzing the Bubble Flows in Microchannels using Image Processing Implementation on Analyzing the Bubble Flows in Microchannels using Image Processing Anjushree Nair, Neha Pandey, Kalpana R. Bodke, Mrs. Mohini Laghate Abstract The paper aims at implementation of bubble

More information

LINEAR TRANSFORMATION APPLIED TO THE CALIBRATION OF ANALYTES IN VARIOUS MATRICES USING A TOTAL HYDROCARBON (THC) ANALYZER

LINEAR TRANSFORMATION APPLIED TO THE CALIBRATION OF ANALYTES IN VARIOUS MATRICES USING A TOTAL HYDROCARBON (THC) ANALYZER LINEAR TRANSFORMATION APPLIED TO THE CALIBRATION OF ANALYTES IN VARIOUS MATRICES USING A TOTAL HYDROCARBON (THC) ANALYZER Michael T Tang, Ph.D. Grace Feng Greg Merideth Rui Huang Matheson Gas Applied Lab

More information

FIG: 27.1 Tool String

FIG: 27.1 Tool String Bring up Radioactive Tracer service. Click Acquisition Box - Edit - Tool String Edit the tool string as necessary to reflect the tool string being run. This is important to insure proper offsets, filters,

More information

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

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS #19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS Final Research Report Luis E. Navarro-Serment, Ph.D. The Robotics Institute Carnegie Mellon University November 25, 2018. Disclaimer

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

DATA SCIENCE SUMMER UNI VIENNA

DATA SCIENCE SUMMER UNI VIENNA Prerequisites - You have installed Tableau Desktop on your computer. Available here: http://www.tableau.com/academic/students - You have downloaded the data (athlete_events.csv) available here: https://www.kaggle.com/heesoo37/120-years-of-olympic-historyathletes-and-results

More information

Depth Conversion with ISMap

Depth Conversion with ISMap Depth Conversion with ISMap Brian Russell July 5, 2012 Introduction This article will compare two different approaches to depth conversion between measured well depths and a map of seismic two-way travel-time

More information

Neural Networks II. Chen Gao. Virginia Tech Spring 2019 ECE-5424G / CS-5824

Neural Networks II. Chen Gao. Virginia Tech Spring 2019 ECE-5424G / CS-5824 Neural Networks II Chen Gao ECE-5424G / CS-5824 Virginia Tech Spring 2019 Neural Networks Origins: Algorithms that try to mimic the brain. What is this? A single neuron in the brain Input Output Slide

More information

BEST KNOWN METHODS. Transpector XPR3 Gas Analysis System. 1 of 6 DESCRIPTION XPR3 APPLICATIONS PHYSICAL INSTALLATION

BEST KNOWN METHODS. Transpector XPR3 Gas Analysis System. 1 of 6 DESCRIPTION XPR3 APPLICATIONS PHYSICAL INSTALLATION BEST KNOWN METHODS Transpector XPR3 Gas Analysis System DESCRIPTION The Transpector XPR3 is a third-generation, quadrupole-based residual gas analyzer that operates at PVD process pressures and is the

More information

Activity P07: Acceleration of a Cart (Acceleration Sensor, Motion Sensor)

Activity P07: Acceleration of a Cart (Acceleration Sensor, Motion Sensor) Activity P07: Acceleration of a Cart (Acceleration Sensor, Motion Sensor) Equipment Needed Qty Equipment Needed Qty Acceleration Sensor (CI-6558) 1 Dynamics Cart (inc. w/ Track) 1 Motion Sensor (CI-6742)

More information

SIDRA INTERSECTION 6.1 UPDATE HISTORY

SIDRA INTERSECTION 6.1 UPDATE HISTORY Akcelik & Associates Pty Ltd PO Box 1075G, Greythorn, Vic 3104 AUSTRALIA ABN 79 088 889 687 For all technical support, sales support and general enquiries: support.sidrasolutions.com SIDRA INTERSECTION

More information

Mac Software Manual for FITstep Pro Version 2

Mac Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

Shot-by-shot directional source deghosting and directional designature using near-gun measurements

Shot-by-shot directional source deghosting and directional designature using near-gun measurements H1-1-3 Shot-by-shot directional source deghosting and directional designature using near-gun measurements Neil Hargreaves, Rob Telling, Sergio Grion Dolphin Geophysical, London, UK Introduction In this

More information

Purpose and Scope: Responsibilities: Warnings and precautions: Background Beers law

Purpose and Scope: Responsibilities: Warnings and precautions: Background Beers law Purpose and Scope: This document describes the procedures and policies for using the MSE Bruker FTIR Spectrometer. The scope of this document is to establish user procedures. Instrument maintenance and

More information

Advanced PMA Capabilities for MCM

Advanced PMA Capabilities for MCM Advanced PMA Capabilities for MCM Shorten the sensor-to-shooter timeline New sensor technology deployed on off-board underwater systems provides navies with improved imagery and data for the purposes of

More information

Agile project management with scrum

Agile project management with scrum Agile project management with scrum CS 236503 Dr. Oren Mishali Based on the book Agile Project Management with Scrum Overview of the Scrum process The following slides give an overview of the Scrum process,

More information

Cricket umpire assistance and ball tracking system using a single smartphone camera

Cricket umpire assistance and ball tracking system using a single smartphone camera 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 Cricket umpire assistance and ball tracking system using a single smartphone camera Udit Arora

More information

BVIS Beach Volleyball Information System

BVIS Beach Volleyball Information System BVIS Beach Volleyball Information System Developments in computer science over the past few years, together with technological innovation, has in turn stimulated the development of tailored software solutions

More information

WMS 8.4 Tutorial Hydraulics and Floodplain Modeling HY-8 Modeling Wizard Learn how to model a culvert using HY-8 and WMS

WMS 8.4 Tutorial Hydraulics and Floodplain Modeling HY-8 Modeling Wizard Learn how to model a culvert using HY-8 and WMS v. 8.4 WMS 8.4 Tutorial Hydraulics and Floodplain Modeling HY-8 Modeling Wizard Learn how to model a culvert using HY-8 and WMS Objectives Define a conceptual schematic of the roadway, invert, and downstream

More information

Quadruple mass spectrometers (transducer type)

Quadruple mass spectrometers (transducer type) Quadruple mass spectrometers that meet the need for sensitive analysis and low outgassing which were specifically designed to be controlled by PCs Quadruple mass spectrometers (transducer type) M-070QA-TDF,

More information

HASTAC High stability Altimeter SysTem for Air data Computers

HASTAC High stability Altimeter SysTem for Air data Computers HASTAC High stability Altimeter SysTem for Air data Computers André Larsen R&D Director Memscap Sensor Solution SIXTH FRAMEWORK PROGRAMME PRIORITY 4 Aeronautics and Space EC contract no. AST4-CT-2005-012334

More information

The rate versus time can then be the subject of whatever calculation the user chooses, for example:

The rate versus time can then be the subject of whatever calculation the user chooses, for example: Using Neptune Planner Plus to Export Tidal Rates to Excel These notes are intended to assist the interested user in exporting predicted tidal stream rates into a spreadsheet for the estimation of tidal

More information

Figure 2: Principle of GPVS and ILIDS.

Figure 2: Principle of GPVS and ILIDS. Summary Bubbly flows appear in many industrial applications. In electrochemistry, bubbles emerge on the electrodes in e.g. hydrolysis of water, the production of chloride and as a side-reaction in metal

More information

FOURIER TRANSFORM INFRARED SPECTROSCOPY

FOURIER TRANSFORM INFRARED SPECTROSCOPY Purpose and Scope: This document describes the procedures and policies for using the MSE Bruker FTIR Spectrometer. The scope of this document is to establish user procedures. Instrument maintenance and

More information

Non-Motorized Transport (NMT) Development. Gerald Ollivier Transport Cluster Leader Transport Global Practice The World Bank

Non-Motorized Transport (NMT) Development. Gerald Ollivier Transport Cluster Leader Transport Global Practice The World Bank Non-Motorized Transport (NMT) Development Gerald Ollivier Transport Cluster Leader Transport Global Practice The World Bank In China, national plan and policy prioritize NMT development The 13 th Five

More information

Recording established using the VO2 and RER graph template file (h19.gtl)

Recording established using the VO2 and RER graph template file (h19.gtl) Updated 10-14-13 BSL PRO Lesson H19: VO 2 and RER Measurement Recording established using the VO2 and RER graph template file (h19.gtl) Overview Oxygen Consumption (VO 2 ) and Respiratory Exchange Ratio

More information

Falmouth and St.Austell pspa bird bycatch analysis report year

Falmouth and St.Austell pspa bird bycatch analysis report year Natural England Commissioned Report NECR231 Falmouth and St.Austell pspa bird bycatch analysis report year 1-2014 First published 20 April 2017 www.gov.uk/natural-england Foreword Natural England commission

More information

Retention Time Locking: Concepts and Applications. Application

Retention Time Locking: Concepts and Applications. Application Retention Time Locking: Concepts and Applications Application Gas Chromatography December 1997 Authors Vince Giarrocco Bruce Quimby Matthew Klee Agilent Technologies, Inc. 2850 Centerville Road Wilmington,

More information

We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports.

We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports. 1 We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports. I ll also be covering some enhancements and changes in Mascot

More information

The FLUX-METER: implementation of a portable integrated instrumentation for the measurement of CO 2 and CH 4 diffuse flux from landfill soil cover.

The FLUX-METER: implementation of a portable integrated instrumentation for the measurement of CO 2 and CH 4 diffuse flux from landfill soil cover. : implementation of a portable integrated instrumentation for the measurement of CO 2 and CH 4 diffuse flux from landfill soil cover. I. Minardi*, E. Giovenali*, L. Coppo*, G. Virgili*, D. Continanza*,

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

ISO INTERNATIONAL STANDARD

ISO INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO 17089-1 First edition 2010-11-15 Measurement of fluid flow in closed conduits Ultrasonic meters for gas Part 1: Meters for custody transfer and allocation measurement Mesurage

More information

Shimming with VnmrJ 3.1 Software for Peak NMR Performance

Shimming with VnmrJ 3.1 Software for Peak NMR Performance Shimming with VnmrJ 3.1 Software for Peak NMR Performance Application Note Author Ron Crouch Agilent Technologies 13000 Weston Parkway Cary, NC 27513 USA Shimming is the term used to describe the process

More information

Acoustic Focusing in Shallow Water and Bubble Radiation Effects

Acoustic Focusing in Shallow Water and Bubble Radiation Effects Acoustic Focusing in Shallow Water and Bubble Radiation Effects Grant B. Deane Marine Physical Laboratory, Scripps Institution of Oceanography UCSD, La Jolla, CA 92093-0238 Phone: (858) 534-0536 fax: (858)

More information

SM8200. SO2/NO In Situ Multi-Gas Analyzer

SM8200. SO2/NO In Situ Multi-Gas Analyzer SM8200 SO2/NO In Situ Multi-Gas Analyzer The SM8200 combines state-of-the-art chemometric spectroscopic analysis software and second-derivative (d2) ultra violet (UV) technology with the proven features

More information

CONTROL VALVE TESTING

CONTROL VALVE TESTING The optimal functioning of the Control valve not only exists of sufficient body & seat tightness, but more important, the total "performance" of the valve and its controls! For an accurate and reliable

More information

HMS/SHMS Drift Chambers Calibration. Carlos Yero June 26, 2017

HMS/SHMS Drift Chambers Calibration. Carlos Yero June 26, 2017 HMS/SHMS Drift Chambers Calibration Carlos Yero June 26, 2017 SHMS Detector Stack Drift Chambers are tracking detectors Calibration is necessary for high precision particle track reconstruction Calibration

More information

A HYBRID METHOD FOR CALIBRATION OF UNKNOWN PARTIALLY/FULLY CLOSED VALVES IN WATER DISTRIBUTION SYSTEMS ABSTRACT

A HYBRID METHOD FOR CALIBRATION OF UNKNOWN PARTIALLY/FULLY CLOSED VALVES IN WATER DISTRIBUTION SYSTEMS ABSTRACT A HYBRID METHOD FOR CALIBRATION OF UNKNOWN PARTIALLY/FULLY CLOSED VALVES IN WATER DISTRIBUTION SYSTEMS Nhu Cuong Do 1,2, Angus Simpson 3, Jochen Deuerlein 4, Olivier Piller 5 1 University of Saskatchewan,

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

Tokyo: Simulating Hyperpath-Based Vehicle Navigations and its Impact on Travel Time Reliability

Tokyo: Simulating Hyperpath-Based Vehicle Navigations and its Impact on Travel Time Reliability CHAPTER 92 Tokyo: Simulating Hyperpath-Based Vehicle Navigations and its Impact on Travel Time Reliability Daisuke Fukuda, Jiangshan Ma, Kaoru Yamada and Norihito Shinkai 92.1 Introduction Most standard

More information

sorting solutions osx separator series

sorting solutions osx separator series osx separator series Comex offers a newly developed complex optical sorting system, in a user friendly platform, for the identification and separation of particles and materials, based on their many physical

More information

Engineering Note. Algorithms. Overview. Detailed Algorithm Description. NeoFox Calibration and Measurement. Products Affected: NeoFox

Engineering Note. Algorithms. Overview. Detailed Algorithm Description. NeoFox Calibration and Measurement. Products Affected: NeoFox Engineering Note Topic: NeoFox Calibration and Measurement Products Affected: NeoFox Date Issued: 04/18/2011 Algorithms Overview NeoFox is a dynamic measurement system that has been designed to work with

More information

Case Study. PayPal s Sparkline Case Study. About Sparkline

Case Study. PayPal s Sparkline Case Study. About Sparkline Our People. Your Solution. PayPal s Sparkline Case Study Case Study PayPal, an ebay subsidiary, is a digital payment provider offering flexible payment methods with more than 81 million active accounts

More information

7 th International Conference on Wind Turbine Noise Rotterdam 2 nd to 5 th May 2017

7 th International Conference on Wind Turbine Noise Rotterdam 2 nd to 5 th May 2017 7 th International Conference on Wind Turbine Noise Rotterdam 2 nd to 5 th May 2017 Sound power level measurements 3.0 ir. L.M. Eilders, Peutz bv: l.eilders@peutz.nl ing. E.H.A. de Beer, Peutz bv: e.debeer@peutz.nl

More information

VALVE CRITICALITY MODELING

VALVE CRITICALITY MODELING Casey, R., Boulos, P., Orr, C., and Bros, C. (2008). Valve Criticality Modeling. Eighth Annual ASCE Water Distribution Systems Analysis Symposium, Cincinnati, Ohio, August 27-30, 2006: pp. 1-8. VALVE CRITICALITY

More information

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski MEETPLANNER DESIGN DOCUMENT IDENTIFICATION Project Name: MeetPlanner Project Manager: Peter Grabowski OVERVIEW Swim coaches are often faced with a dilemma while planning swim meets. On the one hand, they

More information

Dräger X-dock Frequently Asked Questions

Dräger X-dock Frequently Asked Questions COSTS Why do I save costs when using Dräger X-dock? SOFTWARE What are the benefits of using a central database? What is the difference between the X-dock Manager Standard and the Professional Version?

More information

Diver-Office. Getting Started Guide. 2007, Schlumberger Water Services

Diver-Office. Getting Started Guide. 2007, Schlumberger Water Services Diver-Office Getting Started Guide 2007, Schlumberger Water Services Copyright Information 2007 Schlumberger Water Services. All rights reserved. No portion of the contents of this publication may be reproduced

More information

Players Movements and Team Shooting Performance: a Data Mining approach for Basketball.

Players Movements and Team Shooting Performance: a Data Mining approach for Basketball. Players Movements and Team Shooting Performance: a Data Mining approach for Basketball. arxiv:1805.02501v1 [stat.ap] 4 May 2018 Rodolfo Metulini 1 1 Department of Economics and Management, University of

More information

Provider ICD 10 Compliant Release A S K E S I S W E B I N A R F E B R U A R Y 1 9,

Provider ICD 10 Compliant Release A S K E S I S W E B I N A R F E B R U A R Y 1 9, Provider 7.2.6 ICD 10 Compliant Release A S K E S I S W E B I N A R F E B R U A R Y 1 9, 2 0 1 4 Agenda ICD 10 overview Application development path to compliance Objectives Components CMS 1500 Documentation

More information

Adaptation of Formation According to Opponent Analysis

Adaptation of Formation According to Opponent Analysis Adaptation of Formation According to Opponent Analysis Jaroslav ZAJAC Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovakia ka zajacjaro@orangemail.sk

More information

The HumiPyc - Model 1 - Gas Pycnometer; Density, Moisture, Permeation Analyzer; RH sensor Calibrator

The HumiPyc - Model 1 - Gas Pycnometer; Density, Moisture, Permeation Analyzer; RH sensor Calibrator The HumiPyc - Model 1 - Gas Pycnometer; Density, Moisture, Permeation Analyzer; RH sensor Calibrator Designed, built, and supported by InstruQuest Inc. Temperature controlled, multi-technique volumetric

More information

Smart-Walk: An Intelligent Physiological Monitoring System for Smart Families

Smart-Walk: An Intelligent Physiological Monitoring System for Smart Families Smart-Walk: An Intelligent Physiological Monitoring System for Smart Families P. Sundaravadivel 1, S. P. Mohanty 2, E. Kougianos 3, V. P. Yanambaka 4, and M. K. Ganapathiraju 5 University of North Texas,

More information

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Jehyun Cho a, Ghang Lee a, Jongsung Won a and Eunseo Ryu a a Dept. of Architectural Engineering, University of Yonsei,

More information

Spatio-temporal analysis of team sports Joachim Gudmundsson

Spatio-temporal analysis of team sports Joachim Gudmundsson Spatio-temporal analysis of team sports Joachim Gudmundsson The University of Sydney Page 1 Team sport analysis Talk is partly based on: Joachim Gudmundsson and Michael Horton Spatio-Temporal Analysis

More information

IDENTIFICATION OF WIND SEA AND SWELL EVENTS AND SWELL EVENTS PARAMETERIZATION OFF WEST AFRICA. K. Agbéko KPOGO-NUWOKLO

IDENTIFICATION OF WIND SEA AND SWELL EVENTS AND SWELL EVENTS PARAMETERIZATION OFF WEST AFRICA. K. Agbéko KPOGO-NUWOKLO Workshop: Statistical models of the metocean environment for engineering uses IDENTIFICATION OF WIND SEA AND SWELL EVENTS AND SWELL EVENTS PARAMETERIZATION OFF WEST AFRICA K. Agbéko KPOGO-NUWOKLO IFREMER-

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

NEED FOR SUPPLEMENTAL BATHYMETRIC SURVEY DATA COLLECTION

NEED FOR SUPPLEMENTAL BATHYMETRIC SURVEY DATA COLLECTION 305 West Grand Avenue, Suite 300 Montvale, New Jersey 07645 Phone 201.930.9890 Fax 201.930.9805 www.anchorqea.com M EMORANDUM To: Caroline Kwan and Nica Klaber U.S. Environmental Protection Agency Region

More information

SoundCast Design Intro

SoundCast Design Intro SoundCast Design Intro Basic Design SoundCast and Daysim 3 Land use attributes Households & Individuals SoundCast DaySim Travel demand simulator Trips and Households, Excel Summary Sheets, EMME network

More information

PBR MODEL GOVERNANCE CHECKLIST: Some Considerations for Practicing Actuaries

PBR MODEL GOVERNANCE CHECKLIST: Some Considerations for Practicing Actuaries PBR MODEL GOVERNANCE CHECKLIST: Some Considerations for Practicing Actuaries 2016 American Academy of Actuaries. All rights reserved. May not be reproduced without express permission. PBR Boot Camp: Basic

More information

The HumiPyc ( Model 2) - Gas Pycnometer; Density, Moisture, Permeation Analyzer; Filter Integrity Tester; RH sensor Calibrator

The HumiPyc ( Model 2) - Gas Pycnometer; Density, Moisture, Permeation Analyzer; Filter Integrity Tester; RH sensor Calibrator The HumiPyc ( Model 2) - Gas Pycnometer; Density, Moisture, Permeation Analyzer; Filter Integrity Tester; RH sensor Calibrator Designed, built, and supported by InstruQuest Inc. Universal pycnometer, no

More information

SEISMIC CHARACTERIZATION OF THE NOVEMBER 8, 10, AND 11, 1999 DEAD SEA UNDERWATER CHEMICAL CALIBRATION EXPLOSIONS USING CEPSTRAL MODELING AND INVERSION

SEISMIC CHARACTERIZATION OF THE NOVEMBER 8, 10, AND 11, 1999 DEAD SEA UNDERWATER CHEMICAL CALIBRATION EXPLOSIONS USING CEPSTRAL MODELING AND INVERSION SEISMIC CHARACTERIZATION OF THE NOVEMBER 8, 10, AND 11, 1999 DEAD SEA UNDERWATER CHEMICAL CALIBRATION EXPLOSIONS USING CEPSTRAL MODELING AND INVERSION Douglas R. Baumgardt and Angelina Freeman ENSCO, Inc.

More information

Statewide Cycloplan: Bicycle Planning Tool & Participatory GIS

Statewide Cycloplan: Bicycle Planning Tool & Participatory GIS Statewide Cycloplan: Bicycle Planning Tool & Participatory GIS Loren Terveen, Principal Investigator Department of Computer Science University of Minnesota June 2015 Research Project Final Report 2015-29

More information

Gas System Status Report

Gas System Status Report Gas System Status Report UGPS qualification Rome Control Electronics production schedule Gas circuit testing Software commands and safety Report from MIT B. Borgia TIM April 2006 Gas Circuit B. Borgia

More information

Specifications for the CMI 2409 Magnetocardiograph

Specifications for the CMI 2409 Magnetocardiograph Specifications for the CMI 2409 Magnetocardiograph Revision date April 14, 2006 1 518-381-1000 (tel) The CMI-2409 system consists of a holder (A), a patient bed (B) and a workstation (not shown in the

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

USE OF THE EXCEEDANCE CURVE APPROACH IN OCCUPIED BUILDING RISK ASSESSMENT

USE OF THE EXCEEDANCE CURVE APPROACH IN OCCUPIED BUILDING RISK ASSESSMENT USE OF THE EXCEEDANCE CURVE APPROACH IN OCCUPIED BUILDING RISK ASSESSMENT Kieran J Glynn, Advisor Major Accident Risk, BP, UK The exceedance curve approach was developed following the issue of the 2003

More information

Using MATLAB with CANoe

Using MATLAB with CANoe Version 2.0 2017-03-09 Application Note AN-IND-1-007 Author Restrictions Abstract Vector Informatik GmbH Public Document This application note describes the usage of MATLAB /Simulink combined with CANoe.

More information

Lab 4: Pressure Gradients over a Wing

Lab 4: Pressure Gradients over a Wing 2009 Lab 4: Pressure Gradients over a Wing Innovative Scientific Solutions Inc. 2766 Indian Ripple Road Dayton, OH 45440 (937)-429-4980 Lab 4: Pressure Gradients over a Wing Introduction: Like the previous

More information

AIR-X COMPACT AIR-X ON-LINE LUBRICANT AERATION MEASUREMENT. Technical Brochure ON RUNNING ENGINES

AIR-X COMPACT AIR-X ON-LINE LUBRICANT AERATION MEASUREMENT. Technical Brochure ON RUNNING ENGINES AIR-X COMPACT AIR-X ON-LINE LUBRICANT AERATION MEASUREMENT ON RUNNING ENGINES Technical Brochure 2015 Introduction The presence of air in the fluid of a working hydraulic system can cause significant performance

More information

GA-300 Gas Analyzer. Technical Note. Overview. Front Panel. iworx Systems, Inc. GA-300

GA-300 Gas Analyzer. Technical Note. Overview. Front Panel. iworx Systems, Inc. GA-300 Technical Note GA-300 Overview The GA-300 CO2 and O2 Gas Analyzer is easy to use, robust, and adaptable to human, animal, and plant applications. The GA-300 has two analog outputs to allow recording and

More information

Pressure Vessel Calculation for Yavin Thruster

Pressure Vessel Calculation for Yavin Thruster Pressure Vessel Calculation for Yavin Thruster J. Simmons June 16, 2015 1 Requirements The Pressure Vessel Calculation module is being created to model the stresses in the chamber wall for use in a sizing

More information

Modal Analysis of Propulsion Shafting of a 48,000 tons Bulk Carrier

Modal Analysis of Propulsion Shafting of a 48,000 tons Bulk Carrier Modal Analysis of Propulsion Shafting of a 48,000 tons Bulk Carrier Zixin Wang a Dalian Scientific Test and Control Technology Institute. 16 Binhai Street. Dalian, 116013, China. Abstract a wangzixin_1@163.com

More information

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016 The ICC Duckworth-Lewis-Stern calculator DLS Edition 2016 (DLS2-2016) Installation and operating instructions Queries about program operation should be sent to: Steven.Stern@qut.edu.au 2016 International

More information

SOP: Buck Scientific BLC-20P HPLC Operation

SOP: Buck Scientific BLC-20P HPLC Operation Page 1 of 11 Approvals Preparer: John Buford Reviewer: Tim Kull Reviewer: Dr. Margaret Bryans Date: 16OCT13 Date: 30OCT13 Date: 31OCT13 1. Purpose 1.1. Basic operation of the Buck Scientific BLC-20P isocratic

More information

ADDENDUM IMPORTANT DOCUMENT INVITATION TO BID ADDENDUM. OPENING DATE & TIME: January 3, 2018 at 3:00PM

ADDENDUM IMPORTANT DOCUMENT INVITATION TO BID ADDENDUM. OPENING DATE & TIME: January 3, 2018 at 3:00PM Procurement Services ADDENDUM IMPORTANT DOCUMENT INVITATION TO BID ADDENDUM ITB NUMBER: 1708MC OPENING DATE & TIME: January 3, 2018 at 3:00PM ITB TITLE: X-Ray Photoelectron Spectroscopy System ADDENDUM

More information

Modeling of Hydraulic Hose Paths

Modeling of Hydraulic Hose Paths Mechanical Engineering Conference Presentations, Papers, and Proceedings Mechanical Engineering 9-2002 Modeling of Hydraulic Hose Paths Kurt A. Chipperfield Iowa State University Judy M. Vance Iowa State

More information

ICD-10-CM IN VERSION 10

ICD-10-CM IN VERSION 10 ICD-10-CM IN VERSION 10 June 2014 eclinicalworks, 2014. All rights reserved Introduction Effective Date CONTENTS INTRODUCTION 3 Effective Date 3 Global Effective Date 3 Individual Insurance Effective Date

More information

29th Monitoring Research Review: Ground-Based Nuclear Explosion Monitoring Technologies

29th Monitoring Research Review: Ground-Based Nuclear Explosion Monitoring Technologies IMPROVED CALIBRATION AND OPERATION OF A STABLE-GAS QUANTIFICATION MANIFOLD AS PART OF A RADIOXENON COLLECTION SYSTEM ABSTRACT Richard M. Williams, James C. Hayes, and Randy R. Kirkham Pacific Northwest

More information

World Leading Traffic Analysis

World Leading Traffic Analysis World Leading Traffic Analysis Over the past 25 years, has worked closely with road authorities and traffic managers around the world to deliver leading traffic monitoring equipment. With products now

More information

Aalborg Universitet. Publication date: Document Version Accepted author manuscript, peer reviewed version

Aalborg Universitet. Publication date: Document Version Accepted author manuscript, peer reviewed version Aalborg Universitet Automatic Detection Of Conflicts At Signalized Intersections Madsen, Tanja Kidholm Osmann; Bahnsen, Chris Holmberg; Lahrmann, Harry Spaabæk; Moeslund, Thomas B. Publication date: 2014

More information