I am not sure has the following observation been made:
When the Jacobi Method is used to approximate the solution of Laplace’s Equation, if the initial temperature distribution is given by
, then the iterations
are also approximations to the solution,
, of the Heat Equation, assuming the initial temperature distribution is
.
I first considered such a thought while looking at approximations to the solution of Laplace’s Equation on a thin plate. The way I implemented the approximations was I wrote the iterations onto an Excel worksheet, and also included conditional formatting to represent the areas of hotter and colder, and the following kind of output was produced:
Let me say before I go on that this was an implementation of the Gauss-Seidel Method rather than the Jacobi Method, and furthermore the stopping rule used was the rather crude .
However, do not the iterations resemble the flow of heat from the heat source on the bottom through the plate? The aim of this post is to investigate this further. All boundaries will be assumed uninsulated to ease analysis.
Discretisation
Consider a thin rod of length . If we mesh the rod into
pieces of equal length
, we have discretised the rod, into segments of length
, together with ‘nodes’
.
Suppose are interested in the temperature of the rod at a point ,
. We can instead consider a sampling of
, at the points
:
.
Similarly we can mesh a plate of dimensions into an
rectangular grid, with each rectangle of area
, where
and
, together with nodes
, and we can study the temperature of the plate at a point
by sampling at the points
:
.
We can also mesh a box of dimension into an
3D grid, with each rectangular box of volume
, where
,
, and
, together with nodes
, and we can study the temperature of the box at the point
by sampling at the points
:
.
Finite Differences
How the temperature evolves is given by partial differential equations, expressing relationships between and its rates of change.
Consider some real-valued function . Its derivative at
— its rate of change with respect to
— is defined as
Another way of thinking about this is that we have the following limit as :
,
which implies — by the definition of a limit — that for sufficiently close to zero,
.
This is known as the forward difference approximation, and here
,
will be used.
There is also a backward difference approximation (comes from approaching from below):
,
which will be used in the sequel. We will not worry at this time about how accurate or otherwise these approximations are although if we know our calculus, we know they should be good if the second derivative is small near .
Similarly, as is the derivative of
, i.e.
,
we have
.
Now use the backwards forward difference approximation on and
:
.
Laplace’s Equation
Rod
The equilibrium temperature distribution on an (insulated) rod, connected to heat sources at and
, of temperatures
and
, is given by the solution of the differential equation:
,
,
.
This can be derived by considering a small length element , and considering that, for equilibrium, the heat flowing into
must equal the heat flowing out of
(else the heat — and therefore the temperature — in
is increasing/decreasing).
As a differential equation, it is very easy: it can be antidifferentiated directly. It is probably worth bringing in a small amount of geometric intuition at this point.
Recall that the derivative of with respect to
is not only the rate of change of
with respect to
, but also slope of the tangent of
. Therefore, the second derivative of the temperature with respect to distance is the rate of change of the slope of (the tangent to)
, and, as Laplace’s Equation says, for equilibrium, this is zero, i.e. the rate of change of slope doesn’t change, that is the slope is a constant, that is we have a line (for various technical reasons — let alone physical ones — the second derivative being zero doesn’t give a piecewise-line curve (derivative undefined at jumps)).
Therefore the temperature changes uniformly from to
, giving solution:
.
For example, for ,
and
:
Plate
Things are a little more complicated on a plate (uninsulated except at the edges) as the equilibrium temperature distribution is now the solution of a partial differential equation, known as Laplace’s Equation:
,
given.
Consider a grid point with temperature
:
Approximate the second derivatives at using forward differences:
and
.
If we assume that , and substitute these approximations into Laplace’s Equation, we find an equation whose solution approximates
:
.
Multiply both sides by and solve for
to find the Laplace Finite Difference Equation:
This approximate equation echoes something called the mean value property for harmonic functions.
Starting with an approximation to each of the , say all equal to zero, substituting these into the right hand side of this equation gives a better approximation. Iteratively feeding these approximations into the right hand side of this equation gives successively more accurate solutions to the this equation, and this iterative scheme, known as the Jacobi Method, converges to the exact solution of this Laplace Finite Difference Equation.
Heat Equation
The transient temperature distribution on an (insulated) plate, connected to heat sources at , is given by the solution of the differential equation, known as the Heat Equation:
,
,
given.
This can be derived by considering a small area element , and considering the relationship between the nett heat flowing into
and the resulting change in temperature.
As ,
,
that is the temperature does not change, the temperature distribution reaches steady or equilibrium state. Note if the left hand side is equal to zero, the equation reduces to Laplace’s Equation.
This means that if you solve the Heat Equation on a plate using (appropriate) finite differences, the temperatures converge to the same solutions as those of Laplace’s Equation (all else being equal).
The transient temperatures of the plate is a function:
.
We mesh up the domain using but also, for time,
. Write
Now use finite differences to approximate the heat equation at :
.
Via , this can be written as:
,
in short, a formula for the temperature at at time
, in terms of the temperature at that point — and the temperatures at the four adjacent points — at the previous time. This is the Heat Finite Difference Equation.
Now, is a system parameter. The dimensions of the plate are also a system parameter, and essentially
is determined by the number of internal gridpoints to be considered. The time step
is basically a free choice.
Note if
,
then the Heat Finite Difference Equation reads:
,
exactly the same as the Laplace Finite Difference Equation!
Therefore, suppose we have a plate with internal gridpoints spaced a distance apart, and the plate material parameter is
. Suppose we are interested in the steady state temperature distribution, and our initial approximation to the steady state distribution is given by
, then using the Laplace Finite Difference Equation, which converges to the steady state solution, also gives the transient temperatures of a plate with initial temperature
but at time steps of:
.
This means that when using the Jacobi Method (without over-relaxation) to approximate the steady state, the intermediate approximations do have physical meaning.
Leave a comment
Comments feed for this article