SIS project n 1: Sound detection with a real e-puck. David FitzGerald Daniel Kroiss

Size: px
Start display at page:

Download "SIS project n 1: Sound detection with a real e-puck. David FitzGerald Daniel Kroiss"

Transcription

1 SIS project n 1:

2 Goal: Program an e-puck in order to find a sound source. Equipment: Two e-pucks Three batteries Bluetooth USB key Programming language: C 2

3 Procedure: 1. Record the sound 2. Apply the Fast Fourier Transform 3. Calculate the phase and phase differences 4. Determine the sinus of the angle between the e-puck orientation and the sound direction 5. Clean the values and do a normalisation 6. Calculate the angle between the e-puck orientation and the sound direction 7. Set the wheel speeds 3

4 1. Sound recording: The sound is sampled with three microphones and stored in an array: // 1. Get Sound e_ad_scan_on(); while(!e_ad_is_array_filled()); e_ad_scan_off(); 2. Fast Fourier Transform The fast fourier transform is calculated by the following function: // i. Substract mean of vector e_subtract_mean(e_mic_scan[k], FFT_BLOCK_LENGTH, LOG2_BLOCK_LENGTH); // ii. Copy vector into sigcmpx e_fast_copy(e_mic_scan[k], (int*)sigcmpx, FFT_BLOCK_LENGTH); // iii. Do FFT. The result is stored in sigcmpx. e_dofft_asm(sigcmpx); 4

5 3. Phase: The phase is determined using the following line of code: // iv. Phase calculation theta[k] = atan2(sigcmpx[ind_fft].imag, sigcmpx[ind_fft].real); It requires the index (IND_FFT) thats corresponds to the sound frequency (880 Hz). We can find it by plotting the magnitude of the signal. We chose the index 22, for which the frequency is: 22 33'000 f Hz 256/ 2 2 (33'000 Hz microphone sampling frequency) 5

6 3. Phase difference: The phase difference is related to the time it takes the sound to go from one microphone to another: Δt = Δϕ 2 π f For example: Δ ϕ10 = ϕ0 ϕ1 At this point it is possible to use Δφ to make the e-puck turn towards the sound source. 6

7 3. Phase difference: Forward direction Δ ϕ10 = ϕ0 ϕ1 Δφ10 > 0 Δφ10 < 0 If Δφ10 > 0: turn left Mic 1 Mic 0 If Δφ10 < 0: turn right Else: go forward or turn around (depending on the sign of Δφ20 and Δφ21) Mic 2 Works well 7

8 4. Sinus determination: The angle is given by: v Δ t θ = arcsin x ( ) where v is the speed of sound. 8

9 5. Sinus filtering: a= v Δ t x must have a value between -1 and 1 Normalization required Plot of a values and cleaned a values 9

10 5. Sinus filtering implementation: // iv. Normalisation for (k=0;k<3;k++) { // Clean amplified values if (a[k] > 1) { a[k] = -0.5; } else if (a[k] < -1) { a[k] = 0.5; } // Normalisation if (a[k] > 0) { a[k] = a[k]/max_value[k]; } else { a[k] = -a[k]/min_value[k]; } // Clean max and min values if (a[k] > 1) { a[k] = 1; } else if (a[k] < -1) { a[k] = -1; } } 10

11 6. Angle θ: One angle is not sufficient to determine the direction of the sound. We computed the angle θ21 for mic2 & mic1, and θ20 for mic2 & mic0? Mic 0 Mic 1 θ20 & θ21 real θ Mic 2 θ20 = θ20 11

12 6. Angle β: We defined the angle β (comprised between -π and π) based on θ21 and θ20. Forward direction β>0 Result when making the sound source turn around the e-puck: β<0 12

13 7. Wheel speed: Forward direction e_set_speed_ e_set_speed_ right left I II III a III b IV Stopping condition: if (e_get_prox(k) > sensitivity level ) { e_set_speed_left(0); e_set_speed_right(0); } I IV II a III b 13

14 Performance: The method using β works as well as the method that uses the sign of Δφ. The fluidity was improved by removing the NaN values of φ. The time needed to reach the sound source is directly dependent on the wheel speeds. Problems encountered: The IR sensors could cause the e-puck to stop randomly due to the lighting conditions. The maximum distance between the e-puck and the sound source up to which sound is detected is pretty small (~70 cm). Unreliable Bluetooth connection. 14

15 Possible improvements: The performance could be improved by better filtering the signal. The accuracy of β could be better with more correct values for the normalization (max_value and min_value). Use several consecutive samples before calculating the angle in order to reduce the influence of the noise. 15

16 Conclusion: What was important for us was the precision of the angle β. The time needed to reach the sound source was secondary. Through this project, we were able to see that the method using the FFT works pretty well. However, it would be interesting to compare it with other methods. //Thank you for your attention! 16

17 References: =2&Itemid=8 er-en-c /firmware/btcomdm.c 17

INTRODUCTION EXPERIMENTS - DISPLACEMENTS - IMAGE PROCESSING AND DECISION RESULTS CONCLUSION

INTRODUCTION EXPERIMENTS - DISPLACEMENTS - IMAGE PROCESSING AND DECISION RESULTS CONCLUSION INTRODUCTION EXPERIMENTS - DISPLACEMENTS - IMAGE PROCESSING AND DECISION RESULTS CONCLUSION Supervisors: Haghighat Bahar, Duarte da Cruz Baptista Dias Implementation of a code providing the e-puck the

More information

Characterization of acoustic properties of materials by means of the impulse response measurements. 1 Introduction

Characterization of acoustic properties of materials by means of the impulse response measurements. 1 Introduction Characterization of acoustic properties of materials by means of the impulse response measurements Simone Geroso, Alessandro Schiavi, Andrea Pavoni Belli, Francesco Russo, Mario Corallo Istituto Elettrotecnico

More information

Test Report. RI Acoustic Lab. Measurement of Sound Absorption Coefficient for RockDelta NoiStop Noise Barrier. 20 Feb. 07

Test Report. RI Acoustic Lab. Measurement of Sound Absorption Coefficient for RockDelta NoiStop Noise Barrier. 20 Feb. 07 Test Report RI Acoustic Lab Measurement of Sound Absorption Coefficient for RockDelta NoiStop Noise Barrier 20 Feb. 07 Title Measurement of Sound Absorption Coefficient for RockDelta NoiStop Noise Barrier

More information

CLEAN Based on Spatial Source Coherence

CLEAN Based on Spatial Source Coherence CLEN Based on Spatial Source Coherence Pieter Sijtsma Nationaal Lucht- en Ruimtevaartlaboratorium National erospace Laboratory NLR coustic array measurements in closed wind tunnel test section irbus 340

More information

Information for Physics 1201 Midterm I Wednesday, February 20

Information for Physics 1201 Midterm I Wednesday, February 20 My lecture slides are posted at http://www.physics.ohio-state.edu/~humanic/ Information for Physics 1201 Midterm I Wednesday, February 20 1) Format: 10 multiple choice questions (each worth 5 points) and

More information

LABORATORY MEASUREMENTS OF THE SOUND ABSORPTION OF CLASSICTONE 700 ASTM C Type E Mounting. Test Number 2

LABORATORY MEASUREMENTS OF THE SOUND ABSORPTION OF CLASSICTONE 700 ASTM C Type E Mounting. Test Number 2 LABORATORY MEASUREMENTS OF THE SOUND ABSORPTION OF CLASSICTONE 700 ASTM C423-01 Type E Mounting Date of Test: 27/11/2009 Report Author: Mark Simms Test Number 2 Report Number 1644 Report Number 1644 Page

More information

Global Attenuation of Acoustic Fields Using Energy-Based Active Control Techniques

Global Attenuation of Acoustic Fields Using Energy-Based Active Control Techniques Global Attenuation of Acoustic Fields Using Energy-Based Active Control Techniques Scott D. Sommerfeldt Acoustics Research Group Brigham Young University ovember 17, 009 1 Acknowledgments Kent Gee BYU

More information

Acoustic holography. LMS Test.Lab. Rev 12A

Acoustic holography. LMS Test.Lab. Rev 12A Acoustic holography LMS Test.Lab Rev 12A Copyright LMS International 2012 Table of Contents Chapter 1 Introduction... 5 Chapter 2... 7 Section 2.1 Temporal and spatial frequency... 7 Section 2.2 Time

More information

IMPROVEMENTS IN ACTIVE NOISE CONTROL OF HELICOPTER NOISE IN A MOCK CABIN ABSTRACT

IMPROVEMENTS IN ACTIVE NOISE CONTROL OF HELICOPTER NOISE IN A MOCK CABIN ABSTRACT IMPROVEMENTS IN ACTIVE NOISE CONTROL OF HELICOPTER NOISE IN A MOCK CABIN Jared K. Thomas Brigham Young University Department of Mechanical Engineering ABSTRACT The application of active noise control (ANC)

More information

Applet Exercise 1: Introduction to the Virtual Lab and Wave Fundamentals

Applet Exercise 1: Introduction to the Virtual Lab and Wave Fundamentals Applet Exercise 1: Introduction to the Virtual Lab and Wave Fundamentals Objectives: 1. Become familiar with the Virtual Lab display and controls.. Find out how sound loudness or intensity depends on distance

More information

Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies

Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies Induced emf - Faraday s Experiment When a magnet moves toward a loop of wire, the ammeter shows the presence of a current When

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 2, Issue 11, November 2012 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Acoustic Source

More information

ECE 3084 OCTOBER 17, 2017

ECE 3084 OCTOBER 17, 2017 Objective ECE 3084 LAB NO. 1: MEASURING FREQUENCY RESPONSE OCTOBER 17, 2017 The objective of this lab is to measure the magnitude response of a set of headphones or earbuds. We will explore three alternative

More information

Statistical errors in the estimation of time-averaged acoustic energy density using the two-microphone method

Statistical errors in the estimation of time-averaged acoustic energy density using the two-microphone method Statistical errors in the estimation of time-averaged acoustic energy density using the two-microphone method Short title: Statistical errors in acoustic energy density Justin Ghan, Ben Cazzolato, and

More information

Engine fault feature extraction based on order tracking and VMD in transient conditions

Engine fault feature extraction based on order tracking and VMD in transient conditions Engine fault feature extraction based on order tracking and VMD in transient conditions Gang Ren 1, Jide Jia 2, Jian Mei 3, Xiangyu Jia 4, Jiajia Han 5 1, 4, 5 Fifth Cadet Brigade, Army Transportation

More information

This sensor is now also available with a sturdier flat electrode which enables testing even smaller samples than the conventional electrode.

This sensor is now also available with a sturdier flat electrode which enables testing even smaller samples than the conventional electrode. ph sensor with electrode ENPH-A016 ph sensor with flat electrode ENPH-F052 The ph sensor replaces the traditional ph meter adding powerful capabilities such as collecting the ph data and displaying the

More information

AFMG. Focus Your Sub Arrays! AHNERT FEISTEL MEDIA GROUP. PLS 2017, Frankfurt

AFMG. Focus Your Sub Arrays! AHNERT FEISTEL MEDIA GROUP. PLS 2017, Frankfurt Why Making Subwoofer Arrays? Design Principles Typical Arrays The Right Tools in EASE Focus 3 www..eu 2 Why Making Subwoofer Arrays? 63 Hz, 1/3 Oct. Typical L-R setup Large frequency response variation

More information

An Adaptive Blind Channel Shortening Algorithm for MCM Systems

An Adaptive Blind Channel Shortening Algorithm for MCM Systems Hacettepe University Department of Electrical and Electronics Engineering An Adaptive Blind Channel Shortening Algorithm for MCM Systems Blind, Adaptive Channel Shortening Equalizer Algorithm which provides

More information

Chapter 3. Experimentation and Data Acquisition

Chapter 3. Experimentation and Data Acquisition 48 Chapter 3 Experimentation and Data Acquisition In order to achieve the objectives set by the present investigation as mentioned in the Section 2.5, an experimental set-up has been fabricated by mounting

More information

USING STATISTICAL ROOM ACOUSTICS FOR ANALYSING THE OUTPUT SNR OF THE MWF IN ACOUSTIC SENSOR NETWORKS. Toby Christian Lawin-Ore, Simon Doclo

USING STATISTICAL ROOM ACOUSTICS FOR ANALYSING THE OUTPUT SNR OF THE MWF IN ACOUSTIC SENSOR NETWORKS. Toby Christian Lawin-Ore, Simon Doclo th European Signal Processing Conference (EUSIPCO 1 Bucharest, Romania, August 7-31, 1 USING STATISTICAL ROOM ACOUSTICS FOR ANALYSING THE OUTPUT SNR OF THE MWF IN ACOUSTIC SENSOR NETWORKS Toby Christian

More information

Fan Noise Control by Enclosure Modification

Fan Noise Control by Enclosure Modification Fan Noise Control by Enclosure Modification Moohyung Lee a, J. Stuart Bolton b, Taewook Yoo c, Hiroto Ido d, Kenichi Seki e a,b,c Ray W. Herrick Laboratories, Purdue University 14 South Intramural Drive,

More information

Innovative Technologies for the Gravitational-Wave Detectors LIGO and Virgo

Innovative Technologies for the Gravitational-Wave Detectors LIGO and Virgo Innovative Technologies for the Gravitational-Wave Detectors LIGO and Virgo Jan Harms INFN, Sezione di Firenze On behalf of LIGO and Virgo 1 Global Network of Detectors LIGO GEO VIRGO KAGRA LIGO 2 Commissioning

More information

CSE548, AMS542: Analysis of Algorithms, Fall 2017 Date: October 11. In-Class Midterm. ( 7:05 PM 8:20 PM : 75 Minutes )

CSE548, AMS542: Analysis of Algorithms, Fall 2017 Date: October 11. In-Class Midterm. ( 7:05 PM 8:20 PM : 75 Minutes ) CSE548, AMS542: Analysis of Algorithms, Fall 2017 Date: October 11 In-Class Midterm ( 7:05 PM 8:20 PM : 75 Minutes ) This exam will account for either 15% or 30% of your overall grade depending on your

More information

Figure 1.1.1: Magnitude ratio as a function of time using normalized temperature data

Figure 1.1.1: Magnitude ratio as a function of time using normalized temperature data 9Student : Solutions to Technical Questions Assignment : Lab 3 Technical Questions Date : 1 November 212 Course Title : Introduction to Measurements and Data Analysis Course Number : AME 2213 Instructor

More information

TFI Report Sound Absorption Impact Sound Insulation

TFI Report Sound Absorption Impact Sound Insulation TFI Report 462257-01 Sound Absorption Impact Sound Insulation Customer Desso B.V. Taxandriaweg 15 5142 PA Waalwijk NETHERLANDS Product textile floor covering This report includes 2 pages and 2 annex(es)

More information

Standard ECMA-108 3rd Edition - December Measurement of High-frequency Noise emitted by Information Technology and Telecommunications Equipment

Standard ECMA-108 3rd Edition - December Measurement of High-frequency Noise emitted by Information Technology and Telecommunications Equipment Standard ECMA-108 3rd Edition - December 1996 Standardizing Information and Communication Systems Measurement of High-frequency Noise emitted by Information Technology and Telecommunications Equipment

More information

Non-Acoustical Inputs

Non-Acoustical Inputs CHAPTER 18 Non-Acoustical Inputs This chapter discusses the use of external transducers and devices to provide non-acoustical data to the Model 831. Included are the following: 831-INT 831-INT Interface

More information

Instructors Guide to:

Instructors Guide to: Instructors Guide to: Swinging with Gravity In this experiment the light sensor is attached to the RCX allowing taking realtime data on the received signal change as the pendulum swings over light/dark

More information

Research Article The Microphone Feedback Analogy for Chatter in Machining

Research Article The Microphone Feedback Analogy for Chatter in Machining Shock and Vibration Volume 215, Article ID 976819, 5 pages http://dx.doi.org/1.1155/215/976819 Research Article The Microphone Feedback Analogy for Chatter in Machining Tony Schmitz UniversityofNorthCarolinaatCharlotte,Charlotte,NC28223,USA

More information

TinySR. Peter Schmidt-Nielsen. August 27, 2014

TinySR. Peter Schmidt-Nielsen. August 27, 2014 TinySR Peter Schmidt-Nielsen August 27, 2014 Abstract TinySR is a light weight real-time small vocabulary speech recognizer written entirely in portable C. The library fits in a single file (plus header),

More information

Data Sheet / Instructions. Dewpoint MeterO

Data Sheet / Instructions. Dewpoint MeterO Data Sheet / Instructions Dewpoint MeterO Dewpoint Meter ISO 8502-4: Preparation of steel substrates before application of paints and related products. Tests for the assessment of surface cleanliness.

More information

TFI Report Sound Absorption Impact Sound Insulation

TFI Report Sound Absorption Impact Sound Insulation TFI Report 471194-01 Sound Absorption Impact Sound Insulation Customer egetaepper a/s Industrivej Nord 25 7400 Herning DENMARK Product textile floor covering This report includes 2 pages and 2 annex(es)

More information

Cast of Characters. Some Symbols, Functions, and Variables Used in the Book

Cast of Characters. Some Symbols, Functions, and Variables Used in the Book Page 1 of 6 Cast of Characters Some s, Functions, and Variables Used in the Book Digital Signal Processing and the Microcontroller by Dale Grover and John R. Deller ISBN 0-13-081348-6 Prentice Hall, 1998

More information

Robotics. Lecture 4: Probabilistic Robotics. See course website for up to date information.

Robotics. Lecture 4: Probabilistic Robotics. See course website   for up to date information. Robotics Lecture 4: Probabilistic Robotics See course website http://www.doc.ic.ac.uk/~ajd/robotics/ for up to date information. Andrew Davison Department of Computing Imperial College London Review: Sensors

More information

Calculating the Acceleration of Gravity

Calculating the Acceleration of Gravity Calculating the Acceleration of Gravity Test Report: TR003 Revision: Rev A Date: June 20, 2017 Abstract: Occasionally, it s a good idea to check some of the fundamental laws of physics for validity. You

More information

Probabilistic 3D Sound Source Mapping using Moving Microphone Array. Sasaki et al., IROS 2016 Inkyu An

Probabilistic 3D Sound Source Mapping using Moving Microphone Array. Sasaki et al., IROS 2016 Inkyu An Probabilistic 3D Sound Source Mapping using Moving Microphone Array Sasaki et al., IROS 2016 Inkyu An Content 1. Background - What is the Sound Source Localization? 2. Motivation 3. Approach 4. Result

More information

DELTA Test Report. Measurement of Sound Absorption for AqFlex ON, one Sample as a discrete Object. Performed for Flex Acoustics

DELTA Test Report. Measurement of Sound Absorption for AqFlex ON, one Sample as a discrete Object. Performed for Flex Acoustics DELTA Test Report TEST Reg. no. 100 Measurement of Sound Absorption for AqFlex ON, one Sample as a discrete Object Performed for Flex Acoustics Project no.: T202611 Page 1 of 7 21 January 2013 DELTA Venlighedsvej

More information

Physics 220: Worksheet 7

Physics 220: Worksheet 7 (1 A resistor R 1 =10 is connected in series with a resistor R 2 =100. A current I=0.1 A is present through the circuit. What is the power radiated in each resistor and also in the total circuit? (2 A

More information

Midterm Exam. CS 3110: Design and Analysis of Algorithms. June 20, Group 1 Group 2 Group 3

Midterm Exam. CS 3110: Design and Analysis of Algorithms. June 20, Group 1 Group 2 Group 3 Banner ID: Name: Midterm Exam CS 3110: Design and Analysis of Algorithms June 20, 2006 Group 1 Group 2 Group 3 Question 1.1 Question 2.1 Question 3.1 Question 1.2 Question 2.2 Question 3.2 Question 3.3

More information

LABORATORY MEASUREMENTS OF THE SOUND ABSORPTION COEFFICIENTS OF OSCAR EVO-PANELS

LABORATORY MEASUREMENTS OF THE SOUND ABSORPTION COEFFICIENTS OF OSCAR EVO-PANELS Report No. L/3237 Page 1 of 8 for Oscar Acoustics Michaels Lane Ash Kent TN15 7HT Dated: 24 July 2012 LABORATORY MEASUREMENTS OF THE SOUND ABSORPTION COEFFICIENTS OF OSCAR EVO-PANELS Report Author: M Sawyer

More information

You should be able to demonstrate and show your understanding of:

You should be able to demonstrate and show your understanding of: OCR B Physics H557 Module 3: Physics in Action You should be able to demonstrate and show your understanding of: 3.1: Communication 3.1.1: Imaging and Signalling The formation of a real image by a thin

More information

Homework: 4.50 & 4.51 of the attachment Tutorial Problems: 7.41, 7.44, 7.47, Signals & Systems Sampling P1

Homework: 4.50 & 4.51 of the attachment Tutorial Problems: 7.41, 7.44, 7.47, Signals & Systems Sampling P1 Homework: 4.50 & 4.51 of the attachment Tutorial Problems: 7.41, 7.44, 7.47, 7.49 Signals & Systems Sampling P1 Undersampling & Aliasing Undersampling: insufficient sampling frequency ω s < 2ω M Perfect

More information

Sound Source Tracking Using Microphone Arrays

Sound Source Tracking Using Microphone Arrays Sound Source Tracking Using Microphone Arrays WANG PENG and WEE SER Center for Signal Processing School of Electrical & Electronic Engineering Nanayang Technological Univerisy SINGAPORE, 639798 Abstract:

More information

De-Dopplerisation in Vehicle External Noise Measurements

De-Dopplerisation in Vehicle External Noise Measurements VSB-Technical University of Ostrava Faculty of Mechanical Engineering Department of ontrol Systems and Instrumentation De-Dopplerisation in Vehicle Eternal Noise Measurements Jiri Tuma 7. listopadu 5,

More information

Measurement of Acoustic Properties of light weight concrete SL-Deck

Measurement of Acoustic Properties of light weight concrete SL-Deck DELTA Test Report TEST Reg. no. 100 Measurement of Acoustic Properties of light weight concrete SL-Deck Performed for Abeo A/S Project no.: I100486 Page 1 of 25 30 June 2014 DELTA Venlighedsvej 4 2970

More information

TG MANUAL. OPEN SOURCE TIMING SOFTWARE. Oscillo-Escape. The first devices of this sort appeared around Let's say they were electronic devices.

TG MANUAL. OPEN SOURCE TIMING SOFTWARE. Oscillo-Escape. The first devices of this sort appeared around Let's say they were electronic devices. TG MANUAL. OPEN SOURCE TIMING SOFTWARE. Oscillo-Escape The origin of the watch timing machine. We call a "timing machine" a device that allows, in its most basic function, to determine the performance

More information

MEASUREMENT OF THE UNDERWATER SHIP NOISE BY MEANS OF THE SOUND INTENSITY METHOD. Eugeniusz Kozaczka 1,2 and Ignacy Gloza 2

MEASUREMENT OF THE UNDERWATER SHIP NOISE BY MEANS OF THE SOUND INTENSITY METHOD. Eugeniusz Kozaczka 1,2 and Ignacy Gloza 2 ICSV14 Cairns Australia 9-12 July, 2007 MEASUREMENT OF THE UNDERWATER SHIP NOISE BY MEANS OF THE SOUND INTENSITY METHOD Eugeniusz Kozaczka 1,2 and Ignacy Gloza 2 1 Gdansk University of Techology G. Narutowicza

More information

A wavenumber approach to characterizing the diffuse field conditions in reverberation rooms

A wavenumber approach to characterizing the diffuse field conditions in reverberation rooms PROCEEDINGS of the 22 nd International Congress on Acoustics Isotropy and Diffuseness in Room Acoustics: Paper ICA2016-578 A wavenumber approach to characterizing the diffuse field conditions in reverberation

More information

Plate mode identification using modal analysis based on microphone array measurements

Plate mode identification using modal analysis based on microphone array measurements Plate mode identification using modal analysis based on microphone array measurements A.L. van Velsen, E.M.T. Moers, I. Lopez Arteaga, H. Nijmeijer Department mechanical engineering, Eindhoven University

More information

Investigating the Change in Acceleration of a Trolley Running Down an Inclined Plane

Investigating the Change in Acceleration of a Trolley Running Down an Inclined Plane The Investigation Investigating the Change in Acceleration of a Trolley Running Down an Inclined Plane Research Question: Is the acceleration of a trolley down an inclined plane constant? The time the

More information

Fourier Analysis of Signals Using the DFT

Fourier Analysis of Signals Using the DFT Fourier Analysis of Signals Using the DFT ECE 535 Lecture April 29, 23 Overview: Motivation Many applications require analyzing the frequency content of signals Speech processing study resonances of vocal

More information

Signals & Systems interaction in the Time Domain. (Systems will be LTI from now on unless otherwise stated)

Signals & Systems interaction in the Time Domain. (Systems will be LTI from now on unless otherwise stated) Signals & Systems interaction in the Time Domain (Systems will be LTI from now on unless otherwise stated) Course Objectives Specific Course Topics: -Basic test signals and their properties -Basic system

More information

ACOUSTICAL MEASUREMENTS BY ADAPTIVE SYSTEM MODELING

ACOUSTICAL MEASUREMENTS BY ADAPTIVE SYSTEM MODELING ACOUSTICAL MEASUREMENTS BY ADAPTIVE SYSTEM MODELING PACS REFERENCE: 43.60.Qv Somek, Branko; Dadic, Martin; Fajt, Sinisa Faculty of Electrical Engineering and Computing University of Zagreb Unska 3, 10000

More information

Paseo Recoletos, nº Madrid TEST REPORT

Paseo Recoletos, nº Madrid TEST REPORT LGAI LGAI Technological Center, S.A. Campus de la UAB Apartado de Correos 18 E - 08193 BELLATERRA (Barcelona) T +34 93 567 20 00 F +34 93 567 20 01 www.applus.com 9/LE766 Bellaterra: June 5 th, 2012 File

More information

Adversarial Search. Christos Papaloukas, Iosif Angelidis. University of Athens November 2017

Adversarial Search. Christos Papaloukas, Iosif Angelidis. University of Athens November 2017 Adversarial Search Christos Papaloukas, Iosif Angelidis University of Athens November 2017 Christos P., Iosif A. Adversarial Search UoA, 2017 1 / 61 Main Aspects Formulation In order to perform an Adversarial

More information

Labdisc Activity A Walk in the Park

Labdisc Activity A Walk in the Park Labdisc Activity A Walk in the Park Supporting Labdisc Data Logger, GlobiWorld and GlobiLab Software For Elementary School Science A Walk in the Park Introduction We can find green parks in almost every

More information

Dewpoint Meter Data Sheet / Instructions

Dewpoint Meter Data Sheet / Instructions Paint Test Equipment Dewpoint Meter Data Sheet / Instructions Dewpoint Meter Information ISO 8502-4: Preparation of steel substrates before application of paints and related products. Tests for the assessment

More information

Using a Hopfield Network: A Nuts and Bolts Approach

Using a Hopfield Network: A Nuts and Bolts Approach Using a Hopfield Network: A Nuts and Bolts Approach November 4, 2013 Gershon Wolfe, Ph.D. Hopfield Model as Applied to Classification Hopfield network Training the network Updating nodes Sequencing of

More information

Conservation of Energy

Conservation of Energy Name Period Date Conservation of Energy Driving Questions How does the energy of a cart poised at the top of a hill compare to its energy at the bottom of the hill? Background Gravitational potential energy

More information

ACTIVITY 2: Motion and Energy

ACTIVITY 2: Motion and Energy Developing Ideas ACTIVITY 2: Motion and Purpose We use the idea of energy in many ways in everyday life. For example, there is sometimes talk of an energy crisis when fuel supplies run low; people eat

More information

CSE 559A: Computer Vision EVERYONE needs to fill out survey.

CSE 559A: Computer Vision EVERYONE needs to fill out survey. CSE 559A: Computer Vision ADMINISRIVIA EVERYONE needs to fill out survey. Setup git and Anaconda, send us your public key, and do problem set 0. Do immediately: submit public key and make sure you can

More information

Maximum Power Point Tracking for Photovoltaic Optimization Using Extremum Seeking

Maximum Power Point Tracking for Photovoltaic Optimization Using Extremum Seeking Maximum Power Point Tracking for Photovoltaic Optimization Using Extremum Seeking Steve Brunton 1, Clancy Rowley 1, Sanj Kulkarni 1, and Charles Clarkson 2 1 Princeton University 2 ITT Space Systems Division

More information

NOISE ROBUST RELATIVE TRANSFER FUNCTION ESTIMATION. M. Schwab, P. Noll, and T. Sikora. Technical University Berlin, Germany Communication System Group

NOISE ROBUST RELATIVE TRANSFER FUNCTION ESTIMATION. M. Schwab, P. Noll, and T. Sikora. Technical University Berlin, Germany Communication System Group NOISE ROBUST RELATIVE TRANSFER FUNCTION ESTIMATION M. Schwab, P. Noll, and T. Sikora Technical University Berlin, Germany Communication System Group Einsteinufer 17, 1557 Berlin (Germany) {schwab noll

More information

ElectroMagnetic Induction

ElectroMagnetic Induction ElectroMagnetic Induction Physics 1 What is E/M Induction? Electromagnetic Induction is the process of using magnetic fields to produce voltage, and in a complete circuit, a current. Michael Faraday first

More information

Part 2: Methods for special reverberation test rooms

Part 2: Methods for special reverberation test rooms Provläsningsexemplar / Preview INTERNATIONAL STANDARD ISO 3743-2 Second edition 2018-02 Acoustics Determination of sound power levels of noise sources using sound pressure Engineering methods for small,

More information

NAME SID EE42/100 Spring 2013 Final Exam 1

NAME SID EE42/100 Spring 2013 Final Exam 1 NAME SID EE42/100 Spring 2013 Final Exam 1 1. Short answer questions a. There are approximately 36x10 50 nucleons (protons and neutrons) in the earth. If we wanted to give each one a unique n-bit address,

More information

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. Date: Monday 22nd May 2017 Time: 09:45-11:45

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. Date: Monday 22nd May 2017 Time: 09:45-11:45 COMP 14112 Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE Fundamentals of Artificial Intelligence Date: Monday 22nd May 2017 Time: 09:45-11:45 Answer One Question from Section A and One

More information

Designing Information Devices and Systems I Spring 2018 Homework 10

Designing Information Devices and Systems I Spring 2018 Homework 10 EECS 16A Designing Information Devices and Systems I Spring 2018 Homework 10 This homework is due April 9, 2018, at 23:59. Self-grades are due April 12, 2018, at 23:59. Submission Format Your homework

More information

Calculation of RF-Interference from Coupled Shielded Hybrid Cables Utilizing Current Probe Measurements

Calculation of RF-Interference from Coupled Shielded Hybrid Cables Utilizing Current Probe Measurements Calculation of RF-Interference from Coupled Shielded Hybrid Cables Utilizing Current Probe Measurements Dr. Peter Hahne, Ingenieurbüro Dr. Peter Hahne Dr. Martin Aidam, Daimler AG, Andreas Ludwig, Daimler

More information

Directional Sources and Beamforming

Directional Sources and Beamforming 156 th meeting of the Acoustical Society of America Miami, Florida, November 13, 2008 Directional Sources and Beamforming Christian Bouchard Christian.Bouchard@nrc-cnrc.gc.ca David I. Havelock Institute

More information

REPORT ON THE DETERMINATION OF SOUND ABSORPTION COEFFICIENTS OF WOVEN IMAGE ECHO PANEL 24MM TESTED WITH NO AIR GAP MEASURED IN A REVERBERATION ROOM.

REPORT ON THE DETERMINATION OF SOUND ABSORPTION COEFFICIENTS OF WOVEN IMAGE ECHO PANEL 24MM TESTED WITH NO AIR GAP MEASURED IN A REVERBERATION ROOM. RMIT University Building 1 Level 1 Room 1 124 La Trobe Street Melbourne VIC 3000 Australia GPO Box 2476V Melbourne VIC 3001 Australia Tel. +61 3 9925 2000 Fax +61 3 9925 2000 www.rmit.edu.au REPORT ON

More information

An Investigation of the use of Spatial Derivatives in Active Structural Acoustic Control

An Investigation of the use of Spatial Derivatives in Active Structural Acoustic Control An Investigation of the use of Spatial Derivatives in Active Structural Acoustic Control Brigham Young University Abstract-- A ne parameter as recently developed by Jeffery M. Fisher (M.S.) for use in

More information

NEW SOUTH WALES DEPARTMENT OF EDUCATION AND TRAINING Manufacturing and Engineering ESD. Sample Examination EA605

NEW SOUTH WALES DEPARTMENT OF EDUCATION AND TRAINING Manufacturing and Engineering ESD. Sample Examination EA605 Name: NEW SOUTH WALES DEPARTMENT OF EDUCATION AND TRAINING Manufacturing and Engineering ESD Sample Examination EA605 EDDY CURRENT TESTING AS3998 LEVEL 2 GENERAL EXAMINATION 6161C * * * * * * * Time allowed

More information

Cantilever enhanced tunable diode laser photoacoustic spectroscopy in gas purity measurement case study: acetylene in ethylene

Cantilever enhanced tunable diode laser photoacoustic spectroscopy in gas purity measurement case study: acetylene in ethylene Cantilever enhanced tunable diode laser photoacoustic spectroscopy in gas purity measurement case study: acetylene in ethylene Juho Uotila, Jussi Raittila, Ismo Kauppinen ¹Gasera Ltd., Tykistökatu 4, 20520

More information

Calibration of an Ultra-High Accuracy Polarimeter at the Part-Per-Million Level

Calibration of an Ultra-High Accuracy Polarimeter at the Part-Per-Million Level Calibration of an Ultra-High Accuracy Polarimeter at the Part-Per-Million Level Sloane J. Wiktorowicz The Aerospace Corporation Calcon Technical Meeting August 24, 2016 2016 The Aerospace Corporation Ultra-High

More information

CLASS TEST GRADE 11. PHYSICAL SCIENCES: PHYSICS Test 2: Waves, sound and light

CLASS TEST GRADE 11. PHYSICAL SCIENCES: PHYSICS Test 2: Waves, sound and light CLASS TEST GRADE 11 PHYSICAL SCIENCES: PHYSICS Test 2: Waves, sound and light MARKS: 45 TIME: 1 hour INSTRUCTIONS AND INFORMATION 1. Answer ALL the questions. 2. You may use non-programmable calculators.

More information

ADMINISTRIVIA SENSOR

ADMINISTRIVIA SENSOR CSE 559A: Computer Vision ADMINISRIVIA Everyone needs to fill out survey and join Piazza. We strongly encourage you to use Piazza over e-mail for questions (mark only to instructors if you wish). Also

More information

Ammonium Sealed Electrode Sensor Bundle Product Number: ENAMN020A

Ammonium Sealed Electrode Sensor Bundle Product Number: ENAMN020A imagine explore learn Ammonium Sealed Electrode Sensor Bundle Product Number: ENAMN020A Overview Ammonium ions (NH 4+ ) can be found in fertilizer, cleaning products, processed meats and in the waste of

More information

Active noise control in a pure tone diffuse sound field. using virtual sensing. School of Mechanical Engineering, The University of Adelaide, SA 5005,

Active noise control in a pure tone diffuse sound field. using virtual sensing. School of Mechanical Engineering, The University of Adelaide, SA 5005, Active noise control in a pure tone diffuse sound field using virtual sensing D. J. Moreau, a) J. Ghan, B. S. Cazzolato, and A. C. Zander School of Mechanical Engineering, The University of Adelaide, SA

More information

MICROPHONE ARRAY METHOD FOR THE CHARACTERIZATION OF ROTATING SOUND SOURCES IN AXIAL FANS

MICROPHONE ARRAY METHOD FOR THE CHARACTERIZATION OF ROTATING SOUND SOURCES IN AXIAL FANS MICROPHONE ARRAY METHOD FOR THE CHARACTERIZATION OF ROTATING SOUND SOURCES IN AXIAL FANS Gert HEROLD, Ennes SARRADJ Brandenburg University of Technology, Chair of Technical Acoustics, Siemens-Halske-Ring

More information

Signal types. Signal characteristics: RMS, power, db Probability Density Function (PDF). Analogue-to-Digital Conversion (ADC).

Signal types. Signal characteristics: RMS, power, db Probability Density Function (PDF). Analogue-to-Digital Conversion (ADC). Signal types. Signal characteristics:, power, db Probability Density Function (PDF). Analogue-to-Digital Conversion (ADC). Signal types Stationary (average properties don t vary with time) Deterministic

More information

3B SCIENTIFIC PHYSICS

3B SCIENTIFIC PHYSICS 3B SCIENTIFIC PHYSICS 30 V, 50/60 Hz: 1018884 / U07001-30 115 V, 50/60 Hz: 101888 / U07001-115 Millikan s Apparatus Instruction sheet 07/16 UD/ALF Safety instructions Millikan s apparatus conforms to the

More information

Engineering Unit 1: Engineering Principles

Engineering Unit 1: Engineering Principles Write your name here Surname Other names Pearson BTEC Level 3 Extended Certificate, Foundation Diploma, Diploma, Extended Diploma Centre Number Learner Registration Number Engineering Unit 1: Engineering

More information

ISO INTERNATIONAL STANDARD

ISO INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO 140-6 Second edition 1998-08-15 Acoustics Measurement of sound insulation in buildings and of building elements Part 6: Laboratory measurements of impact sound insulation of

More information

Sinusoidal Modeling. Yannis Stylianou SPCC University of Crete, Computer Science Dept., Greece,

Sinusoidal Modeling. Yannis Stylianou SPCC University of Crete, Computer Science Dept., Greece, Sinusoidal Modeling Yannis Stylianou University of Crete, Computer Science Dept., Greece, yannis@csd.uoc.gr SPCC 2016 1 Speech Production 2 Modulators 3 Sinusoidal Modeling Sinusoidal Models Voiced Speech

More information

Mobile coulometer for water determination anywhere you want

Mobile coulometer for water determination anywhere you want 899 Coulometer Mobile coulometer for water determination anywhere you want Extremely small & compact Maximum flexibility due to independent power supply Automatic start of titration 899 Coulometer the

More information

THE INFLUENCE OF NICKS ON THE SOUND PROPERTIES AND THE AIRFLOW IN FRONT OF FLUE ORGAN PIPE

THE INFLUENCE OF NICKS ON THE SOUND PROPERTIES AND THE AIRFLOW IN FRONT OF FLUE ORGAN PIPE THE INFLUENCE OF NICKS ON THE SOUND PROPERTIES AND THE AIRFLOW IN FRONT OF FLUE ORGAN PIPE Zdeněk Otčenášek, Viktor Hruška, Ondřej Moravec, Martin Švejda Musical Acoustics Research Centre Academy of Performing

More information

Central to this is two linear transformations: the Fourier Transform and the Laplace Transform. Both will be considered in later lectures.

Central to this is two linear transformations: the Fourier Transform and the Laplace Transform. Both will be considered in later lectures. In this second lecture, I will be considering signals from the frequency perspective. This is a complementary view of signals, that in the frequency domain, and is fundamental to the subject of signal

More information

CCNY. BME I5100: Biomedical Signal Processing. Stochastic Processes. Lucas C. Parra Biomedical Engineering Department City College of New York

CCNY. BME I5100: Biomedical Signal Processing. Stochastic Processes. Lucas C. Parra Biomedical Engineering Department City College of New York BME I5100: Biomedical Signal Processing Stochastic Processes Lucas C. Parra Biomedical Engineering Department CCNY 1 Schedule Week 1: Introduction Linear, stationary, normal - the stuff biology is not

More information

DELTA Test Report. DANAK TEST Reg. no Measurement of Sound Absorption Coefficient for Kvadrat Soft Cells Wall Panel Type Time

DELTA Test Report. DANAK TEST Reg. no Measurement of Sound Absorption Coefficient for Kvadrat Soft Cells Wall Panel Type Time We help ideas meet the real world DELTA Test Report DANAK TEST Reg. no. 100 Measurement of Sound Absorption Coefficient for Kvadrat Soft Cells Wall Panel Type Time Client: Kvadrat Soft Cells A/S Page 1

More information

SPEECH ANALYSIS AND SYNTHESIS

SPEECH ANALYSIS AND SYNTHESIS 16 Chapter 2 SPEECH ANALYSIS AND SYNTHESIS 2.1 INTRODUCTION: Speech signal analysis is used to characterize the spectral information of an input speech signal. Speech signal analysis [52-53] techniques

More information

Centripetal and centrifugal force

Centripetal and centrifugal force Introduction In the everyday language use, the centrifugal force is often referred to as the cause of the occurring force during a uniform non-linear motion. Situated in a moving object that changes its

More information

Comparison of acoustic NDT for assessment of small stiffness changes during low temperature thermal treatment

Comparison of acoustic NDT for assessment of small stiffness changes during low temperature thermal treatment Comparison of acoustic NDT for assessment of small stiffness changes during low temperature thermal treatment Dan Ridley-Ellis 1, Barbara Keating 2, Carmen-Mihaela Popescu 3 1 Edinburgh Napier University,

More information

Noise and Vibration of Electrical Machines

Noise and Vibration of Electrical Machines Noise and Vibration of Electrical Machines P. L. TIMÄR A. FAZEKAS J. KISS A. MIKLOS S. J. YANG Edited by P. L. Timär ш Akademiai Kiadö, Budapest 1989 CONTENTS Foreword xiii List of symbols xiv Introduction

More information

Fan Stage Broadband Noise Benchmarking Programme

Fan Stage Broadband Noise Benchmarking Programme Fan Stage Broadband Noise Benchmarking Programme Specification of Fundamental Test Case 3 (FC3) Version 1 : 26 January 2015 Test Case Coordinator John Coupland ISVR University of Southampton UK E-mail

More information

Proceedings of Meetings on Acoustics

Proceedings of Meetings on Acoustics Proceedings of Meetings on Acoustics Volume 19, 213 http://acousticalsociety.org/ ICA 213 Montreal Montreal, Canada 2-7 June 213 Engineering Acoustics Session 4pEAa: Sound Field Control in the Ear Canal

More information

1.2 UNIFORM MOTION PRACTICE

1.2 UNIFORM MOTION PRACTICE Making Connections 6. car s odometer measures the distance travelled. Its speedometer measures the instantaneous velocity. 7. Sign (d) is the best because it indicates the maximum allowed velocity (as

More information

LABORATORY MEASUREMENTS OF THE REDUCTION OF TRANSMITTED IMPACT NOISE PANETTI OVERLAID BY CONCRETE FLOORING

LABORATORY MEASUREMENTS OF THE REDUCTION OF TRANSMITTED IMPACT NOISE PANETTI OVERLAID BY CONCRETE FLOORING Report No. L/3194 Page 1 of 8 for EA Mimarlik Insaat Teknolojileri San.ve. Tic.Ltd.Sti 1420/3 Sokak NO. 22 Kizilkanat Silesi D Blok D.12 Alsancak Izmir Turkey Dated: 18 July 2011 LABORATORY MEASUREMENTS

More information

SECONDARY SCHOOL ANNUAL EXAMINATIONS 2006 EDUCATIONAL ASSESSMENT UNIT- EDUCATION DIVISION. FORM 3 PHYSICS Time: 1h 30min

SECONDARY SCHOOL ANNUAL EXAMINATIONS 2006 EDUCATIONAL ASSESSMENT UNIT- EDUCATION DIVISION. FORM 3 PHYSICS Time: 1h 30min SECONDARY SCHOOL ANNUAL EXAMINATIONS 2006 EDUCATIONAL ASSESSMENT UNIT- EDUCATION DIVISION FORM 3 PHYSICS Time: 1h 30min NAME: CLASS: Answer all questions. All working must be shown. The use of a calculator

More information

Chemistry 3202 Lab 6 Hess s Law 1

Chemistry 3202 Lab 6 Hess s Law 1 Chemistry 3202 Lab 6 Hess s Law 1 Lab 6 Hess's Law Introduction Chemical and physical changes are always accompanied by a change in energy. Energy changes may be observed by detecting heat flow between

More information