Frequency (cycles/earthyear)

Size: px
Start display at page:

Download "Frequency (cycles/earthyear)"

Transcription

1 DFT Workshop Math Methods - Solutions 1. ET Phone Home: a. Guessing maybe 3 or seems reasonable. There s a clear dominant oscillation. But we also see little hitches and also some secondary dominant structure with a longer period (lower omega). Velocity (km/s) Figure 1. Planet velocity vs. time data series Time (earthyears) b, c. Ah, now we see there are clearly in orbit. There is a dominant peak ~ cycles/earthyar, and another clear peak at ~ 7 cycles/earthyear. FFT of Planet Velocity Figure. Fast Fourier Transform (FFT) spectrum of the time series data shown in Fig 1. d. The key line of code is: Frequency (cycles/earthyear) >>Y = fft(v, n); %this is the key line that actually computes the FFT! The variable Y contains all of the DFT coefficients. So we can just ask matlab to spit out the n_th like so:

2 >> Y(1), Y(), Y(3) i i i e. The plot shown is for a noise factor of 7. The lower peak around 7 cycles/earthyear is lost in the noise. Our DFT is only as good as the underlying data quality! FFT of Planet Velocity Frequency (cycles/earthyear) Figure 3. FFT spectrum with noise level increased to 7. The peak at ~ 7 cycles/earthyear is now lost in the noise floor -it was once obvious to the naked eye with lower noise levels (higher signal to noise ratio).. Mechanical Vibrations a. Running the script generates, at the end, a FFT plot, with 3 representative traces as follows. Seven peaks areobvious, the 8 th peak seems to be a sort of side-lobe of the 7 th (highest frequencies)

3 FFT(f) FFT(f) FFT(f) Figure. Sample FFT of 8-story building. The peaks correspond to the modal frequencies omega_n We can extract the modal frequencies using data above. Each peak corresponds to one mode of oscillation. Use the datatip tool to click on each peak and find coordinates. Or if you want to be a little fancier: >> [x,y] = ginput(8); Then click on 8 peaks. The x coordinate is the frequency (Hz)! x =... FFT FFT of of x1(t) x(t) Frequency 1 (Hz) FFT of x3(t). Frequency FFT of x(t) (Hz) FFT of x(t) Frequency 1 (Hz) FFT of x5(t) FFT(f) FFT(f) FFT(f) (f) Note that the eigenvector/value problem is solved using the script. The eigenvalues, angular frequencies, are called Omega, in units of rad/s. So we can just do the following to find the corresponding frequencies (Hz). >> f = Omega/(*pi) f =

4 c. Then we can find the % difference for each modal frequency as follows, as well the mean +/- std % diff. We find a ~ 1% diff on average, so the empirical technique of looking at the matlab generated DFT is really quite accurate, hooray! >> percdiff = abs(x-f)./f *1 percdiff = >> mean(percdiff), std(percdiff) Blood Pressure Based on the blood pressure vs time plot, there appears to be ~ beats per second. This is the fundamental frequency. Clearly, this curve is not a pure sinusoid we must have some harmonics adding up, via Fourier Series! Raw and filtered blood pressure measurements 15 Blood Pressure (mmhg) 1 5 Raw Filtered Time (s) Figure 5. Blood pressure vs time comparing raw vs. filtered signal. The filtering helps smooth out the longer-period oscillations, and also helps get rid of the offset away from BP = mmhg

5 c. The FFT shows a dominant peak frequency of. Hz. This is in accord our initial estimate of ~ beats/second! d. There are clearly harmonics that contribute to the signal these are the obvious peaks, all integer multiples of the fundamental frequency. Note the peaks are not entirely smooth at the time, by they are well separated in frequency space. There is possibly a 7 th contributing mode, but it is difficult to discern. FFT of Blood Pressure Signal X:.55 Y: Figure. FFT of blood pressure vs. time data. There are obvious harmonics contributing, possibly a 7th. e. Below is an example of the FFT before and after thresholding. X:.55 Y: FFT of Blood Pressure Signal All coeffs Threshold Coeffs Figure 7. FFT spectrum of all coefficients (blue); and suprathreshold coefficients (the "important ones) in red. Below is a plot of the PSD vs. Compression Ratio. The higher the PSD, the worse the reconstructed signal quality. There is a knee in the curve around 95%. Past this compression level, things really take a turn for the worse we being losing a lot of information and signal quality is relatively poor, as indicated by higher levels of PSD. So ~ 95% compression is possible! This corresponds to a threshold level of ~ 15%, meaning we should keep Fourier coefficients if their amplitude is >=15% of the global max peak value. Two data compression examples are shown below. One is with the threshold set to a

6 threshold value =.8, in which case we throw away nearly 99% of the coefficients (relatively poor quality); and the other is for threshold value =.15, in which we throw away 97% of the coefficients (keeping a mere 3% of them). This leads to a very nice, useful reconstructed signal. PSD 1 x Compression Level (%) Figure 8. Reconstructed BP signal quality vs. data compression levels. ~ 95% compression is achievable without signifcaint reduction in data quality Blood Pressure (mmhg) percent threshold value Raw Reconstructed Time (s)

7 Blood Pressure (mmhg) percent threshold value Raw Reconstructed Time (s)

Advanced Digital Signal Processing Part 4: DFT and FFT

Advanced Digital Signal Processing Part 4: DFT and FFT Advanced Digital Signal Processing Part 4: DFT and FFT Gerhard Schmidt Christian-Albrechts-Universität zu Kiel Faculty of Engineering Institute of Electrical and Information Engineering Digital Signal

More information

Time-Frequency Analysis

Time-Frequency Analysis Time-Frequency Analysis FFT with MATLAB Philippe B. Laval KSU Fall 2015 Philippe B. Laval (KSU) MATLAB FFT Fall 2015 1 / 32 Introduction We look at MATLAB s implementation of the Fourier transform. To

More information

PHYS 3152 Methods of Experimental Physics I E5. Frequency Analysis of Electronic Signals

PHYS 3152 Methods of Experimental Physics I E5. Frequency Analysis of Electronic Signals Purpose PHYS 3152 Methods of Experimental Physics I E5. Frequency Analysis of Electronic Signals This experiment will introduce you to the basic principles of frequency domain analysis of electronic signals.

More information

Equipment Required. WaveRunner Zi series Oscilloscope 10:1 High impedance passive probe. 3. Turn off channel 2.

Equipment Required. WaveRunner Zi series Oscilloscope 10:1 High impedance passive probe. 3. Turn off channel 2. FFT Analysis TEN MINUTE TUTORIAL February 27, 2012 Summary Fast Fourier Transform analysis is common on most digital oscilloscopes. It is used to view signals in the frequency as well as the time domain.

More information

Monitoring Pump Performance with Vibration. Mitchell Stansloski, PhD, PE

Monitoring Pump Performance with Vibration. Mitchell Stansloski, PhD, PE Monitoring Pump Performance with Vibration Mitchell Stansloski, PhD, PE Centrifugal Pumps Centrifugal pumps Centrifugal Pumps (Radial Flow Pumps): A pump using radial flow impellers that give their energy

More information

Assignment 5: Fourier Analysis Assignment due 9 April 2012, 11:59 pm

Assignment 5: Fourier Analysis Assignment due 9 April 2012, 11:59 pm COS/MUS 314 Assignment 5: Fourier Analysis Assignment due 9 April 2012, 11:59 pm This assignment is done with your partner. Reading & Resources ChucK complex and polar data types: http://chuck.cs.princeton.edu/doc/language/type.html#complex

More information

FAN ENGINEERING. Surge, Stall and Instabilities in Fans

FAN ENGINEERING. Surge, Stall and Instabilities in Fans FAN ENGINEERING Industrial Fans & Services Information and Recommendations for the Engineer Surge, Stall and Instabilities in Fans Introduction Users of fan systems would like to experience a steady, continuous

More information

A novel test method for predicting crushing elasticity in medium fluting with higher relevance than for instance currently used methods like CMT

A novel test method for predicting crushing elasticity in medium fluting with higher relevance than for instance currently used methods like CMT White paper Thomas Fürst (ABB) Lorentzen & Wettre products, Sweden Peter Gerards (Smurfit Kappa) Product Development, Netherlands A novel test method for predicting crushing elasticity in medium fluting

More information

How to Read the South Plains Evapotranspiration Information

How to Read the South Plains Evapotranspiration Information How to Read the South Plains Evapotranspiration Information Climate and Evapotranspiration (ET) data for the South Plains ET Network are presented in two formats for the convenience of our users. A cumulative

More information

Finite Element Analysis, Harmonic Analysis and Modal Analysis of the Car Floor by Using With and Without Stiffener

Finite Element Analysis, Harmonic Analysis and Modal Analysis of the Car Floor by Using With and Without Stiffener Finite Element Analysis, Harmonic Analysis and Modal Analysis of the Car Floor by Using With and Without Stiffener Mohan Kumar G R Assistant Professor, Department of Automobile Engineering, New Horizon

More information

Distributed Rayleigh scatter dynamic strain sensing above the scan rate with optical frequency domain reflectometry

Distributed Rayleigh scatter dynamic strain sensing above the scan rate with optical frequency domain reflectometry Distributed Rayleigh scatter dynamic strain sensing above the scan rate with optical frequency domain reflectometry Stephen T. Kreger 1, Justin W. Klein 1, Nur Aida Abdul Rahim 1, and Joseph J. Bos 2 1

More information

Boiler Manager Technical Report

Boiler Manager Technical Report Boiler Manager Technical Report Boiler Manager Technical Report Process Description The Boiler Manager works by controlling the boiler firing cycle. What is the Boiler Firing cycle? When the central heating

More information

Application of Wireless Monitoring System for the Ambient Vibration Study of the WuYuan Steel Arch Bridge

Application of Wireless Monitoring System for the Ambient Vibration Study of the WuYuan Steel Arch Bridge Application of Wireless Monitoring System for the Ambient Vibration Study of the WuYuan Steel Arch Bridge Y. Lei, W.A. Shen and Y. Song Department of Civil Engineering, Xiamen University, China J. P. Lynch

More information

FREQUENCY ENHANCEMENT OF DUAL-JUNCTION THERMOCOUPLE PROBES

FREQUENCY ENHANCEMENT OF DUAL-JUNCTION THERMOCOUPLE PROBES XXIII Biannual Symposium on Measuring Techniques in Turbomachinery Transonic and Supersonic Flow in FREQUENCY ENHANCEMENT OF DUAL-JUNCTION THERMOCOUPLE PROBES James Braun Purdue University Indiana, United

More information

CRUSH: Cognitive Radio Universal Software Hardware

CRUSH: Cognitive Radio Universal Software Hardware CRUSH: Cognitive Radio Universal Software Hardware George F. Eichinger III MIT Lincoln Laboratory Lexington MA Kaushik Chowdhury, Miriam Leeser University Boston, MA USA 1 This work is sponsored by the

More information

Application Note. Technique description CPB measurements give early fault detection with minimal risk of false alarms

Application Note. Technique description CPB measurements give early fault detection with minimal risk of false alarms Application Note Technique description CPB measurements give early fault detection with minimal risk of false alarms Application Note Technique description CPB measurements give early fault detection with

More information

Australian Journal of Basic and Applied Sciences. Leak Detection in MDPE Gas Pipeline using Dual-Tree Complex Wavelet Transform

Australian Journal of Basic and Applied Sciences. Leak Detection in MDPE Gas Pipeline using Dual-Tree Complex Wavelet Transform AENSI Journals Australian Journal of Basic and Applied Sciences ISSN:1991-8178 Journal home page: www.ajbasweb.com Leak Detection in MDPE Gas Pipeline using Dual-Tree Complex Wavelet Transform Nurul Fatiehah

More information

Experimental Dynamic Behaviour and Pedestrian Excited Vibrations Mitigation at Ceramique Footbridge (Maastricht, NL)

Experimental Dynamic Behaviour and Pedestrian Excited Vibrations Mitigation at Ceramique Footbridge (Maastricht, NL) Experimental Dynamic Behaviour and Pedestrian Excited Vibrations Mitigation at Ceramique Footbridge (Maastricht, NL) Alain FOURNOL Florian GERARD AVLS, bureau d études en dynamiques des structures - Orsay

More information

Speech parameterization using the Mel scale Part II. T. Thrasyvoulou and S. Benton

Speech parameterization using the Mel scale Part II. T. Thrasyvoulou and S. Benton Speech parameterization using the scale Part II T. Thrasyvoulou and S. Benton Speech Cepstrum procedure Speech Pre-emphasis Framing Windowing For FFT based Cepstrum FFT Cepstrum OR LPC LPC For LPC based

More information

Module 1: Introduction to Radiant Cooling. Pierre Jaboyedoff

Module 1: Introduction to Radiant Cooling. Pierre Jaboyedoff Module 1: Introduction to Radiant Cooling Pierre Jaboyedoff Module 1: Introduction to Radiant Cooling Heat Transfer Basics Human Body Heat Exchange Radiant Cooling Basics Radiant Cooling Suitability? Radiant

More information

Available online at Energy Procedia 6 (2011) MEDGREEN 2011-LB

Available online at   Energy Procedia 6 (2011) MEDGREEN 2011-LB Available online at www.sciencedirect.com Energy Procedia 6 (2011) 759 768 MEDGREEN 2011-LB Comparison of two methods of improving dehumidification in air conditioning systems: hybrid system (refrigeration

More information

ANALYSIS OF OTDR MEASUREMENT DATA WITH WAVELET TRANSFORM. Hüseyin ACAR *

ANALYSIS OF OTDR MEASUREMENT DATA WITH WAVELET TRANSFORM. Hüseyin ACAR * ANALYSIS OF OTDR MEASUREMENT DATA WITH WAVELET TRANSFORM Hüseyin ACAR * Department of Electrical and Electronics Engineering, Faculty of Engineering, Dicle University * hacar@dicle.edu.tr ABSTRACT: In

More information

Low-noise fans are not a product of chance

Low-noise fans are not a product of chance Press News Quiet blowers with inner qualities Low-noise fans are not a product of chance Noise put out by machines can be annoying, especially in those areas that really require a quiet environment. For

More information

The Discrete Fourier Transform Illusion Copyright 1999 Dennis Meyers

The Discrete Fourier Transform Illusion Copyright 1999 Dennis Meyers The Discrete Fourier Transform Illusion Copyright 1999 Dennis Meyers The Fourier Transform is a mathematical technique named after the famed French mathematician Jean Baptiste Joseph Fourier 1768-1830.

More information

NORME INTERNATIONALE INTERNATIONAL STANDARD

NORME INTERNATIONALE INTERNATIONAL STANDARD NORME INTERNATIONALE INTERNATIONAL STANDARD CEI IEC 60068-3-8 Première édition First edition 2003-08 PUBLICATION FONDAMENTALE DE SÉCURITÉ BASIC SAFETY PUBLICATION Essais d'environnement Partie 3-8: Documentation

More information

Partial Load Performance Of Refrigeration System

Partial Load Performance Of Refrigeration System Chapter 11 Partial Load Performance Of Refrigeration System Copy Right By: Thomas T.S. Wan 温到祥著 Sept. 3, 2008 All rights reserved Hot Gas Bypass & Liquid Injection: When the compressor is under surge condition,

More information

Human Position/Height Detection Using Analog Type Pyroelectric Sensors

Human Position/Height Detection Using Analog Type Pyroelectric Sensors Human Position/Height Detection Using Analog Type Pyroelectric Sensors Shinya Okuda, Shigeo Kaneda, and Hirohide Haga Graduate School of Engineering, Doshisha University, 1-3 Tatara-Miyakodani, Kyotanabe

More information

Study and Design of Diaphragm Pump Vibration Detection Fault Diagnosis System Based on FFT

Study and Design of Diaphragm Pump Vibration Detection Fault Diagnosis System Based on FFT Research Journal of Applied Sciences, Engineering and Technology 5(4): 1238-1244, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: June 23, 2012 Accepted: August

More information

Queen St E & Leslie St Noise Analysis Toronto, Ontario. Toronto Transit Commission Streetcar Department 1900 Yonge Street Toronto, ON M4S 1Z2

Queen St E & Leslie St Noise Analysis Toronto, Ontario. Toronto Transit Commission Streetcar Department 1900 Yonge Street Toronto, ON M4S 1Z2 ASSESSMENT REPORT - Project: 151.08 Queen St E & Leslie St Noise Analysis Toronto, Ontario Prepared for: Toronto Transit Commission Streetcar Department 1900 Yonge Street Toronto, ON M4S 1Z2 Prepared by:

More information

ASHRAE JOURNAL ON REHEAT

ASHRAE JOURNAL ON REHEAT Page: 1 of 7 ASHRAE JOURNAL ON REHEAT Dan Int-Hout Chief Engineer Page: 2 of 7 Overhead Heating: A lost art. March 2007 ASHRAE Journal Article Dan Int-Hout Chief Engineer, Krueger VAV terminals provide

More information

mach 5 100kHz Digital Joulemeter: M5-SJ, M5-IJ and M5-PJ Joulemeter Probes

mach 5 100kHz Digital Joulemeter: M5-SJ, M5-IJ and M5-PJ Joulemeter Probes mach 5 100kHz Digital Joulemeter: M5-SJ, M5-IJ and M5-PJ Joulemeter Probes Measure every pulse at pps! Our new mach 5 Digital Joulemeter is designed to measure laser pulse energy up to 130,000 pps with

More information

2 A e ( I ( ω t k r)

2 A e ( I ( ω t k r) Introduction : Baffle Step Response Calculations Over the past few years, I have become very aware of the baffle step response phenomenon associated with drivers mounted in rectangular baffles. My first

More information

EFFECTS OF VARIABLES ON NATURAL CONVECTIVE HEAT TRANSFER THROUGH V-CORRUGATED VERTICAL PLATES

EFFECTS OF VARIABLES ON NATURAL CONVECTIVE HEAT TRANSFER THROUGH V-CORRUGATED VERTICAL PLATES International Journal of Mechanical and Materials Engineering (IJMME), Vol. 2 (2007), No. 2, 109--117. EFFECTS OF VARIABLES ON NATURAL CONVECTIVE HEAT TRANSFER THROUGH V-CORRUGATED VERTICAL PLATES M. Hasanuzzaman

More information

Lesson 25 Analysis Of Complete Vapour Compression Refrigeration Systems

Lesson 25 Analysis Of Complete Vapour Compression Refrigeration Systems Lesson 25 Analysis Of Complete Vapour Compression Refrigeration Systems Version 1 ME, IIT Kharagpur 1 The specific objectives of this lecture are to: 1. Importance of complete vapour compression refrigeration

More information

ENSC 388: Engineering Thermodynamics and Heat Transfer

ENSC 388: Engineering Thermodynamics and Heat Transfer ENSC 388: Engineering Thermodynamics and Heat Transfer Experiment 3: Free and Forced Convection Objective Determination of heat transfer coefficient for free and forced convection for different geometries.

More information

Building and Characterizing 14GHz InGaAs Fiber Coupled Photodiodes

Building and Characterizing 14GHz InGaAs Fiber Coupled Photodiodes Building and Characterizing 14GHz InGaAs Fiber Coupled Photodiodes Gabrielle Inglis Advisor: Robert Boni Laboratory for Laser Energetics University of Rochester Summer High School Research Program 200

More information

Chapter 4 Compressors Overview & System Annual Power Consumption

Chapter 4 Compressors Overview & System Annual Power Consumption Chapter 4 Compressors Overview & System Annual Power Consumption Copy Right By: Thomas T.S. Wan 温 Sept. 3, 2008 All rights reserved (Cor. 07-08-12) Compressor is the heart of the refrigeration system.

More information

CEE:3371 Principles of Hydraulics and Hydrology Project #2 Flow Measurement with a Weir

CEE:3371 Principles of Hydraulics and Hydrology Project #2 Flow Measurement with a Weir CEE:3371 Principles of Hydraulics and Hydrology Project #2 Flow Measurement with a Weir Problem Statement The Iowa DNR plans to monitor a proposed prairie restoration project in eastern Iowa as an experiment.

More information

Loudspeaker s frequency response was measured in-room, using windowed MLS techniques. The 0.5m set-up and results are presented on the pictures below.

Loudspeaker s frequency response was measured in-room, using windowed MLS techniques. The 0.5m set-up and results are presented on the pictures below. Rear Loudspeaker Transducer Measurements Loudspeaker s frequency response was measured in-room, using windowed MLS techniques. The 0.5m set-up and results are presented on the pictures below. Tweeter frequency/phase

More information

Development of Motor Fan Noise Prediction Method in Consideration of Operating Temperature during Engine Idling

Development of Motor Fan Noise Prediction Method in Consideration of Operating Temperature during Engine Idling New technologies Development of Motor Fan Noise Prediction Method in Consideration of Operating Temperature during Engine Idling Yasuhito Suzuki* Masahiro Shimizu* Abstract In these years there is an increasing

More information

STACK EFFECT IN LIGHT WELL OF HIGH RISE APARTMENT BUILDING

STACK EFFECT IN LIGHT WELL OF HIGH RISE APARTMENT BUILDING STACK EFFECT IN LIGHT WELL OF HIGH RISE APARTMENT BUILDING H. Kotani, R. Satoh, T. Yamanaka Dept. of Architectural Engineering, School of Engineering, Osaka University, Osaka, Japan ABSTRACT The purpose

More information

Effective temperature, relative humidity and air velocity combinations to provide most effective chilling

Effective temperature, relative humidity and air velocity combinations to provide most effective chilling Effective temperature, relative humidity and air velocity combinations to provide most effective chilling Prof Louw Hoffman Department of Animal Sciences Stellenbosch University RMAA Conference 10 May

More information

GLOSSARY OF ACOUSTICAL TERMS

GLOSSARY OF ACOUSTICAL TERMS GLOSSARY OF ACOUSTICAL TERMS Abnormal noise events Noises that are sufficiently infrequent as to be uncharacteristic of an area or that occur so close to the microphone as to dominate the measurements

More information

AN ANALYSIS OF THE ACTUAL THERMAL PLUMES OF KITCHEN APPLIANCES DURING COOKING MODE

AN ANALYSIS OF THE ACTUAL THERMAL PLUMES OF KITCHEN APPLIANCES DURING COOKING MODE AN ANALYSIS OF THE ACTUAL THERMAL PLUMES OF KITCHEN APPLIANCES DURING COOKING MODE R Kosonen 1,*, H Koskela 2 and P Saarinen 2 1 Halton Oy, Haltonintie 1-3, 474 Kausala, Finland 2 Finnish Institute of

More information

FIMD: Fine-grained Device-free Motion Detection

FIMD: Fine-grained Device-free Motion Detection ICPADS 2012 FIMD: Fine-grained Device-free Motion Detection Jiang Xiao, Kaishun Wu, Youwen Yi, Lu Wang, Lionel M. Ni Department of Computer Science and Engineering Hong Kong University of Science and Technology

More information

COST REDUCTION OF SECTION CHANNEL BY VALUE ENGINEERING

COST REDUCTION OF SECTION CHANNEL BY VALUE ENGINEERING COST REDUCTION OF SECTION CHANNEL BY VALUE ENGINEERING 1 Mandar Joshi, 2 K A Rade, 1 Research scholar, Mechanical Engineering Department Bharti Vidyapeeth Deemed University College of Engineering,Pune-43,

More information

Optical Time Domain Reflectometry for the OMEGA EP Laser

Optical Time Domain Reflectometry for the OMEGA EP Laser Optical Time Domain Reflectometry for the OMEGA EP Laser Adam DeJager Greece Odyssey Academy Advisors: Samuel Morse and Richard Kidder Laboratory for Laser Energetics University of Rochester Summer High

More information

In-Situ Roll Balancing A Revolutionary Method for Improving Dryer Section Performance

In-Situ Roll Balancing A Revolutionary Method for Improving Dryer Section Performance In-Situ Roll Balancing A Revolutionary Method for Improving Dryer Section Performance J Michael Robichaud, P.E. Bretech Engineering Ltd 70 Crown Street, Saint John, NB Canada E2L 3V6 email: Mike.Robichaud@bretech.com

More information

Laboratory Exercise #6

Laboratory Exercise #6 ECEN4002/5002 Spring 2004 Digital Signal Processing Laboratory Laboratory Exercise #6 Using a Fast Fourier Transform Algorithm Introduction The symmetry and periodicity properties of the discrete Fourier

More information

Preparing the Next Generation of Building Technicians

Preparing the Next Generation of Building Technicians Preparing the Next Generation of Building Technicians Laney's Model for Advanced Curriculum and Laboratory Requirements In some cases defining the new technician Green Collar Job Training at Laney College

More information

Varofoil Controllable Pitch in Motion Fans Compared to Variable Frequency Controlled Fans

Varofoil Controllable Pitch in Motion Fans Compared to Variable Frequency Controlled Fans Varofoil Controllable Pitch in Motion Fans Compared to Variable Frequency Controlled Fans A look at two accepted technologies.. System Characteristics In general, the pressure developed by a fan is a function

More information

The Performance of Thermocompressors as Related to Paper Machine Dryer Drainage Systems

The Performance of Thermocompressors as Related to Paper Machine Dryer Drainage Systems The Performance of Thermocompressors as Related to Paper Machine Drainage Systems C. G. Blatchley and H. J. Stratton Schutte and Koerting, Bensalem, Bucks County, PA Thermocompressors have been successfully

More information

What is Room EQ Wizard (aka REW)?

What is Room EQ Wizard (aka REW)? What is Room EQ Wizard (aka REW)? REW is room acoustics analysis software for measuring and analyzing room and loudspeaker responses, and is very handy for measuring the sub response in your room. It is

More information

Bill Butterfield EVP and Chief Technology Officer Xerium Technologies. March 2015

Bill Butterfield EVP and Chief Technology Officer Xerium Technologies. March 2015 Bill Butterfield EVP and Chief Technology Officer Xerium Technologies March 2015 Xerium Technologies, Inc. Machine Clothing Stowe, Mount Hope, Weavexx, Huyck Wangner Key Businesses Machine Clothing Roll

More information

Third-Party Research & Development Technical Discourse. Application of cirqed RA for FFT Analysis Part I Identifying Real And Aliased FFT Components

Third-Party Research & Development Technical Discourse. Application of cirqed RA for FFT Analysis Part I Identifying Real And Aliased FFT Components Third-Party Research & Development Technical Discourse Application of cirqed RA for FFT Analysis Part I Identifying Real And Aliased FFT Components John R. Potts, Senior Scientist/Engineering Manager BRIEF

More information

The Design Flaw in HVAC

The Design Flaw in HVAC The Design Flaw in HVAC www.powertronglobal.com The Design Flaw in HVAC You may know that HVAC accounts for up to 70% of a total power bill for any building. What you may not know is there is a design

More information

Mechanical Heat Pump R515

Mechanical Heat Pump R515 P.A.Hilton Ltd Mechanical Heat Pump R515 Above: R515 shown fitted with standard wattmeter Stabilises in minutes allowing many tests to be conducted in a typical laboratory period. Allows a complete refrigerant

More information

Crushing Principles of Mechanical Crushing

Crushing Principles of Mechanical Crushing Crushing Principles of Mechanical Crushing Objective Explain the interaction between rock material and crusher Take home messages Agenda Crusher Application Cone Crusher Operating Principle Crusher Capacity

More information

GOLAY COMPLEMENTARY CODES, DOUBLE PULSE REPETITION FREQUENCY TRANSMISSION I. TROTS, A. NOWICKI, M. LEWANDOWSKI J. LITNIEWSKI, W.

GOLAY COMPLEMENTARY CODES, DOUBLE PULSE REPETITION FREQUENCY TRANSMISSION I. TROTS, A. NOWICKI, M. LEWANDOWSKI J. LITNIEWSKI, W. ARCHIVES OF ACOUSTICS 31, 4 (Supplement), 35 40 (2006) GOLAY COMPLEMENTARY CODES, DOUBLE PULSE REPETITION FREQUENCY TRANSMISSION I. TROTS, A. NOWICKI, M. LEWANDOWSKI J. LITNIEWSKI, W. SECOMSKI Institute

More information

A Method for Predicting the Matric Suction of Unsaturated Soils with Soil Color Recognition

A Method for Predicting the Matric Suction of Unsaturated Soils with Soil Color Recognition 2017 2 nd International Conference on Architectural Engineering and New Materials (ICAENM 2017) ISBN: 978-1-60595-436-3 A Method for Predicting the Matric Suction of Unsaturated Soils with Soil Color Recognition

More information

A Survey Study of Today s Monitoring Conditions

A Survey Study of Today s Monitoring Conditions A Survey Study of Today s Monitoring Conditions INTRODUCTION When speakers are put in a room all sorts of acoustical interactions occur. The criteria that define the performance and quality of a speaker

More information

Ecography. Supplementary material

Ecography. Supplementary material Ecography E7519 García, D., Martínez, D., Herrera, J. M. and Morales, J. M. 2012. Functional heterogeneity in a plant frugivore assemblage enhances seed dispersal resilience to habitat loss. Ecography

More information

September, 2018 Hiroki Miyaoka, Toshiaki Sakai Socionext Inc.

September, 2018 Hiroki Miyaoka, Toshiaki Sakai Socionext Inc. sakai_ck_b_98 HSI-PR8- Gb/s Backplane Channel Simulation (update) IEEE8.ck September, 8 Hiroki Miyaoka, Toshiaki Sakai Socionext Inc. Agenda sakai_ck_b_98 HSI-PR8-. Overview. Channels for Simulation. Backplane

More information

Development of Seismic-induced Fire Risk Assessment Method for a Building

Development of Seismic-induced Fire Risk Assessment Method for a Building Development of Seismic-induced Fire Risk Assessment Method for a Building AI SEKIZAWA National Research Institute of Fire and Disaster 3-14-1, Nakahara, Mitaka, Tokyo 181-8633, Japan sekizawa@fri.go.jp

More information

MEMSIC Out-of-Balance Application

MEMSIC Out-of-Balance Application N-3-1-1 MEMSI Inc. pplication Engineering epartment Revision History URevision Uate Uuthor Uomments 1. 29-3-2 Rong Yi Initial Release 1.1 29-5-2 Robbie ao dd more data plotting 2. 21-12-2 Rong Yi onvert

More information

Clemens Felsmann 1, Jean Lebrun 2, Vincent Lemort 2 and Aad Wijsman 3 ABSTRACT INTRODUCTION METHODOLOGY

Clemens Felsmann 1, Jean Lebrun 2, Vincent Lemort 2 and Aad Wijsman 3 ABSTRACT INTRODUCTION METHODOLOGY Eleventh International IBPSA Conference Glasgow, Scotland July 27-30, 2009 TESTING AND VALIDATION OF SIMULATION TOOLS OF HVAC MECHANICAL EQUIPMENT INCLUDING THEIR CONTROL STRATEGIES. PART II: VALIDATION

More information

Effects of burner configurations on the natural oscillation characteristics of laminar jet diffusion flames

Effects of burner configurations on the natural oscillation characteristics of laminar jet diffusion flames International journal of spray and combustion dynamics Volume. 7 Number. 3. 2015 pages 257 282 257 Effects of burner configurations on the natural oscillation characteristics of laminar jet diffusion flames

More information

Comprehensive Design Review (CDR) Neptune. Team 16 February 29, Advisor: Professor Holcomb

Comprehensive Design Review (CDR) Neptune. Team 16 February 29, Advisor: Professor Holcomb Comprehensive Design Review (CDR) Neptune Team 16 February 29, 2016 Computer 1 1 Team 16 Introduction Frankie Viscusi EE 16 - Team Manager Power System & PCB Design Hang Do EE 16 Alarm & Power System Scott

More information

The effect of embedment on a foundation subjected to vertical vibration a field study

The effect of embedment on a foundation subjected to vertical vibration a field study TECHNICAL PAPER Journal of the South African Institution of Civil Engineering ISSN 121-219 Vol 59 No 4, December 217, Pages 26 33, Paper 1377 DR SILIPIUS MBAWALA is a lecturer in the Department of Civil

More information

Link loss measurement uncertainties: OTDR vs. light source power meter By EXFO s Systems Engineering and Research Team

Link loss measurement uncertainties: OTDR vs. light source power meter By EXFO s Systems Engineering and Research Team Link loss measurement uncertainties: OTDR vs. light source power meter By EXFO s Systems Engineering and Research Team INTRODUCTION The OTDR is a very efficient tool for characterizing the elements on

More information

Quantum Leap TM Downhole Data Acquisition & Nexus MWD Vibration Mitigation. Bo Daniel & Lance Griffith

Quantum Leap TM Downhole Data Acquisition & Nexus MWD Vibration Mitigation. Bo Daniel & Lance Griffith Quantum Leap TM Downhole Data Acquisition & Nexus MWD Vibration Mitigation 1 Bo Daniel & Lance Griffith Who is Integrity Directional? Integrity Directional is full-service directional technology company

More information

ISO/TS TECHNICAL SPECIFICATION

ISO/TS TECHNICAL SPECIFICATION TECHNICAL SPECIFICATION ISO/TS 10811-1 First edition 2000-06-01 Mechanical vibration and shock Vibration and shock in buildings with sensitive equipment Part 1: Measurement and evaluation Vibrations et

More information

Refrigeration Cycle Demonstration Unit R634

Refrigeration Cycle Demonstration Unit R634 Refrigeration Cycle Demonstration Unit R634 Figure 1: R634 Unit shown with R634A and R634B fitted Ozone friendly, low pressure, non-toxic working fluid allows evaporation and condensation to be safely

More information

AN10943 Decoding DTMF tones using M3 DSP library FFT function

AN10943 Decoding DTMF tones using M3 DSP library FFT function Rev. 1 17 June 2010 Application note Document information Info Content Keywords M3, LPC1300, LPC1700, DSP, DFT, FFT, DTMF Abstract This application note and associated source code example demonstrates

More information

TRACE 700. Slide 1. Hello, my name is Nick Cavitt and I m a marketing engineer in the C.D.S. group at TRANE.

TRACE 700. Slide 1. Hello, my name is Nick Cavitt and I m a marketing engineer in the C.D.S. group at TRANE. Slide 1 TRACE 700 Chiller Sequencing and Controls Hello, my name is Nick Cavitt and I m a marketing engineer in the C.D.S. group at TRANE. Today, we will be talking about the Plant Sequencing and Controls

More information

A New Construction of 16-QAM Golay Complementary Sequences

A New Construction of 16-QAM Golay Complementary Sequences IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 49, NO. 11, NOVEMBER 2003 2953 A New Construction of 16-QAM Golay Complementary Sequences Chan Vee Chong, Raman Venkataramani, Member, IEEE, Vahid Tarokh,

More information

The fastest to heat the room evenly.

The fastest to heat the room evenly. The fastest to heat the room evenly. Look at the problem, and explore different ways of solving it. Others draw more power the obvious solution. By projecting heat further, you heat a room quickly and

More information

FIRST WATT B5 USER MANUAL

FIRST WATT B5 USER MANUAL FIRST WATT B5 USER MANUAL 12/16/10 Nelson Pass Introduction - What is it with Open Baffles? The very first speaker enclosure that a cone speaker was mounted in was very probably a piece of plywood. This

More information

Comfort and health-indoor air quality

Comfort and health-indoor air quality Comfort and health-indoor air quality 1 The human body has a complicated regulating system to maintain the human body temperature constant most of the time, which is 98.6 F (36.9 C) regardless of the environmental

More information

CARRIER edesign SUITE NEWS. Interpreting High (Low) Peak Design Airflow Sizing Results for HVAC. Equipment Selection.

CARRIER edesign SUITE NEWS. Interpreting High (Low) Peak Design Airflow Sizing Results for HVAC. Equipment Selection. Volume 5, Issue 1 CARRIER edesign SUITE NEWS Interpreting High (Low) Peak Design Airflow Sizing Results for HVAC Equipment Selection A design challenge sometimes occurs when computing design loads using

More information

CASE STUDY ANALYSIS OF CENTRIFUGAL FAN HIGH AMPLITUDE VIBRATION. Ken Singleton

CASE STUDY ANALYSIS OF CENTRIFUGAL FAN HIGH AMPLITUDE VIBRATION. Ken Singleton CASE STUDY ANALYSIS OF CENTRIFUGAL FAN HIGH AMPLITUDE VIBRATION Ken Singleton Manager KSC Consulting LLC, Bristol VA ksingleton@vibrationconsulting.com Bob McGinnis. P.E. McGinnis Engineering LLC, Kingsport

More information

POST-EARTHQUAKE ALARM SYSTEM BASED ON REAL-TIME CONTINUOUS RESPONSE SPECTRA EXCEEDANCE

POST-EARTHQUAKE ALARM SYSTEM BASED ON REAL-TIME CONTINUOUS RESPONSE SPECTRA EXCEEDANCE 10NCEE Tenth U.S. National Conference on Earthquake Engineering Frontiers of Earthquake Engineering July 21-25, 2014 Anchorage, Alaska POST-EARTHQUAKE ALARM SYSTEM BASED ON REAL-TIME CONTINUOUS RESPONSE

More information

e+/e- Vertical Beam Dynamics during CHESS Operation-Part II

e+/e- Vertical Beam Dynamics during CHESS Operation-Part II e+/e- Vertical Beam Dynamics during CHESS Operation-Part II I. Introduction II. e+ turn-by-turn vertical dynamics III. e- turn-by-turn vertical dynamics IV. Summary R. Holtzapple, J. Kern, and E.Tanke

More information

Fan Laws. Keith Miller. Samuel Tepp Associates. Paul Cenci, P. E.-Principal Brian England-Principal. Samuel Tepp Associates 1/6/10

Fan Laws. Keith Miller. Samuel Tepp Associates. Paul Cenci, P. E.-Principal Brian England-Principal. Samuel Tepp Associates 1/6/10 Fan Laws Keith Miller Samuel Tepp Associates Paul Cenci, P. E.-Principal Brian England-Principal Basic Terms CFM - Cubic Feet per Minute, volume (amount) of air being moved SP - Static Pressure, resistance

More information

Energy Saving Refrigerated Air Dryers SRC Cycling Dryers

Energy Saving Refrigerated Air Dryers SRC Cycling Dryers Energy Saving Refrigerated Air Dryers SRC Cycling Dryers Reduced Power Consumption Accurate Dewpoint Control Ease of Use Microprocessor Control Scroll Compressor R407C Refrigerant 150 to 1000 scfm Cycling

More information

Random-Orbit Sanders We test 5-in. models for speed, handling, and efficiency

Random-Orbit Sanders We test 5-in. models for speed, handling, and efficiency Tool Test Random-Orbit Sanders We test 5-in. models for speed, handling, and efficiency By Barry NM Dima The 5-in. random-orbit sander is a staple in most shops, and for good reason. Its size makes it

More information

PoS(ICHEP2012)516. The status of the CMS pixel upgrade detector

PoS(ICHEP2012)516. The status of the CMS pixel upgrade detector University of California Riverside E-mail: Ferdinando.Giordano@cern.ch The present CMS pixel detector was designed for a maximum luminosity of 34 cm s. Following the Phase upgrade of the LHC, the peak

More information

Integrating Nephelometer - Visibility and Particulate Monitoring. Summary

Integrating Nephelometer - Visibility and Particulate Monitoring. Summary Summary This paper investigate the correlation between the Aurora 1000 integrating Nephelometer single wavelength green source 525 nm and the Thermo Fisher 1400A/B TEOM, Met-One 1020 BAM, and FRM sampler.

More information

VIBRA-series: VIBRA, VIBRA +

VIBRA-series: VIBRA, VIBRA + DATASHEET VIBRA-series (VIB.00100/..120/..130) VIBRA-series: VIBRA, VIBRA + Profound VIBRA-series Vibrations from pile driving, construction, road or rail traffic, demolition work and blasting can create

More information

Summary: thermal analysis, CFD simulations. - Enrico Da Riva - CERN (EN/CV/PJ) Workshop on SiPM cooling for Fiber Tracker, 17 October 2013

Summary: thermal analysis, CFD simulations. - Enrico Da Riva - CERN (EN/CV/PJ) Workshop on SiPM cooling for Fiber Tracker, 17 October 2013 Summary: thermal analysis, CFD simulations - Enrico Da Riva - CERN (EN/CV/PJ) Workshop on SiPM cooling for Fiber Tracker, 1 Contents A. Computational Fluid Dynamics (CFD) simulations for design optimization

More information

Measurement and modelling of a multifunctional solar plus heatpump system from Nilan. Experiences from one year of test operation.

Measurement and modelling of a multifunctional solar plus heatpump system from Nilan. Experiences from one year of test operation. Measurement and modelling of a multifunctional solar plus heatpump system from Nilan. Experiences from one year of test operation. Bengt Perers 1, Elsa Andersen 2, Simon Furbo 2, Ziqian Chen 2 and Agisilaos

More information

compressed air or left to consume air even when the associated production machine has been turned off.

compressed air or left to consume air even when the associated production machine has been turned off. SToP operating BlIND USE A FlowMETER By Ron Marshall for the Compressed Air Challenge c Participants of Compressed Air Challenge s Fundamentals of Compressed Air Systems seminars are usually surprised

More information

Heat & Sensor Technology

Heat & Sensor Technology HeatandSensorTech.com (513) 228-0481 Heat & Sensor A Technical Guide To Understanding And Applying Infrared Heaters Contents Topic Page Number The Advantages of Radiant Heat 1 The Theory of Radiant Heat

More information

Report No 288/ Part 1 of 2 This report consists of 22 pages. Maxitone ZAMT Type A Addressable Sounder. See Assessment Summary for details

Report No 288/ Part 1 of 2 This report consists of 22 pages. Maxitone ZAMT Type A Addressable Sounder. See Assessment Summary for details Test Report Report No 288/7387780 Part 1 of 2 This report consists of 22 pages Licence/Certificate No KM 532936 Client GLT Exports Limited 72-78 Morfa Road Hafod Swansea SA1 2EN United Kingdom Authority

More information

Agitation and Mixing

Agitation and Mixing Agitation and Mixing Agitation: Agitation refers to the induced motion of a material in a specified way, usually in a circulatory pattern inside some sort of container. Purpose is to make homogeneous phase.

More information

QUANTIFICATION OF TONAL PENALTIES IN ENVIRONMENTAL NOISE ASSESSMENTS

QUANTIFICATION OF TONAL PENALTIES IN ENVIRONMENTAL NOISE ASSESSMENTS QUANTIFICATION OF TONAL PENALTIES IN ENVIRONMENTAL NOISE ASSESSMENTS S.A. Nordby O.-H. Bjor Norsonic AS, Tranby, Norway Norsonic AS, Tranby, Norway 1 INTRODUCTION Most people listening to an unwanted noise

More information

Building the seismograph

Building the seismograph Science in School Issue 23: Summer 2012 1 Building the seismograph For your homemade seismograph, you will need a computer with a sound card (or sound chip), sound-editing software (we recommend Audacity,

More information

Measuring Sound Pressure Level with APx

Measuring Sound Pressure Level with APx T E C H N O T E Application and Technical Support for Audio Precision Users TN113 Measuring Sound Pressure Level with APx By Joe Begin Introduction The level of acoustic noise or sound in the environment

More information

S TAR-ORION S OUTH D IAMOND P ROJECT E NVIRONMENTAL I MPACT S TATEMENT APPENDIX A FUNDAMENTALS OF ACOUSTICS

S TAR-ORION S OUTH D IAMOND P ROJECT E NVIRONMENTAL I MPACT S TATEMENT APPENDIX A FUNDAMENTALS OF ACOUSTICS APPENDIX 5.2.5-A FUNDAMENTALS OF ACOUSTICS Definition of Acoustical Terms Acoustics is the study of sound and noise is defined as unwanted sound. Airborne sound is a rapid fluctuation or oscillation of

More information

and Product Data VTP Selection Guide

and Product Data VTP Selection Guide Selection Guide and Product Data This section has two parts: A Selection Guide that walks you through the process of selecting the correct VTP device for a circuit. Product Data that outlines electrical

More information