NAG Library Chapter Introduction
d03 – Partial Differential Equations
1 Scope of the Chapter
This chapter is concerned with the numerical solution of partial differential equations.
Currently only solvers for parabolic and hyperbolic equations are included.
2 Background to the Problems
The definition of a partial differential equation problem includes not only the equation itself but also the domain of interest and appropriate subsidiary conditions. Indeed, partial differential equations are usually classified as elliptic, hyperbolic or parabolic according to the form of the equation
and the form of the subsidiary conditions which must be assigned to produce a well-posed problem. The functions in this chapter will often call upon functions from other chapters, such as
Chapter f04 (Simultaneous Linear Equations) and
Chapter d02 (Ordinary Differential Equations). Other chapters also contain relevant functions, in particular
Chapter d06 (Mesh Generation) and
Chapter f11 (Large Scale Linear Systems).
The classification of partial differential equations is easily described in the case of
linear equations of the
second order in two independent variables, i.e., equations of the form
where
,
,
,
,
,
and
are functions of
and
only. Equation
(1) is called elliptic, hyperbolic or parabolic according to whether
is positive, negative or zero, respectively. Useful definitions of the concepts of elliptic, hyperbolic and parabolic character can also be given for differential equations in more than two independent variables, for systems and for nonlinear differential equations.
For
elliptic equations, of which Laplace's equation
is the simplest example of second order, the subsidiary conditions take the form of
boundary conditions, i.e., conditions which provide information about the solution at all points of a
closed boundary. For example, if equation
(2) holds in a plane domain
bounded by a contour
, a solution
may be sought subject to the condition
where
is a given function. The condition
(3) is known as a Dirichlet boundary condition. Equally common is the Neumann boundary condition
which is one form of a more general condition
where
denotes the derivative of
normal to the contour
, and
and
are given functions. Provided that
and
satisfy certain restrictions, condition
(5) yields a well-posed
boundary value problem for Laplace's equation. In the case of the Neumann problem, one further piece of information, e.g., the value of
at a particular point, is necessary for uniqueness of the solution. Boundary conditions similar to the above are applicable to more general second-order elliptic equations, whilst two such conditions are required for equations of fourth order.
For
hyperbolic equations, the wave equation
is the simplest example of second order. It is equivalent to a first-order system
The subsidiary conditions may take the form of
initial conditions, i.e., conditions which provide information about the solution at points on a suitable
open boundary. For example, if equation
(6) is satisfied for
, a solution
may be sought such that
where
and
are given functions. This is an example of an
initial value problem, sometimes known as Cauchy's problem.
For
parabolic equations, of which the heat conduction equation
is the simplest example, the subsidiary conditions always include some of
initial type and may also include some of
boundary type. For example, if equation
(9) is satisfied for
and
, a solution
may be sought such that
and
This is an example of a mixed
initial/boundary value problem.
For all types of partial differential equations, finite difference methods (see
Mitchell and Griffiths (1980)) and finite element methods (see
Wait and Mitchell (1985)) are the most common means of
solution and such methods obviously feature prominently in this chapter.
Some of the utility functions in this chapter are concerned with the solution of the large sparse systems of equations which arise from finite difference and finite element methods. Further functions for this purpose are provided in
Chapter f11.
Alternative methods of solution are often suitable for special classes of problems. For example, the method of characteristics is the most common for hyperbolic equations involving time and one space dimension (see
Smith (1985)). The method of lines (see
Mikhlin and Smolitsky (1967)) may be used to reduce a parabolic equation to a (stiff) system of ordinary differential equations, which may be solved by means of functions from
Chapter d02 (Ordinary Differential Equations). Similarly, integral equation or boundary element methods (see
Jaswon and Symm (1977)) are frequently used for elliptic equations. Typically, in the latter case, the solution of a boundary value problem is represented in terms of certain boundary functions by an integral expression which satisfies the differential equation throughout the relevant domain. The boundary functions are obtained by applying the given boundary conditions to this representation. Implementation of this method necessitates discretization of only the boundary of the domain, the dimensionality of the problem thus being effectively reduced by one. The boundary conditions yield a full system of simultaneous equations, as opposed to the sparse systems yielded by finite difference and finite element methods, but the full system is usually of much lower order. Solution of this system yields the boundary functions, from which the solution of the problem may be obtained, by quadrature, as and where required.
3 Recommendations on Choice and Use of Available Functions
3.1 Hyperbolic Equations
3.2 Parabolic Equations
There are five functions available for solving general parabolic equations in one space dimension:
Equations may include nonlinear terms but the true derivative should occur linearly and equations should usually contain a second-order space derivative . There are certain restrictions on the coefficients to try to ensure that the problems posed can be solved by the above functions.
The method of solution is to discretize the space derivatives using finite differences or collocation, and to solve the resulting system of ordinary differential equations using a ‘stiff’ solver.
nag_pde_parab_1d_fd (d03pcc) and
nag_pde_parab_1d_coll (d03pdc) can solve a system of parabolic equations of the form
where
,
,
.
The parameter
allows the function to handle different coordinate systems easily (Cartesian, cylindrical polars and spherical polars).
nag_pde_parab_1d_fd (d03pcc) uses a finite differences spatial discretization and
nag_pde_parab_1d_coll (d03pdc) uses a collocation spatial discretization.
nag_pde_parab_1d_fd_ode (d03phc) and
nag_pde_parab_1d_coll_ode (d03pjc) are similar to
nag_pde_parab_1d_fd (d03pcc) and
nag_pde_parab_1d_coll (d03pdc) respectively, except that they provide scope for coupled differential-algebraic systems. This extended functionality allows for the solution of more complex and more general problems, e.g., periodic boundary conditions and integro-differential equations.
nag_pde_parab_1d_fd_ode_remesh (d03ppc) is similar to
nag_pde_parab_1d_fd_ode (d03phc) but allows remeshing to take place in the spatial direction. This facility can be very useful when the nature of the solution in the spatial direction varies considerably over time.
3.3 Black–Scholes Equations
nag_pde_bs_1d (d03ncc) solves the Black–Scholes equation
for the value
of a European or American, put or call stock option. The parameters
,
and
may each be either constant or time-dependent. The values of the Greeks are also returned.
In certain cases an analytic solution of the Black–Scholes equation is available. In these cases the solution may be computed by
nag_pde_bs_1d_analytic (d03ndc). More generally,
Chapter s contains a set of option pricing functions that evaluate the closed form solutions or approximations to the equations that define mathematical models for the prices of selected financial option contracts, including the Black–Scholes equation (
nag_bsm_price (s30aac)).
3.4 First-order Systems in One Space Dimension
There are three functions available for solving systems of first-order partial differential equations:
Equations may include nonlinear terms but the time derivative should occur linearly. There are certain restrictions on the coefficients to ensure that the problems posed can be solved by the above functions.
The method of solution is to discretize the space derivatives using the Keller box scheme and to solve the resulting system of ordinary differential equations using a ‘stiff’ solver.
nag_pde_parab_1d_keller (d03pec) is designed to solve a system of the form
where
,
,
.
nag_pde_parab_1d_keller_ode (d03pkc) is similar to
nag_pde_parab_1d_keller (d03pec) except that it provides scope for coupled differential algebraic systems. This extended functionality allows for the solution of more complex problems.
nag_pde_parab_1d_keller_ode_remesh (d03prc) is similar to
nag_pde_parab_1d_keller_ode (d03pkc) but allows remeshing to take place in the spatial direction. This facility can be very useful when the nature of the solution in the spatial direction varies considerably over time.
nag_pde_parab_1d_keller (d03pec),
nag_pde_parab_1d_keller_ode (d03pkc) or
nag_pde_parab_1d_keller_ode_remesh (d03prc) may also be used to solve systems of higher or mixed order partial differential equations which have been reduced to first-order. Note that in general these functions are unsuitable for hyperbolic first-order equations, for which an appropriate upwind discretization scheme should be used (see
Section 3.5 for example).
3.5 Convection-diffusion Systems
There are three functions available for solving systems of convection-diffusion equations with optional source terms:
Equations may include nonlinear terms but the time derivative should occur linearly. There are certain restrictions on the coefficients to ensure that the problems posed can be solved by the above functions, in particular the system must be posed in conservative form (see below). The functions may also be used to solve hyperbolic convection-only systems.
Convection terms are discretized using an upwind scheme involving a numerical flux function based on the solution of a Riemann problem at each mesh point (see
LeVeque (1990)); and diffusion and source terms are discretized using central differences. The resulting system of ordinary differential equations is solved using a ‘stiff’ solver. In the case of Euler equations for a perfect gas various approximate and exact Riemann solvers are provided in
nag_pde_parab_1d_euler_roe (d03puc),
nag_pde_parab_1d_euler_osher (d03pvc),
nag_pde_parab_1d_euler_hll (d03pwc) and
nag_pde_parab_1d_euler_exact (d03pxc). These functions may be used in conjunction with
nag_pde_parab_1d_cd (d03pfc),
nag_pde_parab_1d_cd_ode (d03plc) and
nag_pde_parab_1d_cd_ode_remesh (d03psc).
nag_pde_parab_1d_cd (d03pfc) is designed to solve systems of the form
or hyperbolic convection-only systems of the form
where
,
,
.
nag_pde_parab_1d_cd_ode (d03plc) is similar to
nag_pde_parab_1d_cd (d03pfc) except that it provides scope for coupled differential algebraic systems. This extended functionality allows for the solution of more complex problems.
nag_pde_parab_1d_cd_ode_remesh (d03psc) is similar to
nag_pde_parab_1d_cd_ode (d03plc) but allows remeshing to take place in the spatial direction. This facility can be very useful when the nature of the solution in the spatial direction varies considerably over time.
3.6 Automatic Mesh Generation
A range of mesh generation functions are available in
Chapter d06.
3.7 Utility Functions
Functions are available in the Linear Algebra Chapters for the direct and iterative solution of linear equations. Here we point to some of the functions that may be of use in solving the linear systems that arise from finite difference or finite element approximations to partial differential equation solutions.
Chapters f01,
f04,
f07,
f08 and
f11 should be consulted for further information and for the appropriate function documents. Decision trees for the solution of linear systems are given in
Section 4 in the f04 Chapter Introduction.
The following functions allow the direct solution of symmetric positive definite systems:
and the following functions allow the iterative solution of symmetric positive definite and symmetric-indefinite systems:
The latter two functions above are black box functions which include Incomplete Cholesky, SSOR or Jacobi preconditioning.
The following functions allow the direct solution of nonsymmetric systems:
and the following functions allow the iterative solution of nonsymmetric systems:
The latter two functions above are black box functions which include incomplete , SSOR and Jacobi preconditioning.
4 Decision Trees
Tree 1
Does PDE have a time derivative? |
|
Does PDE have second derivatives? |
|
see Tree 3 Parabolic branch
|
yes | yes |
| no | | | no | |
|
Is PDE hyperbolic? |
|
see Tree 2 Hyperbolic branch
|
| yes |
| | no | |
|
1 space dimension? |
|
Does PDE have coupled ODEs? |
|
Is a remeshing process required? |
|
d03prc |
| yes | yes | yes |
| | no | | | no | | | no | |
|
|
|
d03pkc |
| | |
| | |
|
|
d03pec |
| |
| |
|
N/A |
|
|
No elliptic solvers currently available. |
|
Tree 2: Hyperbolic branch
1 space dimension? |
|
Does PDE have coupled ODEs? |
|
Is a remeshing process required? |
|
d03psc |
yes | yes | yes |
| no | | | no | | | no | |
|
|
d03plc |
| |
| |
|
d03pfc |
|
|
N/A |
|
Tree 3: Parabolic branch
Tree 4: Branch for parabolic PDE in non-conservative form
Do you want to use finite differences? |
|
Does PDE have coupled ODEs? |
|
Is a remeshing process required? |
|
d03ppc |
yes | yes | yes |
| no | | | no | | | no | |
|
|
d03phc |
| |
| |
|
d03pcc |
|
|
Do you want to use Chebyshev collocation? |
|
Does PDE have coupled ODEs? |
|
d03pjc |
yes | yes |
| no | | | no | |
|
d03pdc |
|
|
N/A |
|
5 Functionality Index
Convection-diffusion system(s), | | |
using upwind difference scheme based on Riemann solvers, | | |
PDEs, general system, one space variable, method of lines, | | |
collocation spatial discretization, | | |
finite differences spatial discretization, | | |
interpolation function for finite difference, | | |
6 Auxiliary Functions Associated with Library Function Arguments
None.
7 Functions Withdrawn or Scheduled for Withdrawal
None.
8 References
Ames W F (1977) Nonlinear Partial Differential Equations in Engineering (2nd Edition) Academic Press
Berzins M (1990) Developments in the NAG Library software for parabolic equations Scientific Software Systems (eds J C Mason and M G Cox) 59–72 Chapman and Hall
Jaswon M A and Symm G T (1977) Integral Equation Methods in Potential Theory and Elastostatics Academic Press
LeVeque R J (1990) Numerical Methods for Conservation Laws Birkhäuser Verlag
Mikhlin S G and Smolitsky K L (1967) Approximate Methods for the Solution of Differential and Integral Equations Elsevier
Mitchell A R and Griffiths D F (1980) The Finite Difference Method in Partial Differential Equations Wiley
Pennington S V and Berzins M (1994) New NAG Library software for first-order partial differential equations ACM Trans. Math. Softw. 20 63–99
Richtmyer R D and Morton K W (1967) Difference Methods for Initial-value Problems (2nd Edition) Interscience
Smith G D (1985) Numerical Solution of Partial Differential Equations: Finite Difference Methods (3rd Edition) Oxford University Press
Swarztrauber P N and Sweet R A (1979) Efficient Fortran subprograms for the solution of separable elliptic partial differential equations ACM Trans. Math. Software 5 352–364
Wait R and Mitchell A R (1985) Finite Element Analysis and Application Wiley