hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_pde_2d_ellip_fd_iter (d03ua)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_pde_2d_ellip_fd_iter (d03ua) performs at each call one iteration of the Strongly Implicit Procedure. It is used to calculate on successive calls a sequence of approximate corrections to the current estimate of the solution when solving a system of simultaneous algebraic equations for which the iterative update matrix is of five-point molecule form on a two-dimensional topologically-rectangular mesh. (‘Topological’ means that a polar grid r,θ, for example, can be used as it is equivalent to a rectangular box.)

Syntax

[r, ifail] = d03ua(n1, a, b, c, d, e, aparam, it, r, 'n2', n2)
[r, ifail] = nag_pde_2d_ellip_fd_iter(n1, a, b, c, d, e, aparam, it, r, 'n2', n2)

Description

Given a set of simultaneous equations
Mt=q (1)
(which could be nonlinear) derived, for example, from a finite difference representation of a two-dimensional elliptic partial differential equation and its boundary conditions, the solution t may be obtained iteratively from a starting approximation t 1  by the formulae
rn = q-Mtn Msn = r n t n+1 = t n +s n .  
Thus r n  is the residual of the nth approximate solution t n , and s n  is the update change vector.
nag_pde_2d_ellip_fd_iter (d03ua) determines the approximate change vector s corresponding to a given residual r, i.e., it determines an approximate solution to a set of equations
Ms=r (2)
where M is a square n1×n2 by n1×n2 matrix and r is a known vector of length n1×n2. The set of equations (2) must be of five-diagonal form
aij si,j-1 + bij si-1,j + cij sij + dij si+1,j + eij si,j+1 = rij ,  
for i=1,2,,n1 and j=1,2,,n2, provided that cij0.0. Indeed, if cij=0.0, then the equation is assumed to be
sij=rij.  
For example, if n1=3 and n2=2, the equations take the form
c11 d11 e11 b21 c21 d21 e21 b31 c31 e31 a12 c12 d12 a22 b22 c22 d22 a32 b32 c32 s11 s21 s31 s12 s22 s32 = r11 r21 r31 r12 r22 r32 .  
The calling program supplies the current residual r at each iteration and the coefficients of the five-point molecule system of equations on which the update procedure is based. The function performs one iteration, using the approximate LU factorization of the Strongly Implicit Procedure with the necessary acceleration argument adjustment, to calculate the approximate solution s of the set of equations (2). The change s overwrites the residual array for return to the calling program. The calling program must combine this change stored in r with the old approximation to obtain the new approximate solution for t. It must then recalculate the residuals and, if the accuracy requirements have not been satisfied, commence the next iterative cycle.
Clearly there is no requirement that the iterative update matrix passed in the form of the five-diagonal element arrays a, b, c, d and e is the same as that used to calculate the residuals, and therefore the one governing the problem. However, the convergence may be impaired if they are not equal. Indeed, if the system of equations (1) is not precisely of the five-diagonal form illustrated above but has a few additional terms, then the methods of deferred or defect correction can be employed. The residual is calculated by the calling program using the full system of equations, but the update formula is based on a five-diagonal system (2) of the form given above. For example, the solution of a system of nine-diagonal equations each involving the combination of terms with ti±1,j±1,ti±1,j,ti,j±1 and tij could use the five-diagonal coefficients on which to base the update, provided these incorporate the major features of the equations.
Problems in topologically non-rectangular regions can be solved using the function by surrounding the region with a circumscribing topological rectangle. The equations for the nodal values external to the region of interest are set to zero (i.e., cij=rij=0) and the boundary conditions are incorporated into the equations for the appropriate nodes.
If there is no better initial approximation when starting the iterative cycle, one can use an array of all zeros as the initial approximation from which the first set of residuals are determined.
The function can be used to solve linear elliptic equations in which case the arrays a, b, c, d, e and the quantities q will be unchanged during the iterative cycles, or for solving nonlinear elliptic equations in which case some or all of these arrays may require updating as each new approximate solution is derived. Depending on the nonlinearity, some under-relaxation of the coefficients and/or source terms may be needed during their recalculation using the new estimates of the solution (see Jacobs (1972)).
The function can also be used to solve each step of a time-dependent parabolic equation in two space dimensions. The solution at each time step can be expressed in terms of an elliptic equation if the Crank–Nicolson or other form of implicit time integration is used.
Neither diagonal dominance, nor positive-definiteness, of the matrix M or of the update matrix formed from the arrays a, b, c, d and e is necessary to ensure convergence.
For problems in which the solution is not unique, in the sense that an arbitrary constant can be added to the solution (for example Laplace's equation with all Neumann boundary conditions), the calling program should subtract a typical nodal value from the whole solution t at every iteration to keep rounding errors to a minimum.

References

Ames W F (1977) Nonlinear Partial Differential Equations in Engineering (2nd Edition) Academic Press
Jacobs D A H (1972) The strongly implicit procedure for the numerical solution of parabolic and elliptic partial differential equations Note RD/L/N66/72 Central Electricity Research Laboratory
Stone H L (1968) Iterative solution of implicit approximations of multi-dimensional partial differential equations SIAM J. Numer. Anal. 5 530–558

Parameters

Compulsory Input Parameters

1:     n1 int64int32nag_int scalar
The number of nodes in the first coordinate direction, n1.
Constraint: n1>1.
2:     aldan2 – double array
lda, the first dimension of the array, must satisfy the constraint ldan1.
aij must contain the coefficient of the ‘southerly’ term involving si,j-1 in the i,jth equation of the system (2), for i=1,2,,n1 and j=1,2,,n2. The elements of a, for j=1, must be zero after incorporating the boundary conditions, since they involve nodal values from outside the rectangle.
3:     bldan2 – double array
lda, the first dimension of the array, must satisfy the constraint ldan1.
bij must contain the coefficient of the ‘westerly’ term involving si-1,j in the i,jth equation of the system (2), for i=1,2,,n1 and j=1,2,,n2. The elements of b, for i=1, must be zero after incorporating the boundary conditions, since they involve nodal values from outside the rectangle.
4:     cldan2 – double array
lda, the first dimension of the array, must satisfy the constraint ldan1.
cij must contain the coefficient of the ‘central’ term involving sij in the i,jth equation of the system (2), for i=1,2,,n1 and j=1,2,,n2. The elements of c are checked to ensure that they are nonzero. If any element is found to be zero, the corresponding algebraic equation is assumed to be sij=rij. This feature can be used to define the equations for nodes at which, for example, Dirichlet boundary conditions are applied, or for nodes external to the problem of interest, by setting cij=0.0 at appropriate points. The corresponding value of rij is set equal to the appropriate value, namely the difference between the prescribed value of tij and the current value of tij in the Dirichlet case, or zero at an external point.
5:     dldan2 – double array
lda, the first dimension of the array, must satisfy the constraint ldan1.
dij must contain the coefficient of the ‘easterly’ term involving si+1,j in the i,jth equation of the system (2), for i=1,2,,n1 and j=1,2,,n2. The elements of d, for i=n1, must be zero after incorporating the boundary conditions, since they involve nodal values from outside the rectangle.
6:     eldan2 – double array
lda, the first dimension of the array, must satisfy the constraint ldan1.
eij must contain the coefficient of the ‘northerly’ term involving si,j+1 in the i,jth equation of the system (2), for i=1,2,,n1 and j=1,2,,n2. The elements of e, for j=n2, must be zero after incorporating the boundary conditions, since they involve nodal values from outside the rectangle.
7:     aparam – double scalar
The iteration acceleration factor. A value of 1.0 is adequate for most typical problems. However, if convergence is slow, the value can be reduced, typically to 0.2 or 0.1. If divergence is obtained, the value can be increased, typically to 2.0, 5.0 or 10.0.
Constraint: 0.0<aparam n1-1 2+ n2-1 2/2.0.
8:     it int64int32nag_int scalar
The iteration number. It must be initialized, but not necessarily to 1, before the first call, and must be incremented by one in the calling program for each subsequent call. nag_pde_2d_ellip_fd_iter (d03ua) uses the counter to select the appropriate acceleration argument from a sequence of nine, each one being used twice in succession. (Note that the acceleration argument depends on the value of aparam.)
9:     rldan2 – double array
lda, the first dimension of the array, must satisfy the constraint ldan1.
rij must contain the current residual rij on the right-hand side of the i,jth equation of the system (2), for i=1,2,,n1 and j=1,2,,n2.

Optional Input Parameters

1:     n2 int64int32nag_int scalar
Default: the second dimension of the arrays a, b, c, d, e, r. (An error is raised if these dimensions are not equal.)
The number of nodes in the second coordinate direction, n2.
Constraint: n2>1.

Output Parameters

1:     rldan2 – double array
These residuals store the corresponding components of solution s to the system (2), i.e., the changes to be made to the vector t to reduce the residuals supplied.
2:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry,n1<2,
orn2<2.
   ifail=2
On entry,lda<n1.
   ifail=3
On entry,aparam0.0.
   ifail=4
On entry,aparam> n1-1 2+ n2-1 2/2.0.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

The improvement in accuracy for each iteration, i.e., on each call, depends on the size of the system and on the condition of the update matrix characterised by the five-diagonal coefficient arrays. The ultimate accuracy obtainable depends on the above factors and on the machine precision. However, since nag_pde_2d_ellip_fd_iter (d03ua) works with residuals and the update vector, the calling program can, in most cases where at each iteration all the residuals are usually of about the same size, calculate the residuals from extended precision values of the function, source term and equation coefficients if greater accuracy is required. The rate of convergence obtained with the Strongly Implicit Procedure is not always smooth because of the cyclic use of nine acceleration arguments. The convergence may become slow with very large problems. The final accuracy obtained can be judged approximately from the rate of convergence determined from the changes to the dependent variable t and in particular the change on the last iteration.

Further Comments

The time taken is approximately proportional to n1×n2 for each call.
When used with deferred or defect correction, the residual is calculated in the calling program from a different system of equations to those represented by the five-point molecule coefficients used by nag_pde_2d_ellip_fd_iter (d03ua) as the basis of the iterative update procedure. When using deferred correction the overall rate of convergence depends not only on the items detailed in Accuracy but also on the difference between the two coefficient matrices used.
Convergence may not always be obtained when the problem is very large and/or the coefficients of the equations have widely disparate values. The latter case may be associated with an ill-conditioned matrix.

Example

This example solves Laplace's equation in a rectangle with a non-uniform grid spacing in the x and y coordinate directions and with Dirichlet boundary conditions specifying the function on the perimeter of the rectangle equal to e1.0+x/yn2×cosy/yn2.
function d03ua_example


fprintf('d03ua example results\n\n');

n1 = int64(6);
n2 = int64(10);
nits = 10;
for i=1:n1
  x(i) = double((i*(i-1))/2);
end
for i=1:n2
  y(i) = double((i*(i-1))/2);
end

a = zeros(n1,n2);
b = a; d = a; e = a;
q = a; t = a;

for j=2:n2-1
  a(2:n1-1,j) = 2/((y(j)-y(j-1))*(y(j+1)-y(j-1)));
  e(2:n1-1,j) = 2/((y(j+1)-y(j))*(y(j+1)-y(j-1)));
end
for i=2:n1-1
  b(i,2:n2-1) = 2/((x(i)-x(i-1))*(x(i+1)-x(i-1)));
  d(i,2:n2-1) = 2/((x(i+1)-x(i))*(x(i+1)-x(i-1)));
end

c = -a - b - d - e;

% Specification for boundary nodes
q( 1,: ) = exp((x( 1)+1)/y(n2))*cos(y(: )/y(n2));
q(n1,: ) = exp((x(n1)+1)/y(n2))*cos(y(: )/y(n2));
q(: , 1) = exp((x(: )+1)/y(n2))*cos(y( 1)/y(n2));
q(: ,n2) = exp((x(: )+1)/y(n2))*cos(y(n2)/y(n2));

aparam = 1;

% Iterative loop
for it = int64(1:nits)
  [r] = resid(n1,n2,a,b,c,d,e,q,t);
  [r, ifail] = d03ua(n1, a, b, c, d, e, aparam, it, r);
  t = t + r;
end

fprintf('Final residual after %d iterations = %10.1e\n',nits,norm(r));
fprintf('\nApproximate solution is:\n\ny/x');
fprintf('%8d',1:n1);
for i=1:n2
  fprintf('\n%3d',i);
  fprintf('%8.3f',t(:,i));
end
fprintf('\n');



function [r] = resid(n1,n2,a,b,c,d,e,q,t)
  for j=1:n2
    for i=1:n1
      if (c(i,j)==0)
        r(i,j) = q(i,j) - t(i,j);
      else
        r(i,j) = q(i,j) - a(i,j)*t(i,j-1) - b(i,j)*t(i-1,j) - c(i,j)*t(i,j) ...
                        - d(i,j)*t(i+1,j) - e(i,j)*t(i,j+1);
      end
    end
  end
d03ua example results

Final residual after 10 iterations =    4.1e-10

Approximate solution is:

y/x       1       2       3       4       5       6
  1   1.022   1.045   1.093   1.168   1.277   1.427
  2   1.022   1.045   1.093   1.168   1.277   1.427
  3   1.020   1.043   1.091   1.166   1.274   1.424
  4   1.013   1.036   1.083   1.158   1.266   1.414
  5   0.997   1.020   1.066   1.140   1.246   1.392
  6   0.966   0.988   1.033   1.104   1.207   1.348
  7   0.913   0.934   0.976   1.044   1.141   1.274
  8   0.831   0.850   0.888   0.950   1.038   1.160
  9   0.712   0.728   0.762   0.814   0.890   0.994
 10   0.552   0.565   0.591   0.631   0.690   0.771

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015