Elliptic equations represent steady state problems, such as temperature distribution in plate or rod, after sufficient time elapses to achieve steady state.

Heated Plate Example

The Laplace’s Equation is used here:

Consider a thin plate (thickness ) insulated on the front and back surfaces. A small element of width and can be described at steady state by heat flux into and out of the element:

At steady state, the flow of heat into the element over a unit time period must equal the flow out, as in

where represents heat flux.

Dividing by and and collecting terms yields:

Multiplying the first term by and the second by gives:

Dividing by and taking the limit results in

The relationship between flux and temperature is given by Fourier’s law of heat conduction:

where the temperature is defined as:

The term is sometimes written as a coefficient of thermal conductivity, .

Substituting into gives:

which is just the Laplace equation.

Solution

To solve problems like these, numerical methods based on finite differences representations are used. These are based on treating the plate as a grid of discrete points.

Central differences based on the grid scheme are:

and

which have errors of and . Substituting these expressions give:

For the square grid, , and by collection of terms, we have:

This relationship holds for all interior points on the plate and is referred to as the Laplacian difference equation.

Important: Boundary conditions along the edges of the plate must be specified to obtain a unique solution. The simplest case is where the temperature at the boundary is set at a fixed value (Dirichlet boundary condition):

For example, let’s consider grid point :

For our problem, and , so we have:

Applying this method at each grid point results in a system of 9 equations and 9 unknowns:

This can be solved using Gauss-Seidel or similar methods.

Secondary variables

Temperature is the primary variable in the heated plate problem because its distribution is described by the Laplace equation. However, we may have secondary variables of interest. For example, a secondary variable for the plate is the rate of heat flux across the plate’s surface. This can be calculated with Fourier’s law, , discussed above.

Centered finite-difference approximations for the first derivatives can be substituted to give the following heat flux values in and dimensions:

The resultant heat flux can be computed from these two quantities using where the direction of is given by:

With this, given some boundary conditions and a heat constant, we can find heat flux values at each point on the grid. For example, if we have and the same boundary conditions as above, grid point would have:

Neumann Boundary Conditions

Instead of constant boundary conditions, they can be based on derivative. For the heated plate specifying the derivative at the boundary is equivalent to specifying the flux at the boundary.

For the point , we can apply the Laplace equation to get:

Note that an imaginary point lying outside the plate is required for this equation. We can use this point to incorporate the derivative boundary condition into the problem by representing the first derivative in the dimension at by the finite divided difference:

which ban be solved for:

Now we have a relationship for that actually includes the derivative. It can be substituted to give:

Thus, we have incorporated the derivative into the balance. Similar relationships can be developed for derivative boundary conditions at the other edges.