Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2...

21
Winter Semester 2006/7 Computational Physics I Lecture 13 1 Waves and Music 2 y t 2 = c 2 2 y x 2 Basic equation in 1-D y i-1 y i y i+1 x y Tsin i T i T Tsin i+1 μ x Forces on a short segment of string The force on segment i comes from the neighboring segments. (μ x ) d 2 y i dt 2 = T sin i + 1 T sin i 1

Transcript of Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2...

Page 1: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 1

Waves and Music

2y

t2= c2

2y

x2 Basic equation in 1-D

yi-1

yi

yi+1

x

y

Tsin iT

i

TTsin i+1

μ xForces on a short

segment of string

The force on segment i comes from the neighboring segments.

(μ x)d2yidt2

= T sin i+1 T sin i 1

Page 2: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 2

Waves on a string

sin i+1yi+1 yi

xsin i

yi yi 1x

2yit2

T

μ

yi+1 2yi + yi 1

( x)2T

μ

2yix2

Basic equation in 1-D

yi-1

yi

yi+1

x

y

Tsin iT

i

TTsin i+1

μ x

Solutions are functions of the form:

y = f (x ± ct) c =T

μ

Page 3: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 3

Waves on a string

Treat x,t as discrete variables: x = i x t = n t

Then using our well known approximation:

y(i,n +1) 2y(i,n) + y(i,n 1)

( t)2c2

y(i +1,n) 2y(i,n) + y(i 1,n)

( x)2

Assuming we know the position of the string at time n-1,n, then

we can calculate at time n+1. Rearranging:

y(i,n +1) = 2[1 r2]y(i,n) y(i,n 1) + r2[y(i +1,n) + y(i 1,n)]

where

rc t

x

Page 4: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 4

Waves on a string

How to treat the ends of the string ? Different possibilities - start

with ends of string fixed:

y(0,n) = y(M,n) = 0 n M +1 grid points

We are not allowed to modify these endpoints.

Example: start with a Gaussian pulse at the center of the string.

Take

x = 0.01 M = 400 t = 0.01 c = 1

This yields r = 1, and the string length is 4 (somethings)

See ‘movie’

Page 5: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 5

Waves on a string

The simulation looks quite accurate. How accurate is it ? Difficultyhere is that there are two types of steps, t, x. We spefically

chose the values so that r=1. Why ?

The information from our approximation only moves one grid point

at a time (information from i shared with i-1,i+1). If the speed of

the wave is great than this, then the algorithm cannot keep up and

the result is a diverging series.

Let’s look in more detail - von Neumann analysis and Courant

condition

Page 6: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 6

Partial Differential Equations

General Classes:

• hyperbolic, e.g., wave equation

• Parabolic, e.g., diffusion equation

• elliptic, e.g., Poisson equation

2y

t2= c2

2y

x2

y

t=

xD

y

x

2u

x2+

2u

y2= (x,y)

Boundary value problems: wave & diffusion equation need

information on y at some t, then can propagate. Poisson equation

needs information on a spatial boundary, and static slotuion for

interior points determined.

Page 7: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 7

Partial Differential Equations

We have seen examples of initial and boundary value problems.

The boundary value problems are typically stable, and the task is

usually to optimize speed and memory allocation.

For initial value problems, stability is a key issue as we have seen

before.

The 1-D wave equation is a flux-conservative equation

2u

t2 = c22u

x2 can be rewritten as a set of two equations :

r

t= c

s

x

s

t= c

r

x with r c

u

x , s

u

t

define

u t = (r,s)

F (

u ) =0 c

c 0

u

then

u

t=

F (

u )x

Page 8: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 8

Simple Example

Take the simplest flux-conservative equation - u scalar

u

t= c

u

x

Forward time, centered space FTCS technique:

u( j,n +1) u( j,n)t

= cu( j +1,n) u( j 1,n)

2 x

This method turns out to be unstable. Why ?

Page 9: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 9

von Neumann Stability

Imagine that the coefficients of the difference equation are so

slowly varying that we can consider them constant in space and

time. Then, the independent solutions of

u( j,n +1) u( j,n)t

= cu( j +1,n) u( j 1,n)

2 x

are of the form u( j,n) =neikj x

Where k is real and generally complex. Substituting into the

equation above yields:

(k) = 1 ic t

xsink x

The magnitude of >1 for all k 0, so the method is unstable. If

<1, then the magnitude of the wave will decrease with time.

Page 10: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 10

Lax Method

The problem with the FTCS algorithm is cured by Lax by making

the following substitution:

u( j,n +1) =12u( j +1,n) + u( j 1,n)( )

c t

2 xu( j +1,n) u( j 1,n)( )

u( j,n)12u( j +1,n) + u( j 1,n)( )

This yields

u( j,n) =neikj xSubstituting

gives = cosk x ic t

xsink x

The stability criterion implies2 1

c t

x1

as claimed. So, the Lax algorithm can be made stable.

Courant

condition

Page 11: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 11

Lax Method

Why does the Lax method work ? Rewrite

u( j,n +1) u( j,n)t

= cu( j +1,n) u( j 1,n)

2 x

+12u( j +1,n) + u( j 1,n) 2u( j,n)

t

Which is the FTCS representation of

u

t= c

u

x+

x( )2

2 t

2u

x2

A diffusion term is added to the equation which stabilizes the

solution. Note that for the amplitude of the wave will

slowly decrease but this is usually not serious because x is very

small (wavelengths < k x cannot be represented).

2=c t

x< 1

Page 12: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 12

Wave Equation

The von Neumann analysis on the wave equation yields exactly

the same Courant condition when using our finite difference

technique:

y(i,n +1) = 2[1 r2]y(i,n) y(i,n 1) + r2[y(i +1,n) + y(i 1,n)]

where

rc t

x

i.e., you have to use r 1.

Back to our pulse on the string. Try a few different things:

1. The string is made of two parts with different velocities (e.g.,

different mass densities)

2. The ends are free - not tied down.

See ‘movie’

Page 13: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 13

Frequency Spectrum

Consider now a fixed point on the string and see how the

amplitude evolves with time. We go back to the string with fixed

ends for this:

This is for a point 1/4 of the

distance from the left edge of

the string. Let’s extract the

power spectrum from a Fourier

analysis (see last lecture).

init

ial

left

mo

ver

refe

lcte

d l

eft

mo

ver

refl

ec

ted

rig

ht

mo

ve

r

Page 14: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 14

Frequency Spectrum

P(0) = P( f0) =1

N 2 C02

P( fk ) =1

N 2 Ck2

+ CN k2[ ] k = 1,2,…,

N

21

P( fc ) = P( fN / 2) =1

N 2 CN / 22

Recall:

What do we expect ? String has length 4, so the expected

frequencies are given by

f =c

= Nc

(2L)= N

18

(Hz)L

Page 15: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 15

Frequency Spectrum

From Gaussian

pulse at center

From displaced

Gaussian pulse

See different multiples of fundamental frequency, but not all

Page 16: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 16

Frequency Spectrum

Why are some of the frequency components missing ? Has to do

with the symmetry of the starting wavepacket.

The wavepacket is symmetric

about the center. The Fourier

components will be preserved in

time, so we can see which are

present at the start. Clearly, only

the frequency components

corresponding to standing waves

which are symmetric about 0 will

survive.

f =c

= Nc

(2L)

= L,L /2,... missing, or N = 2,4,...

Initial pulse makes a big

difference in which frequency

components present

Page 17: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 17

More Realistic String

For a more realistic string, we need to add some more effects,

such as stiffness (force opposing the displacement in addition to

tension) and damping due to frictional losses. Start with stiffness:

2y

t2 = c22y

x2

2y

t2 = c22y

x2 L24y

x4

is the (dimensionless) stiffness parameter

L is the length of the string

The discrete approximation for the 4th derivative is4y

x4y( j + 2,n) 4y( j +1,n) + 6y( j,n) 4y( j 1,n) + y( j 2,n)

( x)4

Some algebra yieldsy( j,n + 2) = [2 2r2 6 r2M 2]y( j,n) y( j,n 1)

+ r2[1 + 4 M 2][y( j + 1,n) + y( j 1,n)] r2M 2[y( j + 2,n) + y(i 2,n)]

where M = L / x

Page 18: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 18

Stiff string

We have to decide how to handle the ends since now the grid

points one removed from the end sees a fictitious grid point one

step beyond the end (because of j±2) terms. Solution:

y( 1,n) = y(+1,n) y(M + 1,n) = y(M 1,n) (Hinge mechanism)

Take some parameters from a typical grand piano

0.58.7 10-43800.092093C7

0.53.8 10-53300.62262C4

0.57.5 10-62501.965.4C2

b (s-1)C(m/s)L(m)F(Hz)Note

Let’s look at the power spectrum which results.

Page 19: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 19

Stiff spring

From ‘Numerical simulations of piano strings I. A physical model for a struck string using finite differences

methods’, A. Chaigne, A. Askenfelt, J. Acoust. Soc. Am. 95 (2) 1994,

find out there is a maximum number of spatial steps for numerical

stability (after seeing my simulations diverge):

Nmax =1 + 1 + 16 2[ ]

8

12

where =fS

2 f1

fS is the sampling frequency

f1 is the fundamental frequency

For our string, f1=262 Hz, and fs=10 kHz

Page 20: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 20

Stiff spring

Comparison C2 from table (blue) with zero stiffness (red):

Dispersion is introduced in the stiff spring, because the effective

wave speed becomes frequency dependent. The frequency

components for the stiff string are shifted higher. Introduces

characteristic sound.

Page 21: Waves and Music - Startseitejingliu/ECPI/lectures/Lecture13.pdfWaves and Music 2y t2 = c2 2y x2 Basic equation in 1-D y i-1 y i y i+1 x y T Tsin i i T Tsin i+1 μ x ... The von Neumann

Winter Semester 2006/7 Computational Physics I Lecture 13 21

Damping

Frictional forces will add some damping to the amplitude as a

function of time. Chaigne, Askenfelt describe the full simulation of

a piano string as follows:2y

t2= c2

2y

x2L2

4y

x4

2b1

y

t+ 2b3

3y

t3+ f (x,x0,t)

{

Damping terms

{

Hammer excitation