4.2 Acoustics of Speech Production

Size: px
Start display at page:

Download "4.2 Acoustics of Speech Production"

Transcription

1 4.2 Acoustics of Speech Production Acoustic phonetics is a field that studies the acoustic properties of speech and how these are related to the human speech production system. The topic is vast, exceeding the scope of this handout, but here we try to cover the essentials. The most important acoustic properties of the vocal tract are the resonancies that originate in a manner similar to that of, e.g., wind instruments, i.e. as resonating standing waves in an air tube. If the tube is uniform having one closed and the other open, the standings waves will occur so that the change of pressure is smallest in the closed and highest in the open as illustrated in figure 1. If the length of the tube is l, then the wavelengths (λ) are 4l, 4 3 l, 4 5 l, 4 7 l,... The length of the vocal tract of a typical adult is about 17 cm, and the speed of sound in the air (denoted by c) is assumed to be 340 m/s. The resonance frequencies can be calculated using the basic equation of wave motion, c = fλ, so in this case the frequencies, f, are m/s, m/s in other words, the odd harmonics of 500 Hz., 5 340m/s, Hz, 1500Hz, 2500Hz,... Figure 1: Standing waves in a half-closed tube. The figure shows the change of pressure which is zero at the closed and highest at the open. The human vocal tract is not an uniform tube but still, in vowels, there occurs roughly one formant per 1 kilohertz, as in the case of an uniform tube seen above. Only the formant frequencies are not harmonically related anymore but have been displaced according to the shape of the vocal tract. Solving formant frequencies based on the form of a vocal tract is not in general analytically possible (numerical solutions can be estimated, though). The relation between the vocal tract model and 24

2 reality can also be questioned. There are several facts that should be taken into account when aiming at an accurate model of speech production, such as various sound sources, time and space variations of the vocal tract, nasal coupling, radiation at the lips (i.e., the spread of the sound wave to the ambient air), different energy losses, rotational air flows, and so on. In fact, a formal theory of sound propagation for the complete configuration with all such considerations does not exist. However, much insight into speech production can be gained through studying simplified analog models. A particularly interesting and useful approach is to restrict the consideration to a model consisting of several concatenated uniform tubes. This allows an analytical solution with rather high accuracy and moderate effort. Let us first study a lossless uniform tube and assume that the travelling waves in the tube are planar as in figure 2. In tubes like this, there occur only pressure waves moving at the speed of sound in either direction, and their superpositions, i.e. sums of multitude of waves. Figure 2: In a uniform lossless tube, there occur only sums of pressure waves moving at the speed of sound in either direction. The wave is presumed to be planar. When concatenating two uniform tubes, the pressure waves still move at the speed of sound inside both tubes, but at the juction point also reflection occurs. Let us denote the cross-sectional area of the 25

3 left tube as S n and of the right tube as S n+1. The reflection coefficient k n is defined as follows: k = S n S n+1 S n + S n+1. Notice that 1 < k n < 1. The reflection coefficient diplays how large part of the pressure wave moving in the tube is reflected back at the junction. For example, of the wave travelling right in tube 1, a portion expressed by k 1 is reflected back to the tube 1, and the rest (1 k 1 ) passes on to tube 2. Correspondingly, of the wave travelling left in tube 2, a portion expressed by k 1 is reflected back. Let us now move on to the discrete-time model. Assume that the tubes are of equal length and the sampling period is equal to the time interval required by the sound wave to travel the length of one tube. The reflection of the pressure waves may be expressed as [ fn+1 (z) b n (z) ] [ (1 kn )z = 1 k n k n z 2 (1 + k n )z 1 ] [ fn (z) b n+1 (z) where b n (z) is the z-transform of a pressure wave moving backwards and f n (z) is the same for forward moving wave. The reflection coefficient k n represents the junction between tubes n and n + 1. The indices of the tubes start from the left. These are called Kelly-Lochbaum equations and they can be expressed as a flowchart as illustrated in Figure 3. We can now catenate several tubes and solve the transfer function of the system by using the equations above. In speech processing it is customary to think that glottis is on the left and mouth on the right. We still have to model the boundaries of the system somehow, for instance f 0 (z) = x(z) + gb 0 (z), where x(z) is the z-transform of a glottis signal and g tells how much of the pressure wave is reflected back at the glottis. Correspondingly, the of the vocal tract is often modeled as b N (z) = 0, where N is the index of the last tube, meaning that there is no reflection coming into the last tube (lips). Take now the forward travelling wave of the last tube as a an output of the system, y(z) = f N (z). Notice that the system is a linear filter since the system consists purely of delays, sums and multiplications by constants. The realization of a filter like this is called lattice structured and it has been proved useful in adaptive filtering for instance. Below we give a Matlab script of a realization of the filter described above (any bugs can be reported to the lecturer). The code can also be found on the web page of the course. % Demo on Kelly-Lochbaum equations clear close all %S = [ ]; % surface areas of the tubes. The last is out there S = [ ]; len = 0.03; % the length of a tube, m v = 340; % the speed of sound, m/s k = (S(1:-1)-S(2:))./(S(1:-1)+S(2:)); % reflection coefficients ], 26

4 Figure 3: Kelly-Lochbaum equations expressed as flowchart. fs = round( v/len); % sampling frequency x = zeros(1,1000); x(1) = 1; % let s calculate impulse response of length 1000 g = 0.5; % reflection at the glottis d = 0.95; % loss coefficient (quite arbitrary) F0 = zeros(1,length(s)); % forward travelling waves before delay, % first is glottis F1 = zeros(1,length(s)-1); % forward travelling waves after delay B0 = zeros(1,length(s)); % backward travelling waves after delay B1 = zeros(1,length(s)); % backward before delay for n = 1:length(x), F0old = F0; F1old = F1; 27

5 B0old = B0; B1old = B1; B0(1) = B1old(1); F0(1) = B0(1)*g+x(n); % glottis-excitation + reflection F1(1) = F0old(1); if ( length(b0) < 3), B1(1) = 0; else B1(1) = B1(2)*d*(1+k(1)) + F1(1)*d*k(1); for i = 2:length(F1), B0(i) = B1old(i); F0(i) = F1(i-1)*d*(1-k(i-1)) + B0(i)*d*(-k(i-1)); F1(i) = F0old(i-1); B1(i) = B1(i+1)*d*(1+k(i)) + F1(i)*d*k(i); b02(n) = B0(2); B0() = 0; % no reflection back F0() = F1()*d*(1-k()); y(n) = F0(); % save the output figure freqz(y,1,1024,fs); title( Frequency response ) 28

SPEECH COMMUNICATION 6.541J J-HST710J Spring 2004

SPEECH COMMUNICATION 6.541J J-HST710J Spring 2004 6.541J PS3 02/19/04 1 SPEECH COMMUNICATION 6.541J-24.968J-HST710J Spring 2004 Problem Set 3 Assigned: 02/19/04 Due: 02/26/04 Read Chapter 6. Problem 1 In this problem we examine the acoustic and perceptual

More information

Lecture 2: Acoustics. Acoustics & sound

Lecture 2: Acoustics. Acoustics & sound EE E680: Speech & Audio Processing & Recognition Lecture : Acoustics 1 3 4 The wave equation Acoustic tubes: reflections & resonance Oscillations & musical acoustics Spherical waves & room acoustics Dan

More information

Lecture 3: Acoustics

Lecture 3: Acoustics CSC 83060: Speech & Audio Understanding Lecture 3: Acoustics Michael Mandel mim@sci.brooklyn.cuny.edu CUNY Graduate Center, Computer Science Program http://mr-pc.org/t/csc83060 With much content from Dan

More information

Signal representations: Cepstrum

Signal representations: Cepstrum Signal representations: Cepstrum Source-filter separation for sound production For speech, source corresponds to excitation by a pulse train for voiced phonemes and to turbulence (noise) for unvoiced phonemes,

More information

Source/Filter Model. Markus Flohberger. Acoustic Tube Models Linear Prediction Formant Synthesizer.

Source/Filter Model. Markus Flohberger. Acoustic Tube Models Linear Prediction Formant Synthesizer. Source/Filter Model Acoustic Tube Models Linear Prediction Formant Synthesizer Markus Flohberger maxiko@sbox.tugraz.at Graz, 19.11.2003 2 ACOUSTIC TUBE MODELS 1 Introduction Speech synthesis methods that

More information

Functional principal component analysis of vocal tract area functions

Functional principal component analysis of vocal tract area functions INTERSPEECH 17 August, 17, Stockholm, Sweden Functional principal component analysis of vocal tract area functions Jorge C. Lucero Dept. Computer Science, University of Brasília, Brasília DF 791-9, Brazil

More information

Evolu&on of Speech. 2: An early model of Neanderthals

Evolu&on of Speech. 2: An early model of Neanderthals Evolu&on of Speech 2: An early model of Neanderthals When did we start to speak? Chimpanzees, Gorillas, Orangutans don t speak So most likely our latest common ancestor didn t Can fossils provide an answer?

More information

Sound 2: frequency analysis

Sound 2: frequency analysis COMP 546 Lecture 19 Sound 2: frequency analysis Tues. March 27, 2018 1 Speed of Sound Sound travels at about 340 m/s, or 34 cm/ ms. (This depends on temperature and other factors) 2 Wave equation Pressure

More information

L7: Linear prediction of speech

L7: Linear prediction of speech L7: Linear prediction of speech Introduction Linear prediction Finding the linear prediction coefficients Alternative representations This lecture is based on [Dutoit and Marques, 2009, ch1; Taylor, 2009,

More information

3 THE P HYSICS PHYSICS OF SOUND

3 THE P HYSICS PHYSICS OF SOUND Chapter 3 THE PHYSICS OF SOUND Contents What is sound? What is sound wave?» Wave motion» Source & Medium How do we analyze sound?» Classifications» Fourier Analysis How do we measure sound?» Amplitude,

More information

Chapter 9. Linear Predictive Analysis of Speech Signals 语音信号的线性预测分析

Chapter 9. Linear Predictive Analysis of Speech Signals 语音信号的线性预测分析 Chapter 9 Linear Predictive Analysis of Speech Signals 语音信号的线性预测分析 1 LPC Methods LPC methods are the most widely used in speech coding, speech synthesis, speech recognition, speaker recognition and verification

More information

Linear Prediction Coding. Nimrod Peleg Update: Aug. 2007

Linear Prediction Coding. Nimrod Peleg Update: Aug. 2007 Linear Prediction Coding Nimrod Peleg Update: Aug. 2007 1 Linear Prediction and Speech Coding The earliest papers on applying LPC to speech: Atal 1968, 1970, 1971 Markel 1971, 1972 Makhoul 1975 This is

More information

Lab 9a. Linear Predictive Coding for Speech Processing

Lab 9a. Linear Predictive Coding for Speech Processing EE275Lab October 27, 2007 Lab 9a. Linear Predictive Coding for Speech Processing Pitch Period Impulse Train Generator Voiced/Unvoiced Speech Switch Vocal Tract Parameters Time-Varying Digital Filter H(z)

More information

The Z-Transform. For a phasor: X(k) = e jωk. We have previously derived: Y = H(z)X

The Z-Transform. For a phasor: X(k) = e jωk. We have previously derived: Y = H(z)X The Z-Transform For a phasor: X(k) = e jωk We have previously derived: Y = H(z)X That is, the output of the filter (Y(k)) is derived by multiplying the input signal (X(k)) by the transfer function (H(z)).

More information

Speech Spectra and Spectrograms

Speech Spectra and Spectrograms ACOUSTICS TOPICS ACOUSTICS SOFTWARE SPH301 SLP801 RESOURCE INDEX HELP PAGES Back to Main "Speech Spectra and Spectrograms" Page Speech Spectra and Spectrograms Robert Mannell 6. Some consonant spectra

More information

COMP 546, Winter 2018 lecture 19 - sound 2

COMP 546, Winter 2018 lecture 19 - sound 2 Sound waves Last lecture we considered sound to be a pressure function I(X, Y, Z, t). However, sound is not just any function of those four variables. Rather, sound obeys the wave equation: 2 I(X, Y, Z,

More information

Numerical Simulation of Acoustic Characteristics of Vocal-tract Model with 3-D Radiation and Wall Impedance

Numerical Simulation of Acoustic Characteristics of Vocal-tract Model with 3-D Radiation and Wall Impedance APSIPA AS 2011 Xi an Numerical Simulation of Acoustic haracteristics of Vocal-tract Model with 3-D Radiation and Wall Impedance Hiroki Matsuzaki and Kunitoshi Motoki Hokkaido Institute of Technology, Sapporo,

More information

(Refer Slide Time: )

(Refer Slide Time: ) Digital Signal Processing Prof. S. C. Dutta Roy Department of Electrical Engineering Indian Institute of Technology, Delhi FIR Lattice Synthesis Lecture - 32 This is the 32nd lecture and our topic for

More information

Superposition and Standing Waves

Superposition and Standing Waves Physics 1051 Lecture 9 Superposition and Standing Waves Lecture 09 - Contents 14.5 Standing Waves in Air Columns 14.6 Beats: Interference in Time 14.7 Non-sinusoidal Waves Trivia Questions 1 How many wavelengths

More information

Lecture 5: Jan 19, 2005

Lecture 5: Jan 19, 2005 EE516 Computer Speech Processing Winter 2005 Lecture 5: Jan 19, 2005 Lecturer: Prof: J. Bilmes University of Washington Dept. of Electrical Engineering Scribe: Kevin Duh 5.1

More information

CMPT 889: Lecture 8 Digital Waveguides

CMPT 889: Lecture 8 Digital Waveguides CMPT 889: Lecture 8 Digital Waveguides Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University February 10, 2012 1 Motion for a Wave For the string, we are interested in the

More information

Applications of Linear Prediction

Applications of Linear Prediction SGN-4006 Audio and Speech Processing Applications of Linear Prediction Slides for this lecture are based on those created by Katariina Mahkonen for TUT course Puheenkäsittelyn menetelmät in Spring 03.

More information

Sound, acoustics Slides based on: Rossing, The science of sound, 1990, and Pulkki, Karjalainen, Communication acoutics, 2015

Sound, acoustics Slides based on: Rossing, The science of sound, 1990, and Pulkki, Karjalainen, Communication acoutics, 2015 Acoustics 1 Sound, acoustics Slides based on: Rossing, The science of sound, 1990, and Pulkki, Karjalainen, Communication acoutics, 2015 Contents: 1. Introduction 2. Vibrating systems 3. Waves 4. Resonance

More information

Resonances and mode shapes of the human vocal tract during vowel production

Resonances and mode shapes of the human vocal tract during vowel production Resonances and mode shapes of the human vocal tract during vowel production Atle Kivelä, Juha Kuortti, Jarmo Malinen Aalto University, School of Science, Department of Mathematics and Systems Analysis

More information

Sound Propagation through Media. Nachiketa Tiwari Indian Institute of Technology Kanpur

Sound Propagation through Media. Nachiketa Tiwari Indian Institute of Technology Kanpur Sound Propagation through Media Nachiketa Tiwari Indian Institute of Technology Kanpur LECTURE-17 HARMONIC PLANE WAVES Introduction In this lecture, we discuss propagation of 1-D planar waves as they travel

More information

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Tuesday, March 3, 15

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Tuesday, March 3, 15 Perturbation Theory: Why do /i/ and /a/ have the formants they have? Vibration: Harmonic motion time 1 2 3 4 5 - A x 0 + A + A Block resting on air hockey table, with a spring attaching it to the side

More information

M. Hasegawa-Johnson. DRAFT COPY.

M. Hasegawa-Johnson. DRAFT COPY. Lecture Notes in Speech Production, Speech Coding, and Speech Recognition Mark Hasegawa-Johnson University of Illinois at Urbana-Champaign February 7, 000 M. Hasegawa-Johnson. DRAFT COPY. Chapter Linear

More information

Formant Analysis using LPC

Formant Analysis using LPC Linguistics 582 Basics of Digital Signal Processing Formant Analysis using LPC LPC (linear predictive coefficients) analysis is a technique for estimating the vocal tract transfer function, from which

More information

Linear Prediction 1 / 41

Linear Prediction 1 / 41 Linear Prediction 1 / 41 A map of speech signal processing Natural signals Models Artificial signals Inference Speech synthesis Hidden Markov Inference Homomorphic processing Dereverberation, Deconvolution

More information

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Wednesday, March 9, 16

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Wednesday, March 9, 16 Perturbation Theory: Why do /i/ and /a/ have the formants they have? Components of Oscillation 1. Springs resist displacement from rest position springs return to rest position ẋ = k(x x 0 ) Stiffness

More information

PHY 103 Impedance. Segev BenZvi Department of Physics and Astronomy University of Rochester

PHY 103 Impedance. Segev BenZvi Department of Physics and Astronomy University of Rochester PHY 103 Impedance Segev BenZvi Department of Physics and Astronomy University of Rochester Reading Reading for this week: Hopkin, Chapter 1 Heller, Chapter 1 2 Waves in an Air Column Recall the standing

More information

Determining the Shape of a Human Vocal Tract From Pressure Measurements at the Lips

Determining the Shape of a Human Vocal Tract From Pressure Measurements at the Lips Determining the Shape of a Human Vocal Tract From Pressure Measurements at the Lips Tuncay Aktosun Technical Report 2007-01 http://www.uta.edu/math/preprint/ Determining the shape of a human vocal tract

More information

Chapter 2 Speech Production Model

Chapter 2 Speech Production Model Chapter 2 Speech Production Model Abstract The continuous speech signal (air) that comes out of the mouth and the nose is converted into the electrical signal using the microphone. The electrical speech

More information

Physics 202 Homework 7

Physics 202 Homework 7 Physics 202 Homework 7 May 15, 2013 1. On a cello, the string with the largest linear density (0.0156 kg/m) is the C 171 newtons string. This string produces a fundamental frequency of 65.4 Hz and has

More information

L8: Source estimation

L8: Source estimation L8: Source estimation Glottal and lip radiation models Closed-phase residual analysis Voicing/unvoicing detection Pitch detection Epoch detection This lecture is based on [Taylor, 2009, ch. 11-12] Introduction

More information

Written homework due in class on Monday Online homework due on Tuesday by 8 am

Written homework due in class on Monday Online homework due on Tuesday by 8 am Homework #13 Written homework due in class on Monday Online homework due on Tuesday by 8 am Problem 15.35: use v sound = 343 m/s Final exam Thu May 14 from 1:30 to 3:30 pm (see info on blog) Boyden gym

More information

Physical Modeling Synthesis

Physical Modeling Synthesis Physical Modeling Synthesis ECE 272/472 Audio Signal Processing Yujia Yan University of Rochester Table of contents 1. Introduction 2. Basics of Digital Waveguide Synthesis 3. Fractional Delay Line 4.

More information

COMP Signals and Systems. Dr Chris Bleakley. UCD School of Computer Science and Informatics.

COMP Signals and Systems. Dr Chris Bleakley. UCD School of Computer Science and Informatics. COMP 40420 2. Signals and Systems Dr Chris Bleakley UCD School of Computer Science and Informatics. Scoil na Ríomheolaíochta agus an Faisnéisíochta UCD. Introduction 1. Signals 2. Systems 3. System response

More information

ELEG 305: Digital Signal Processing

ELEG 305: Digital Signal Processing ELEG 305: Digital Signal Processing Lecture 19: Lattice Filters Kenneth E. Barner Department of Electrical and Computer Engineering University of Delaware Fall 2008 K. E. Barner (Univ. of Delaware) ELEG

More information

Department of Electrical and Computer Engineering Digital Speech Processing Homework No. 7 Solutions

Department of Electrical and Computer Engineering Digital Speech Processing Homework No. 7 Solutions Problem 1 Department of Electrical and Computer Engineering Digital Speech Processing Homework No. 7 Solutions Linear prediction analysis is used to obtain an eleventh-order all-pole model for a segment

More information

Frequency Domain Speech Analysis

Frequency Domain Speech Analysis Frequency Domain Speech Analysis Short Time Fourier Analysis Cepstral Analysis Windowed (short time) Fourier Transform Spectrogram of speech signals Filter bank implementation* (Real) cepstrum and complex

More information

Phase difference plays an important role in interference. Recalling the phases in (3.32) and (3.33), the phase difference, φ, is

Phase difference plays an important role in interference. Recalling the phases in (3.32) and (3.33), the phase difference, φ, is Phase Difference Phase difference plays an important role in interference. Recalling the phases in (3.3) and (3.33), the phase difference, φ, is φ = (kx ωt + φ 0 ) (kx 1 ωt + φ 10 ) = k (x x 1 ) + (φ 0

More information

Topic 3: Fourier Series (FS)

Topic 3: Fourier Series (FS) ELEC264: Signals And Systems Topic 3: Fourier Series (FS) o o o o Introduction to frequency analysis of signals CT FS Fourier series of CT periodic signals Signal Symmetry and CT Fourier Series Properties

More information

Chapter 12 Sound in Medicine

Chapter 12 Sound in Medicine Infrasound < 0 Hz Earthquake, atmospheric pressure changes, blower in ventilator Not audible Headaches and physiological disturbances Sound 0 ~ 0,000 Hz Audible Ultrasound > 0 khz Not audible Medical imaging,

More information

Acoustic tubes with maximal and minimal resonance frequencies

Acoustic tubes with maximal and minimal resonance frequencies Acoustic tubes with imal and minimal resonance frequencies B. De Boer Spuistraat 1, 11VT Amsterdam, Netherlands b.g.deboer@uva.nl 565 This paper presents a theoretical derivation of acoustic tract shapes

More information

DOING PHYSICS WITH MATLAB WAVE MOTION STANDING WAVES IN AIR COLUMNS

DOING PHYSICS WITH MATLAB WAVE MOTION STANDING WAVES IN AIR COLUMNS DOING PHYSICS WITH MATLAB WAVE MOTION STANDING WAVES IN AIR COLUMNS Ian Cooper School of Physics, University of Sydney ian.cooper@sydney.edu.au DOWNLOAD DIRECTORY FOR MATLAB SCRIPTS air_columns.m This

More information

Standing waves in air columns flute & clarinet same length, why can a much lower note be played on a clarinet? L. Closed at both ends

Standing waves in air columns flute & clarinet same length, why can a much lower note be played on a clarinet? L. Closed at both ends LECTURE 8 Ch 16 Standing waves in air columns flute & clarinet same length, why can a much lower note be played on a clarinet? L 1 Closed at both ends Closed at one end open at the other Open at both ends

More information

PHY 103 Impedance. Segev BenZvi Department of Physics and Astronomy University of Rochester

PHY 103 Impedance. Segev BenZvi Department of Physics and Astronomy University of Rochester PHY 103 Impedance Segev BenZvi Department of Physics and Astronomy University of Rochester Midterm Exam Proposed date: in class, Thursday October 20 Will be largely conceptual with some basic arithmetic

More information

CMPT 889: Lecture 9 Wind Instrument Modelling

CMPT 889: Lecture 9 Wind Instrument Modelling CMPT 889: Lecture 9 Wind Instrument Modelling Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University November 20, 2006 1 Scattering Scattering is a phenomenon in which the

More information

Numerical Sound Synthesis

Numerical Sound Synthesis Numerical Sound Synthesis Finite Difference Schemes and Simulation in Musical Acoustics Stefan Bilbao Acoustics and Fluid Dynamics Group/Music, University 01 Edinburgh, UK @WILEY A John Wiley and Sons,

More information

THE SYRINX: NATURE S HYBRID WIND INSTRUMENT

THE SYRINX: NATURE S HYBRID WIND INSTRUMENT THE SYRINX: NATURE S HYBRID WIND INSTRUMENT Tamara Smyth, Julius O. Smith Center for Computer Research in Music and Acoustics Department of Music, Stanford University Stanford, California 94305-8180 USA

More information

Math 231E, Lecture 25. Integral Test and Estimating Sums

Math 231E, Lecture 25. Integral Test and Estimating Sums Math 23E, Lecture 25. Integral Test and Estimating Sums Integral Test The definition of determining whether the sum n= a n converges is:. Compute the partial sums s n = a k, k= 2. Check that s n is a convergent

More information

THE SYRINX: NATURE S HYBRID WIND INSTRUMENT

THE SYRINX: NATURE S HYBRID WIND INSTRUMENT THE SYRINX: NTURE S HYBRID WIND INSTRUMENT Tamara Smyth, Julius O. Smith Center for Computer Research in Music and coustics Department of Music, Stanford University Stanford, California 94305-8180 US tamara@ccrma.stanford.edu,

More information

Physics 111. Lecture 31 (Walker: ) Wave Superposition Wave Interference Standing Waves Physics of Musical Instruments Temperature

Physics 111. Lecture 31 (Walker: ) Wave Superposition Wave Interference Standing Waves Physics of Musical Instruments Temperature Physics 111 Lecture 31 (Walker: 14.7-8) Wave Superposition Wave Interference Physics of Musical Instruments Temperature Superposition and Interference Waves of small amplitude traveling through the same

More information

Scattering. N-port Parallel Scattering Junctions. Physical Variables at the Junction. CMPT 889: Lecture 9 Wind Instrument Modelling

Scattering. N-port Parallel Scattering Junctions. Physical Variables at the Junction. CMPT 889: Lecture 9 Wind Instrument Modelling Scattering CMPT 889: Lecture 9 Wind Instrument Modelling Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser niversity November 2, 26 Scattering is a phenomenon in which the wave

More information

Two critical areas of change as we diverged from our evolutionary relatives: 1. Changes to peripheral mechanisms

Two critical areas of change as we diverged from our evolutionary relatives: 1. Changes to peripheral mechanisms Two critical areas of change as we diverged from our evolutionary relatives: 1. Changes to peripheral mechanisms 2. Changes to central neural mechanisms Chimpanzee vs. Adult Human vocal tracts 1 Human

More information

Z - Transform. It offers the techniques for digital filter design and frequency analysis of digital signals.

Z - Transform. It offers the techniques for digital filter design and frequency analysis of digital signals. Z - Transform The z-transform is a very important tool in describing and analyzing digital systems. It offers the techniques for digital filter design and frequency analysis of digital signals. Definition

More information

Improved Method for Epoch Extraction in High Pass Filtered Speech

Improved Method for Epoch Extraction in High Pass Filtered Speech Improved Method for Epoch Extraction in High Pass Filtered Speech D. Govind Center for Computational Engineering & Networking Amrita Vishwa Vidyapeetham (University) Coimbatore, Tamilnadu 642 Email: d

More information

Topic 7. Convolution, Filters, Correlation, Representation. Bryan Pardo, 2008, Northwestern University EECS 352: Machine Perception of Music and Audio

Topic 7. Convolution, Filters, Correlation, Representation. Bryan Pardo, 2008, Northwestern University EECS 352: Machine Perception of Music and Audio Topic 7 Convolution, Filters, Correlation, Representation Short time Fourier Transform Break signal into windows Calculate DFT of each window The Spectrogram spectrogram(y,1024,512,1024,fs,'yaxis'); A

More information

Thursday, October 29, LPC Analysis

Thursday, October 29, LPC Analysis LPC Analysis Prediction & Regression We hypothesize that there is some systematic relation between the values of two variables, X and Y. If this hypothesis is true, we can (partially) predict the observed

More information

Music 206: Digital Waveguides

Music 206: Digital Waveguides Music 206: Digital Waveguides Tamara Smyth, trsmyth@ucsd.edu Department of Music, University of California, San Diego (UCSD) January 22, 2016 1 Motion for a Wave The 1-dimensional digital waveguide model

More information

Lecture 19 IIR Filters

Lecture 19 IIR Filters Lecture 19 IIR Filters Fundamentals of Digital Signal Processing Spring, 2012 Wei-Ta Chu 2012/5/10 1 General IIR Difference Equation IIR system: infinite-impulse response system The most general class

More information

19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 NUMERICAL SIMULATION OF THE ACOUSTIC WAVES PROPAGATION IN A STANDING WAVE TUBE

19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 NUMERICAL SIMULATION OF THE ACOUSTIC WAVES PROPAGATION IN A STANDING WAVE TUBE 19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 27 NUMERICAL SIMULATION OF THE ACOUSTIC WAVES PROPAGATION IN A STANDING WAVE TUBE PACS: 43.2.Ks Juliá Sanchis, Ernesto 1 ; Segura Alcaraz,

More information

Resonance on Air Column

Resonance on Air Column Resonance on Air Column Objectives a. To measure the speed of sound with the help of sound wave resonance in air column inside the tube with one end closed. b. To do error analysis of speed of sound measurement.

More information

Voiced Speech. Unvoiced Speech

Voiced Speech. Unvoiced Speech Digital Speech Processing Lecture 2 Homomorphic Speech Processing General Discrete-Time Model of Speech Production p [ n] = p[ n] h [ n] Voiced Speech L h [ n] = A g[ n] v[ n] r[ n] V V V p [ n ] = u [

More information

Physics 101: Lecture 22 Sound

Physics 101: Lecture 22 Sound EXAM III Physics 101: Lecture 22 Sound Today s lecture will cover Textbook Chapter 12 Physics 101: Lecture 22, Pg 1 Standing Waves Fixed Endpoints Fundamental n=1 (2 nodes) l n = 2L/n f n = n v / (2L)

More information

Speech Coding. Speech Processing. Tom Bäckström. October Aalto University

Speech Coding. Speech Processing. Tom Bäckström. October Aalto University Speech Coding Speech Processing Tom Bäckström Aalto University October 2015 Introduction Speech coding refers to the digital compression of speech signals for telecommunication (and storage) applications.

More information

Introduction to Acoustics Exercises

Introduction to Acoustics Exercises . 361-1-3291 Introduction to Acoustics Exercises 1 Fundamentals of acoustics 1. Show the effect of temperature on acoustic pressure. Hint: use the equation of state and the equation of state at equilibrium.

More information

Physics 101: Lecture 22 Sound

Physics 101: Lecture 22 Sound EXAM III Physics 101: Lecture 22 Sound Today s lecture will cover Textbook Chapter 12 Physics 101: Lecture 22, Pg 1 Speed of Sound Recall for pulse on string: v = sqrt(t / m) For fluids: v = sqrt(b/r)

More information

Harmonic motion. time 1 - A. Wednesday, September 30, 2009

Harmonic motion. time 1 - A. Wednesday, September 30, 2009 Harmonic motion time 1 2 3 4 5 - A x 0 + A + A Block resting on air hockey table, with a spring attaching it to the side of the table. Such systems are effectively frictionless. Block will oscillate about

More information

16 SUPERPOSITION & STANDING WAVES

16 SUPERPOSITION & STANDING WAVES Chapter 6 SUPERPOSITION & STANDING WAVES 6. Superposition of waves Principle of superposition: When two or more waves overlap, the resultant wave is the algebraic sum of the individual waves. Illustration:

More information

LECTURE 5 WAVES ON STRINGS & HARMONIC WAVES. Instructor: Kazumi Tolich

LECTURE 5 WAVES ON STRINGS & HARMONIC WAVES. Instructor: Kazumi Tolich LECTURE 5 WAVES ON STRINGS & HARMONIC WAVES Instructor: Kazumi Tolich Lecture 5 2 Reading chapter 14.2 14.3 Waves on a string Speed of waves on a string Reflections Harmonic waves Speed of waves 3 The

More information

Nature of diffraction. Diffraction

Nature of diffraction. Diffraction Nature of diffraction Diffraction From Grimaldi to Maxwell Definition of diffraction diffractio, Francesco Grimaldi (1665) The effect is a general characteristics of wave phenomena occurring whenever a

More information

Phys101 Lectures 28, 29. Wave Motion

Phys101 Lectures 28, 29. Wave Motion Phys101 Lectures 8, 9 Wave Motion Key points: Types of Waves: Transverse and Longitudinal Mathematical Representation of a Traveling Wave The Principle of Superposition Standing Waves; Resonance Ref: 11-7,8,9,10,11,16,1,13,16.

More information

Physics 3312 Lecture 7 February 6, 2019

Physics 3312 Lecture 7 February 6, 2019 Physics 3312 Lecture 7 February 6, 2019 LAST TIME: Reviewed thick lenses and lens systems, examples, chromatic aberration and its reduction, aberration function, spherical aberration How do we reduce spherical

More information

FORMANTS AND VOWEL SOUNDS BY THE FINITE ELEMENT METHOD

FORMANTS AND VOWEL SOUNDS BY THE FINITE ELEMENT METHOD FORMANTS AND VOWEL SOUNDS BY THE FINITE ELEMENT METHOD Antti Hannukainen, Teemu Lukkari, Jarmo Malinen and Pertti Palo 1 Institute of Mathematics P.O.Box 1100, FI-02015 Helsinki University of Technology,

More information

Physics 142 Mechanical Waves Page 1. Mechanical Waves

Physics 142 Mechanical Waves Page 1. Mechanical Waves Physics 142 Mechanical Waves Page 1 Mechanical Waves This set of notes contains a review of wave motion in mechanics, emphasizing the mathematical formulation that will be used in our discussion of electromagnetic

More information

LECTURE NOTES IN AUDIO ANALYSIS: PITCH ESTIMATION FOR DUMMIES

LECTURE NOTES IN AUDIO ANALYSIS: PITCH ESTIMATION FOR DUMMIES LECTURE NOTES IN AUDIO ANALYSIS: PITCH ESTIMATION FOR DUMMIES Abstract March, 3 Mads Græsbøll Christensen Audio Analysis Lab, AD:MT Aalborg University This document contains a brief introduction to pitch

More information

Lab 4: Quantization, Oversampling, and Noise Shaping

Lab 4: Quantization, Oversampling, and Noise Shaping Lab 4: Quantization, Oversampling, and Noise Shaping Due Friday 04/21/17 Overview: This assignment should be completed with your assigned lab partner(s). Each group must turn in a report composed using

More information

DOING PHYSICS WITH MATLAB WAVE MOTION

DOING PHYSICS WITH MATLAB WAVE MOTION DOING PHYSICS WITH MATLAB WAVE MOTION THE [1D] SCALAR WAVE EQUATION THE FINITE DIFFERENCE TIME DOMAIN METHOD Ian Cooper School of Physics, University of Sydney ian.cooper@sydney.edu.au DOWNLOAD DIRECTORY

More information

Sound Waves. Sound waves are longitudinal waves traveling through a medium Sound waves are produced from vibrating objects.

Sound Waves. Sound waves are longitudinal waves traveling through a medium Sound waves are produced from vibrating objects. Sound Waves Sound waves are longitudinal waves traveling through a medium Sound waves are produced from vibrating objects Introduction Sound Waves: Molecular View When sound travels through a medium, there

More information

Lesson 1. Optimal signalbehandling LTH. September Statistical Digital Signal Processing and Modeling, Hayes, M:

Lesson 1. Optimal signalbehandling LTH. September Statistical Digital Signal Processing and Modeling, Hayes, M: Lesson 1 Optimal Signal Processing Optimal signalbehandling LTH September 2013 Statistical Digital Signal Processing and Modeling, Hayes, M: John Wiley & Sons, 1996. ISBN 0471594318 Nedelko Grbic Mtrl

More information

6.730 Physics for Solid State Applications

6.730 Physics for Solid State Applications 6.730 Physics for Solid State Applications Lecture 8: Lattice Waves in 1D Monatomic Crystals Outline Overview of Lattice Vibrations so far Models for Vibrations in Discrete 1-D Lattice Example of Nearest

More information

Producing a Sound Wave. Chapter 14. Using a Tuning Fork to Produce a Sound Wave. Using a Tuning Fork, cont.

Producing a Sound Wave. Chapter 14. Using a Tuning Fork to Produce a Sound Wave. Using a Tuning Fork, cont. Producing a Sound Wave Chapter 14 Sound Sound waves are longitudinal waves traveling through a medium A tuning fork can be used as an example of producing a sound wave Using a Tuning Fork to Produce a

More information

Linear Prediction: The Problem, its Solution and Application to Speech

Linear Prediction: The Problem, its Solution and Application to Speech Dublin Institute of Technology ARROW@DIT Conference papers Audio Research Group 2008-01-01 Linear Prediction: The Problem, its Solution and Application to Speech Alan O'Cinneide Dublin Institute of Technology,

More information

Chapter 16 Traveling Waves

Chapter 16 Traveling Waves Chapter 16 Traveling Waves GOALS When you have mastered the contents of this chapter, you will be able to achieve the following goals: Definitions Define each of the following terms as it is used in physics,

More information

8 M. Hasegawa-Johnson. DRAFT COPY.

8 M. Hasegawa-Johnson. DRAFT COPY. Lecture Notes in Speech Production, Speech Coding, and Speech Recognition Mark Hasegawa-Johnson University of Illinois at Urbana-Champaign February 7, 2000 8 M. Hasegawa-Johnson. DRAFT COPY. Chapter 2

More information

Topic 4: Waves 4.3 Wave characteristics

Topic 4: Waves 4.3 Wave characteristics Guidance: Students will be expected to calculate the resultant of two waves or pulses both graphically and algebraically Methods of polarization will be restricted to the use of polarizing filters and

More information

Algorithms for NLP. Speech Signals. Taylor Berg-Kirkpatrick CMU Slides: Dan Klein UC Berkeley

Algorithms for NLP. Speech Signals. Taylor Berg-Kirkpatrick CMU Slides: Dan Klein UC Berkeley Algorithms for NLP Speech Signals Taylor Berg-Kirkpatrick CMU Slides: Dan Klein UC Berkeley Maximum Entropy Models Improving on N-Grams? N-grams don t combine multiple sources of evidence well P(construction

More information

Chapter 10 Applications in Communications

Chapter 10 Applications in Communications Chapter 10 Applications in Communications School of Information Science and Engineering, SDU. 1/ 47 Introduction Some methods for digitizing analog waveforms: Pulse-code modulation (PCM) Differential PCM

More information

Femtochemistry. Mark D. Ellison Department of Chemistry Wittenberg University Springfield, OH

Femtochemistry. Mark D. Ellison Department of Chemistry Wittenberg University Springfield, OH Femtochemistry by Mark D. Ellison Department of Chemistry Wittenberg University Springfield, OH 45501 mellison@wittenberg.edu Copyright Mark D. Ellison, 2002. All rights reserved. You are welcome to use

More information

Lecture 5: GMM Acoustic Modeling and Feature Extraction

Lecture 5: GMM Acoustic Modeling and Feature Extraction CS 224S / LINGUIST 285 Spoken Language Processing Andrew Maas Stanford University Spring 2017 Lecture 5: GMM Acoustic Modeling and Feature Extraction Original slides by Dan Jurafsky Outline for Today Acoustic

More information

Lecture 18: Reflection and Impedance

Lecture 18: Reflection and Impedance Lecture 18: Reflection and Impedance Let us look again at the question of what happens when a sound wave in the air runs into the surface of a body of water (or a wall, or glass, or whatever). How much

More information

Reflection & Transmission

Reflection & Transmission Reflection & Transmission when end is fixed, reflected wave in inverted when end is free to move, reflected wave is not inverted General Physics 2 Waves & Sound 1 Reflection & Transmission when a wave

More information

6: STANDING WAVES IN STRINGS

6: STANDING WAVES IN STRINGS 6: STANDING WAVES IN STRINGS 1. THE STANDING WAVE APPARATUS It is difficult to get accurate results for standing waves with the spring and stopwatch (first part of the lab). In contrast, very accurate

More information

GATE EE Topic wise Questions SIGNALS & SYSTEMS

GATE EE Topic wise Questions SIGNALS & SYSTEMS www.gatehelp.com GATE EE Topic wise Questions YEAR 010 ONE MARK Question. 1 For the system /( s + 1), the approximate time taken for a step response to reach 98% of the final value is (A) 1 s (B) s (C)

More information

31545 Medical Imaging systems

31545 Medical Imaging systems Simulation of ultrasound systems and non-linear imaging 545 Medical Imaging systems Lecture 9: Simulation of ultrasound systems and non-linear imaging Jørgen Arendt Jensen Department of Electrical Engineering

More information

Nicholas J. Giordano. Chapter 13 Sound

Nicholas J. Giordano.  Chapter 13 Sound Nicholas J. Giordano www.cengage.com/physics/giordano Chapter 13 Sound Sound Sounds waves are an important example of wave motion Sound is central to hearing, speech, music and many other daily activities

More information

Activity Template. Drexel-SDP GK-12 ACTIVITY

Activity Template. Drexel-SDP GK-12 ACTIVITY Activity Template Drexel-SDP GK-12 ACTIVITY Subject Area(s): Sound Associated Unit: None Associated Lesson: None Activity Title: Density and Pitch, is there a relationship? Grade Level: 8 (7-9) Activity

More information

Last time: small acoustics

Last time: small acoustics Last time: small acoustics Voice, many instruments, modeled by tubes Traveling waves in both directions yield standing waves Standing waves correspond to resonances Variations from the idealization give

More information