Boundary value problems#
Another class of ODE problems are boundary-value problems in which we need to satisfy boundary conditions at different locations. The example we’ll use is a wave on a string, which is governed by the equation
where
For a normal mode of the string
There are two different techniques we can use to solve this: shooting or relaxation.
Shooting method#
In the shooting method, the idea is to start on one side, integrate across to the other boundary and then check whether the boundary condition is satisfied there. If not, we need to adjust either the conditions at the starting point or a parameter in the equations (here we’ll be adjusting the mode frequency
Since we have a second order differential equation, the first thing to do is to rewrite the equation as two first order ODEs,
At the left boundary,
So the procedure is:
Choose an initial guess for
and start at with and .Integrate the coupled ODEs across to
.Check whether
at and if not, adjust and try again.Repeat until the boundary condition at
is satisfied to some target accuracy or until the value of stops changing to some target accuracy.
Exercise: waves on a string
Implement the shooting method to find the first 6 eigenmodes and eigenfrequencies of the string. Start with a constant density string and check that you get the expected solution. Then try a density
You can use scipy.integrate.solve_ivp
to do the integration, and a root finder such as scipy.optimize.brentq
to find the value of
For example:
def do_integration(omega):
# Returns f(x=L) given the trial frequency omega
result = < do integration for this value of omega >
return < value of f at x=L >
# Search for the root between frequencies om1 and om2
omega = scipy.optimize.brentq(do_integration, om1, om2)
Relaxation method#
Relaxation methods take a different approach: guess the solution
For this method, we can work with the second order equation
Let’s assume that we know the frequency
where
We need to find the
and
We can find the root using Newton’s method. Given a current guess
Defining the Jacobian matrix
or
If the initial guess is good enough, this should converge on the correct solution.
Exercise: waves on a string with relaxation
Take one of the eigenfrequencies that you found in the previous exercise, and use the relaxation method to find the eigenfunction corresponding to that frequency.
Do you get good agreement with the eigenfunctions from the shooting method? How many grid points do you need to get a good solution? Does the starting guess make a difference?
You can calculate the Jacobian either by implementing the analytic Jacobian (you will see that the matrix is of tridiagonal form so fairly easy to calculate) or using finite differences.