Sale!

PHYS512 Problem Set 7 for PDEs Solved

Original price was: $40.00.Current price is: $35.00.

Category:

Description

5/5 - (1 vote)

Problem 1:

Earlier in the course, I claimed that the leapfrog scheme
preserves energy. Show that this is true as long as the CFL condition is
satisfied. Recall that the leapfrog scheme is:
f(t + dt, x) − f(t − dt, x)
2dt = −v
f(t, x + dx) − f(t, x − dt)
2dx
In particular, we use calculate the spatial derivative at a point halfway
between the times at which we evaluate the solution. You may assume the
solution will look something like f(x, t) = ξ
t
exp(ikx) where in general ξ will
be complex and a function of k.

Problem 2:

Let’s use conjugate gradient to solve Laplace’s equation
with boundary conditions using Green’s functions. With a little cleverness,
we can actually do this without needing to set an exterior boundary. For
speed, let’s do this in two dimensions.

part a: First, we’ll figure out what V (r) looks like from a point charge.
Remember that a 2D point charge looks like a 3D line charge and so will
have a log behavior rather than 1/r. We also need to be careful about the
singularity at 0. While this can actually be written down properly with
some effort, a much easier trick is to note that away from the origin, each
point is the average of its neighbors.

By knowing the potential at (1,0) has
to be the average of its neighbors, we can work out the potential at the
origin. We’ll ignore 0 and set ρ to be the potential minus the average of
neighbors. If you rescale your potential so that ρ[0, 0] = 1 and V [0, 0] = 1
(recall that we can add an arbitrary offset to a potential without affecting
the physics of the situation), what is the potential V [1, 0] and V [2, 0]? To
sanity check your answer, the potential V [5, 0] should be around -1.05.
optional bonus: Just writing down a potential like this is pretty close.

However, if you look at the inferred charge, it is largely at [0,0], but not
entirely so. A way we can come up with a better guess is to look at our
inferred charge, guess what the potential from that inferred charge is using
our current Green’s function, and subtract that off. Repeat until happy.
Show that when you do this, after a few iterations the inferred charge away
from the origin has dropped significantly (not very many iterations buys
several orders of magnitude). You may notice edge effects in ρ, so feel free
to zero that charge out before calculating the corrections. Note that there is
a unique Green’s function, and so once you have carried out this calculation
1

you can save it and be done for all time. Just make sure you calculated for
an area at least as large as you’re likely to need.
part b: Now that we know what the potential from a point charge is,
we can calculate the potential everywhere in space from an arbitrary charge
distribution by convolving the charge by our hard-won but eternal Green’s
function. We can write this as V = G ~ ρ. where G is the Green’s function.

Even though we don’t usually think of it that way, this is indeed a matrix
equation and so can be solved using conjugate-gradient (or any other tool
you care to use). In this case, though, we start with the potential on some
surfaces, and want to find the charge distribution on those same surfaces.
Write a conjugate-gradient solver that solves for ρ on a mask given V on
that mask. Use your solver to find the charge on a square box held at a
potential of 1. Plot the charge density along one side of the box.

part c: Now that you have the charge, show the potential everywhere
in space. How close to constant is the potential in the interior of the box?
Now plot the x− and y−components of the field just outside the box. Do
they agree with what you expect? As a reminder, the boundary conditions
are that the field is perpendicular to any equipotential, and that standard
lore says that fields are stronger near points.

Final Comments:

The easiest way to solve this is to find the potential
everywhere in space and then read it out along the mask. For relativey
small masks, though, there’s no guarantee that this is the fastest way –
a brute force summation may win in some cases. Also note that we got
away with not having to specify an outer boundary condition.

As long as
you pulled a large enough region that the potential from your boundaries
doesn’t wrap around onto itself (if you’re using an FFT) then there’s no
edge where boundaries are specified. This is generally a good thing, since
our usual state of affairs is not to be sitting near the center of a grounded,
conducting box. Finally, you may have noticed that I played a bit fast and
loose with zero points.

In 3D, it’s perfectly sensible to set the potential at
infinity to zero, but we can’t do that in 2D since ln(x) unhappily diverges at
both large and small x. In some sense then “hold a box at fixed potential”
doesn’t even make sense (fixed relative to what?).

However, by setting the
potential of our Green’s function to 1 at the center, we have implicitly set a
zero point.
2