D02SAF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

D02SAF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

D02SAF solves a two-point boundary value problem for a system of first-order ordinary differential equations with boundary conditions, combined with additional algebraic equations. It uses initial value techniques and a modified Newton iteration in a shooting and matching method.

2  Specification

SUBROUTINE D02SAF ( P, M, N, N1, PE, PF, E, DP, NPOINT, SWP, LDSWP, ICOUNT, RANGE, BC, FCN, EQN, CONSTR, YMAX, MONIT, PRSOL, W, LDW, SDW, IFAIL)
INTEGER  M, N, N1, NPOINT, LDSWP, ICOUNT, LDW, SDW, IFAIL
REAL (KIND=nag_wp)  P(M), PE(M), PF(M), E(N), DP(M), SWP(LDSWP,6), YMAX, W(LDW,SDW)
LOGICAL  CONSTR
EXTERNAL  RANGE, BC, FCN, EQN, CONSTR, MONIT, PRSOL

3  Description

D02SAF solves a two-point boundary value problem for a system of n first-order ordinary differential equations with separated boundary conditions by determining certain unknown parameters p1,p2,,pm. (There may also be additional algebraic equations to be solved in the determination of the parameters and, if so, these equations are defined by EQN.) The parameters may be, but need not be, boundary values; they may include eigenvalues, parameters in the coefficients of the differential equations, coefficients in series expansions or asymptotic expansions for boundary values, the length of the range of definition of the system of differential equations, etc.
It is assumed that we have a system of n differential equations of the form
y = fx,y,p , (1)
where p = p1,p2,,pmT  is the vector of parameters, and that the derivative f is evaluated by FCN. Also, n1 of the equations are assumed to depend on p. For n1<n the n-n1 equations of the system are not involved in the matching process. These are the driving equations; they should be independent of p and of the solution of the other n1 equations. In numbering the equations in FCN and BC the driving equations must be put first (as they naturally occur in most applications). The range of definition [a,b] of the differential equations is defined by RANGE and may depend on the parameters p1,p2,,pm (that is, on p). RANGE must define the points x1,x2,,xNPOINT, NPOINT2, which must satisfy
a=x1<x2<<xNPOINT=b (2)
(or a similar relationship with all the inequalities reversed).
If NPOINT>2 the points x1,x2,,xNPOINT can be used to break up the range of definition. Integration is restarted at each of these points. This means that the differential equations (1) can be defined differently in each sub-interval xi,xi+1 , for i=1,2,,NPOINT-1. Also, since initial and maximum integration step sizes can be supplied on each sub-interval (via the array SWP), you can indicate parts of the range a,b where the solution yx may be difficult to obtain accurately and can take appropriate action.
The boundary conditions may also depend on the parameters and are applied at a=x1 and b=xNPOINT. They are defined (in BC) in the form
ya=g1p,>yb=g2p. (3)
The boundary value problem is solved by determining the unknown parameters p by a shooting and matching technique. The differential equations are always integrated from a to b with initial values ya=g1p. The solution vector thus obtained at x=b is subtracted from the vector g2p to give the n1 residuals r1p, ignoring the first n-n1, driving equations. Because the direction of integration is always from a to b, it is unnecessary, in BC, to supply values for the first n-n1 boundary values at b, that is the first n-n1 components of g2 in (3). For n1<m then r1p. Together with the m-n1 equations defined by EQN,
r2p=0, (4)
these give a vector of residuals r, which at the solution, p, must satisfy
r1p r2p =0. (5)
These equations are solved by a pseudo-Newton iteration which uses a modified singular value decomposition of J= r p  when solving the linear equations which arise. The Jacobian J used in Newton's method is obtained by numerical differentiation. The parameters at each Newton iteration are accepted only if the norm D-1J~+r2 is much reduced from its previous value. Here J~+ is the pseudo-inverse, calculated from the singular value decomposition, of a modified version of the Jacobian J (J+ is actually the inverse of the Jacobian in well-conditioned cases). D is a diagonal matrix with
dii=maxpi,PFi (6)
where PF is an array of floor values.
See Deuflhard (1974) for further details of the variants of Newton's method used, Gay (1976) for the modification of the singular value decomposition and Gladwell (1979) for an overview of the method used.
Two facilities are provided to prevent the pseudo-Newton iteration running into difficulty. First, you are permitted to specify constraints on the values of the parameters p via a CONSTR. These constraints are only used to prevent the Newton iteration using values for p which would violate them; that is, they are not used to determine the values of p. Secondly, you are permitted to specify a maximum value ymax for yx at all points in the range a,b. It is intended that this facility be used to prevent machine ‘overflow’ in the integrations of equation (1) due to poor choices of the parameters p which might arise during the Newton iteration. When using this facility, it is presumed that you have an estimate of the likely size of yx at all points xa,b. ymax should then be chosen rather larger (say by a factor of 10) than this estimate.
You are strongly advised to supply a MONIT (or to call the ‘default’ routine D02HBX, see MONIT) to monitor the progress of the pseudo-Newton iteration. You can output the solution of the problem yx by supplying a suitable PRSOL (an example is given in Section 9 of a routine designed to output the solution at equally spaced points).
D02SAF is designed to try all possible options before admitting failure and returning to you. Provided the routine can start the Newton iteration from the initial point p it will exhaust all the options available to it (though you can override this by specifying a maximum number of iterations to be taken). The fact that all its options have been exhausted is the only error exit from the iteration. Other error exits are possible, however, whilst setting up the Newton iteration and when computing the final solution.
If you require more background information about the solution of boundary value problems by shooting methods you are recommended to read the appropriate chapters of Hall and Watt (1976), and for a detailed description of D02SAF Gladwell (1979) is recommended.

4  References

Deuflhard P (1974) A modified Newton method for the solution of ill-conditioned systems of nonlinear equations with application to multiple shooting Numer. Math. 22 289–315
Gay D (1976) On modifying singular values to solve possibly singular systems of nonlinear equations Working Paper 125 Computer Research Centre, National Bureau for Economics and Management Science, Cambridge, MA
Gladwell I (1979) The development of the boundary value codes in the ordinary differential equations chapter of the NAG Library Codes for Boundary Value Problems in Ordinary Differential Equations. Lecture Notes in Computer Science (eds B Childs, M Scott, J W Daniel, E Denman and P Nelson) 76 Springer–Verlag
Hall G and Watt J M (ed.) (1976) Modern Numerical Methods for Ordinary Differential Equations Clarendon Press, Oxford

5  Parameters

1:     P(M) – REAL (KIND=nag_wp) arrayInput/Output
On entry: Pi must be set to an estimate of the ith parameter, pi, for i=1,2,,m.
On exit: the corrected value for the ith parameter, unless an error has occurred, when it contains the last calculated value of the parameter.
2:     M – INTEGERInput
On entry: m, the number of parameters.
Constraint: M>0.
3:     N – INTEGERInput
On entry: n, the total number of differential equations.
Constraint: N>0.
4:     N1 – INTEGERInput
On entry: n1, the number of differential equations active in the matching process. The active equations must be placed last in the numbering in FCN and BC. The first N-N1 equations are used as the driving equations.
Constraint: N1N, N1M and N1>0.
5:     PE(M) – REAL (KIND=nag_wp) arrayInput
On entry: PEi, for i=1,2,,m, must be set to a positive value for use in the convergence test in the ith parameter pi. See the description of PF for further details.
Constraint: PEi>0.0, for i=1,2,,m.
6:     PF(M) – REAL (KIND=nag_wp) arrayInput/Output
On entry: PFi, for i=1,2,,m, should be set to a ‘floor’ value in the convergence test on the ith parameter pi. If PFi0.0 on entry then it is set to the small positive value ε (where ε may in most cases be considered to be machine precision); otherwise it is used unchanged.
The Newton iteration is presumed to have converged if a full Newton step is taken (ISTATE=1 in the specification of MONIT), the singular values of the Jacobian are not being significantly perturbed (also see MONIT) and if the Newton correction Ci satisfies
CiPEi×maxpi,PFi,  i=1,2,,m,
where pi is the current value of the ith parameter. The values PFi are also used in determining the Newton iterates as discussed in Section 3, see equation (6).
On exit: the values actually used.
7:     E(N) – REAL (KIND=nag_wp) arrayInput
On entry: values for use in controlling the local error in the integration of the differential equations. If erri is an estimate of the local error in yi, for i=1,2,,n, then
err i Ei × maxε,yi ,
where ε may in most cases be considered to be machine precision.
Suggested value: Ei=10-5.
Constraint: Ei>0.0, for i=1,2,,N.
8:     DP(M) – REAL (KIND=nag_wp) arrayInput/Output
On entry: a value to be used in perturbing the parameter pi in the numerical differentiation to estimate the Jacobian used in Newton's method. If DPi=0.0 on entry, an estimate is made internally by setting
DPi = ε × maxPFi,pi , (7)
where pi is the initial value of the parameter supplied by you and ε may in most cases be considered to be machine precision. The estimate of the Jacobian, J, is made using forward differences, that is for each i, for i=1,2,,m, pi is perturbed to pi+DPi and the ith column of J is estimated as
rpi+DPi-rpi/DPi
where the other components of p are unchanged (see (3) for the notation used). If this fails to produce a Jacobian with significant columns, backward differences are tried by perturbing pi to pi-DPi and if this also fails then central differences are used with pi perturbed to pi+10.0×DPi. If this also fails then the calculation of the Jacobian is abandoned. If the Jacobian has not previously been calculated then an error exit is taken. If an earlier estimate of the Jacobian is available then the current parameter set, pi, for i=1,2,,m, is abandoned in favour of the last parameter set from which useful progress was made and the singular values of the Jacobian used at the point are modified before proceeding with the Newton iteration. You are recommended to use the default value DPi=0.0 unless you have prior knowledge of a better choice. If any of the perturbations described are likely to lead to an unfortunate set of parameter values then you should use the LOGICAL FUNCTION CONSTR to prevent such perturbations (all changes of parameters are checked by a call to CONSTR).
On exit: the values actually used.
9:     NPOINT – INTEGERInput
On entry: 2 plus the number of break points in the range of definition of the system of differential equations (1).
Constraint: NPOINT2.
10:   SWP(LDSWP,6) – REAL (KIND=nag_wp) arrayInput/Output
On entry: SWPi1 must contain an estimate for an initial step size for integration across the ith sub-interval Xi,Xi+1 , for i=1,2,,NPOINT-1, (see RANGE). SWPi1 should have the same sign as Xi+1-Xi if it is nonzero. If SWPi1=0.0, on entry, a default value for the initial step size is calculated internally. This is the recommended mode of entry.
SWPi3 must contain a lower bound for the modulus of the step size on the ith sub-interval X i ,X i + 1 , for i=1,2,,NPOINT-1. If SWPi3=0.0 on entry, a very small default value is used. By setting SWPi3>0.0 but smaller than the expected step sizes (assuming you have some insight into the likely step sizes) expensive integrations with parameters p far from the solution can be avoided.
SWPi2 must contain an upper bound on the modulus of the step size to be used in the integration on X i ,X i + 1 , for i=1,2,,NPOINT-1. If SWPi2=0.0 on entry no bound is assumed. This is the recommended mode of entry unless the solution is expected to have important features which might be ‘missed’ in the integration if the step size were permitted to be chosen freely.
On exit: SWPi1 contains the initial step size used on the last integration on X i ,X i + 1 , for i=1,2,,NPOINT-1, (excluding integrations during the calculation of the Jacobian).
SWPi2, for i=1,2,,NPOINT-1, is usually unchanged. If the maximum step size SWPi2 is so small or the length of the range X i ,X i + 1  is so short that on the last integration the step size was not controlled in the main by the size of the error tolerances Ei but by these other factors, then SWPNPOINT2 is set to the floating point value of i if the problem last occurred in X i ,X i + 1 . Any results obtained when this value is returned as nonzero should be viewed with caution.
SWPi3, for i=1,2,,NPOINT-1, are unchanged.
If an error exit with IFAIL=4, 5 or 6 (see Section 6) occurs on the integration made from Xi to Xi+1 the floating point value of i is returned in SWPNPOINT1. The actual point x X i ,X i + 1  where the error occurred is returned in SWP15 (see also the specification of W). The floating point value of NPOINT is returned in SWPNPOINT1 if the error exit is caused by a call to BC.
If an error exit occurs when estimating the Jacobian matrix (IFAIL=7, 8, 9, 10, 11 or 12, see Section 6) and if parameter pi was the cause of the failure then on exit SWPNPOINT1 contains the floating point value of i.
SWPi4 contains the point Xi, for i=1,2,,NPOINT, used at the solution p or at the final values of p if an error occurred.
SWP is also partly used as workspace.
11:   LDSWP – INTEGERInput
On entry: the first dimension of the array SWP as declared in the (sub)program from which D02SAF is called.
Constraint: LDSWPNPOINT.
12:   ICOUNT – INTEGERInput
On entry: an upper bound on the number of Newton iterations. If ICOUNT=0 on entry, no check on the number of iterations is made (this is the recommended mode of entry).
Constraint: ICOUNT0.
13:   RANGE – SUBROUTINE, supplied by the user.External Procedure
RANGE must specify the break points xi, for i=1,2,,NPOINT, which may depend on the parameters pj, for j=1,2,,m.
The specification of RANGE is:
SUBROUTINE RANGE ( X, NPOINT, P, M)
INTEGER  NPOINT, M
REAL (KIND=nag_wp)  X(NPOINT), P(M)
1:     X(NPOINT) – REAL (KIND=nag_wp) arrayOutput
On exit: the ith break point, for i=1,2,,NPOINT. The sequence Xi must be strictly monotonic, that is either
a=X1<X2<<XNPOINT=b
or
a=X1>X2>>XNPOINT=b.
2:     NPOINT – INTEGERInput
On entry: 2 plus the number of break points in a,b.
3:     P(M) – REAL (KIND=nag_wp) arrayInput
On entry: the current estimate of the ith parameter, for i=1,2,,m.
4:     M – INTEGERInput
On entry: m, the number of parameters.
RANGE must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
14:   BC – SUBROUTINE, supplied by the user.External Procedure
BC must place in G1 and G2 the boundary conditions at a and b respectively.
The specification of BC is:
SUBROUTINE BC ( G1, G2, P, M, N)
INTEGER  M, N
REAL (KIND=nag_wp)  G1(N), G2(N), P(M)
1:     G1(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the value of yia, for i=1,2,,n, (where this may be a known value or a function of the parameters pj, for j=1,2,,m).
2:     G2(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the value of yib, for i=1,2,,n, (where these may be known values or functions of the parameters pj, for j=1,2,,m). If n>n1, so that there are some driving equations, then the first n-n1 values of G2 need not be set since they are never used.
3:     P(M) – REAL (KIND=nag_wp) arrayInput
On entry: an estimate of the ith parameter, pi, for i=1,2,,m.
4:     M – INTEGERInput
On entry: m, the number of parameters.
5:     N – INTEGERInput
On entry: n, the number of differential equations.
BC must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
15:   FCN – SUBROUTINE, supplied by the user.External Procedure
FCN must evaluate the functions fi (i.e., the derivatives yi), for i=1,2,,n.
The specification of FCN is:
SUBROUTINE FCN ( X, Y, F, N, P, M, I)
INTEGER  N, M, I
REAL (KIND=nag_wp)  X, Y(N), F(N), P(M)
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the argument.
2:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the value of the argument.
3:     F(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the derivative of yi, for i=1,2,,n, evaluated at x. Fi may depend upon the parameters pj, for j=1,2,,m. If there are any driving equations (see Section 3) then these must be numbered first in the ordering of the components of F.
4:     N – INTEGERInput
On entry: n, the number of equations.
5:     P(M) – REAL (KIND=nag_wp) arrayInput
On entry: the current estimate of the ith parameter pi, for i=1,2,,m.
6:     M – INTEGERInput
On entry: m, the number of parameters.
7:     I – INTEGERInput
On entry: specifies the sub-interval xi,xi+1 on which the derivatives are to be evaluated.
FCN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
16:   EQN – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
EQN is used to describe the additional algebraic equations to be solved in the determination of the parameters, pi, for i=1,2,,m. If there are no additional algebraic equations (i.e., m=n1) then EQN is never called and the dummy routine D02HBZ should be used as the actual argument.
The specification of EQN is:
SUBROUTINE EQN ( E, Q, P, M)
INTEGER  Q, M
REAL (KIND=nag_wp)  E(Q), P(M)
1:     E(Q) – REAL (KIND=nag_wp) arrayOutput
On exit: the vector of residuals, r2p, that is the amount by which the current estimates of the parameters fail to satisfy the algebraic equations.
2:     Q – INTEGERInput
On entry: the number of algebraic equations, m-n1.
3:     P(M) – REAL (KIND=nag_wp) arrayInput
On entry: the current estimate of the ith parameter pi, for i=1,2,,m.
4:     M – INTEGERInput
On entry: m, the number of parameters.
EQN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
17:   CONSTR – LOGICAL FUNCTION, supplied by the user.External Procedure
CONSTR is used to prevent the pseudo-Newton iteration running into difficulty. CONSTR should return the value .TRUE. if the constraints are satisfied by the parameters p1,p2,,pm. Otherwise CONSTR should return the value .FALSE.. Usually the dummy function D02HBY, which returns the value .TRUE. at all times, will suffice and in the first instance this is recommended as the actual parameter.
The specification of CONSTR is:
FUNCTION CONSTR ( P, M)
LOGICAL CONSTR
INTEGER  M
REAL (KIND=nag_wp)  P(M)
1:     P(M) – REAL (KIND=nag_wp) arrayInput
On entry: an estimate of the ith parameter, pi, for i=1,2,,m.
2:     M – INTEGERInput
On entry: m, the number of parameters.
CONSTR must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
18:   YMAX – REAL (KIND=nag_wp)Input
On entry: a non-negative value which is used as a bound on all values yx where yx is the solution at any point x between X1 and XNPOINT for the current parameters p1,p2,,pm. If this bound is exceeded the integration is terminated and the current parameters are rejected. Such a rejection will result in an error exit if it prevents the initial residual or Jacobian, or the final solution, being calculated. If YMAX=0 on entry, no bound on the solution y is used; that is the integrations proceed without any checking on the size of y.
19:   MONIT – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
MONIT enables you to monitor the values of various quantities during the calculation. It is called by D02SAF after every calculation of the norm D-1J~+r2 which determines the strategy of the Newton method, every time there is an internal error exit leading to a change of strategy, and before an error exit when calculating the initial Jacobian. Usually the routine D02HBX will be adequate and you are advised to use this as the actual parameter for MONIT in the first instance. (In this case a call to X04ABF must be made before the call of D02SAF.) If no monitoring is required, the dummy routine D02SAS may be used.
The specification of MONIT is:
SUBROUTINE MONIT ( ISTATE, IFLAG, IFAIL1, P, M, F, PNORM, PNORM1, EPS, D)
INTEGER  ISTATE, IFLAG, IFAIL1, M
REAL (KIND=nag_wp)  P(M), F(M), PNORM, PNORM1, EPS, D(M)
1:     ISTATE – INTEGERInput
On entry: the state of the Newton iteration.
ISTATE=0
The calculation of the residual, Jacobian and D-1J~+r2 are taking place.
ISTATE=1 to 5
During the Newton iteration a factor of 2-ISTATE+1 of the Newton step is being used to try to reduce the norm.
ISTATE=6
The current Newton step has been rejected and the Jacobian is being re-calculated.
ISTATE=-6 to -1
An internal error exit has caused the rejection of the current set of parameter values, p. -ISTATE is the value which ISTATE would have taken if the error had not occurred.
ISTATE=-7
An internal error exit has occurred when calculating the initial Jacobian.
2:     IFLAG – INTEGERInput
On entry: whether or not the Jacobian being used has been calculated at the beginning of the current iteration. If the Jacobian has been updated then IFLAG=1; otherwise IFLAG=2. The Jacobian is only calculated when convergence to the current parameter values has been slow.
3:     IFAIL1 – INTEGERInput
On entry: if -6ISTATE-1, IFAIL1 specifies the IFAIL error number that would be produced were control returned to you. IFAIL1 is unspecified for values of ISTATE outside this range.
4:     P(M) – REAL (KIND=nag_wp) arrayInput
On entry: the current estimate of the ith parameter pi, for i=1,2,,m.
5:     M – INTEGERInput
On entry: m, the number of parameters.
6:     F(M) – REAL (KIND=nag_wp) arrayInput
On entry: r, the residual corresponding to the current parameter values, provided 1ISTATE5 or ISTATE=-7. F is unspecified for other values of ISTATE.
7:     PNORM – REAL (KIND=nag_wp)Input
On entry: a quantity against which all reductions in norm are currently measured.
8:     PNORM1 – REAL (KIND=nag_wp)Input
On entry: p, the norm of the current parameters. It is set for 1ISTATE5 and is undefined for other values of ISTATE.
9:     EPS – REAL (KIND=nag_wp)Input
On entry: gives some indication of the convergence rate. It is the current singular value modification factor (see Gay (1976)). It is zero initially and whenever convergence is proceeding steadily. EPS is ε3/8 or greater (where ε may in most cases be considered machine precision) when the singular values of J are approximately zero or when convergence is not being achieved. The larger the value of EPS the worse the convergence rate. When EPS becomes too large the Newton iteration is terminated.
10:   D(M) – REAL (KIND=nag_wp) arrayInput
On entry: J, the singular values of the current modified Jacobian matrix. If Dm is small relative to D1 for a number of Jacobians corresponding to different parameter values then the computed results should be viewed with suspicion. It could be that the matching equations do not depend significantly on some parameter (which could be due to a programming error in FCN, BC, RANGE or EQN). Alternatively, the system of differential equations may be very ill-conditioned when viewed as an initial value problem, in which case D02SAF is unsuitable. This may also be indicated by some singular values being very large. These values of Di, for i=1,2,,m, should not be changed.
MONIT must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
20:   PRSOL – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
PRSOL can be used to obtain values of the solution y at a selected point z by integration across the final range X1,X NPOINT . If no output is required D02HBW can be used as the actual parameter.
The specification of PRSOL is:
SUBROUTINE PRSOL ( Z, Y, N)
INTEGER  N
REAL (KIND=nag_wp)  Z, Y(N)
1:     Z – REAL (KIND=nag_wp)Input/Output
On entry: contains x1 on the first call. On subsequent calls Z contains its previous output value.
On exit: the next point at which output is required. The new point must be nearer XNPOINT than the old.
If Z is set to a point outside X1,X NPOINT  the process stops and control returns from D02SAF to the (sub)program from which D02SAF is called. Otherwise the next call to PRSOL is made by D02SAF at the point Z, with solution values y1,y2,,yn at Z contained in Y. If Z is set to XNPOINT exactly, the final call to PRSOL is made with y1,y2,,yn as values of the solution at XNPOINT produced by the integration. In general the solution values obtained at XNPOINT from PRSOL will differ from the values obtained at this point by a call to BC. The difference between the two solutions is the residual r. You are reminded that the points X1,X2,,XNPOINT are available in the locations SWP14,SWP24,,SWPNPOINT4 at all times.
2:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: the solution value yi, for i=1,2,,n, at z.
3:     N – INTEGERInput
On entry: n, the total number of differential equations.
PRSOL must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02SAF is called. Parameters denoted as Input must not be changed by this procedure.
21:   W(LDW,SDW) – REAL (KIND=nag_wp) arrayOutput
On exit: in the case of an error exit of the type where the point of failure is returned in SWP15, the solution at this point of failure is returned in Wi1, for i=1,2,,n.
Otherwise W is used for workspace.
22:   LDW – INTEGERInput
On entry: the first dimension of the array W as declared in the (sub)program from which D02SAF is called.
Constraint: LDWmaxN,M.
23:   SDW – INTEGERInput
On entry: the second dimension of the array W as declared in the (sub)program from which D02SAF is called.
Constraint: SDW3×M+12+max11,M.
24:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
One or more of the parameters N, N1, M, LDSWP, NPOINT, ICOUNT, LDW, SDW, E, PE or YMAX is incorrectly set.
IFAIL=2
The constraints have been violated by the initial parameters.
IFAIL=3
The condition X1<X2<<XNPOINT (or X1>X2>>XNPOINT) has been violated on a call to RANGE with the initial parameters.
IFAIL=4
In the integration from X1 to XNPOINT with the initial or the final parameters, the step size was reduced too far for the integration to proceed. Consider reversing the order of the points X1,X2,,XNPOINT. If this error exit still results, it is likely that D02SAF is not a suitable method for solving the problem, or the initial choice of parameters is very poor, or the accuracy requirement specified by Ei, for i=1,2,,n, is too stringent.
IFAIL=5
In the integration from X1 to XNPOINT with the initial or final parameters, an initial step could not be found to start the integration on one of the intervals Xi to Xi+1. Consider reversing the order of the points. If this error exit still results it is likely that D02SAF is not a suitable routine for solving the problem, or the initial choice of parameters is very poor, or the accuracy requirement specified by Ei, for i=1,2,,n, is much too stringent.
IFAIL=6
In the integration from X1 to XNPOINT with the initial or final parameters, the solution exceeded YMAX in magnitude (when YMAX>0.0). It is likely that the initial choice of parameters was very poor or YMAX was incorrectly set.
Note: on an error with IFAIL=4, 5 or 6 with the initial parameters, the interval in which failure occurs is contained in SWPNPOINT1. If a MONIT similar to the one in Section 9 is being used then it is a simple matter to distinguish between errors using the initial and final parameters. None of the error exits IFAIL=4, 5 or 6 should occur on the final integration (when computing the solution) as this integration has already been performed previously with exactly the same parameters pi, for i=1,2,,m. Seek expert help if this error occurs.
IFAIL=7
On calculating the initial approximation to the Jacobian, the constraints were violated.
IFAIL=8
On perturbing the parameters when calculating the initial approximation to the Jacobian, the condition X1<X2<<XNPOINT (or X1>X2>>XNPOINT) is violated.
IFAIL=9
On calculating the initial approximation to the Jacobian, the integration step size was reduced too far to make further progress (see IFAIL=4).
IFAIL=10
On calculating the initial approximation to the Jacobian, the initial integration step size on some interval was too small (see IFAIL=5).
IFAIL=11
On calculating the initial approximation to the Jacobian, the solution of the system of differential equations exceeded YMAX in magnitude (when YMAX>0.0).
Note: all the error exits IFAIL=7, 8, 9, 10 and 11 can be treated by reducing the size of some or all the elements of DP.
IFAIL=12
On calculating the initial approximation to the Jacobian, a column of the Jacobian is found to be insignificant. This could be due to an element DPi being too small (but nonzero) or the solution having no dependence on one of the parameters (a programming error).
Note: on an error exit with IFAIL=7, 8, 9, 10, 11 or 12, if a perturbation of the parameter pi is the cause of the error then SWPNPOINT1 will contain the floating point value of i.
IFAIL=13
After calculating the initial approximation to the Jacobian, the calculation of its singular value decomposition failed. It is likely that the error will never occur as it is usually associated with the Jacobian having multiple singular values. To remedy the error it should only be necessary to change the initial parameters. If the error persists it is likely that the problem has not been correctly formulated.
IFAIL=14
The Newton iteration has failed to converge after exercising all its options. You are strongly recommended to monitor the progress of the iteration via MONIT. There are many possible reasons for the iteration not converging. Amongst the most likely are:
(a) there is no solution;
(b) the initial parameters are too far away from the correct parameters;
(c) the problem is too ill-conditioned as an initial value problem for Newton's method to choose suitable corrections;
(d) the accuracy requirements for convergence are too restrictive, that is some of the components of PE (and maybe PF) are too small – in this case the final value of this norm output via MONIT will usually be very small; or
(e) the initial parameters are so close to the solution parameters p that the Newton iteration cannot find improved parameters. The norm output by MONIT should be very small.
IFAIL=15
The number of iterations permitted by ICOUNT has been exceeded (in the case when ICOUNT>0 on entry).
IFAIL=16
IFAIL=17
IFAIL=18
IFAIL=19
These indicate that there has been a serious error in an internal call. Check all subroutine calls and array dimensions. Seek expert help.

7  Accuracy

If the iteration converges, the accuracy to which the unknown parameters are determined is usually close to that specified by you. The accuracy of the solution (output via PRSOL) depends on the error tolerances Ei, for i=1,2,,n. You are strongly recommended to vary all tolerances to check the accuracy of the parameters p and the solution y.

8  Further Comments

The time taken by D02SAF depends on the complexity of the system of differential equations and on the number of iterations required. In practice, the integration of the differential system (1) is usually by far the most costly process involved. The computing time for integrating the differential equations can sometimes depend critically on the quality of the initial estimates for the parameters p. If it seems that too much computing time is required and, in particular, if the values of the residuals (output in MONIT) are much larger than expected given your knowledge of the expected solution, then the coding of FCN, EQN, RANGE and BC should be checked for errors. If no errors can be found then an independent attempt should be made to improve the initial estimates p.
In the case of an error exit in the integration of the differential system indicated by IFAIL=4, 5, 9 or 10 you are strongly recommended to perform trial integrations with D02PFF to determine the effects of changes of the local error tolerances and of changes to the initial choice of the parameters pi, for i=1,2,,m, (that is the initial choice of p).
It is possible that by following the advice given in Section 6 an error exit with IFAIL=7, 8, 9, 10 or 11 might be followed by one with IFAIL=12 (or vice-versa) where the advice given is the opposite. If you are unable to refine the choice of DPi, for i=1,2,,n, such that both these types of exits are avoided then the problem should be rescaled if possible or the method must be abandoned.
The choice of the ‘floor’ values PFi, for i=1,2,,m, may be critical in the convergence of the Newton iteration. For each value i, the initial choice of pi and the choice of PFi should not both be very small unless it is expected that the final parameter pi will be very small and that it should be determined accurately in a relative sense.
For many problems it is critical that a good initial estimate be found for the parameters p or the iteration will not converge or may even break down with an error exit. There are many mathematical techniques which obtain good initial estimates for p in simple cases but which may fail to produce useful estimates in harder cases. If no such technique is available it is recommended that you try a continuation (homotopy) technique preferably based on a physical parameter (e.g., the Reynolds or Prandtl number is often a suitable continuation parameter). In a continuation method a sequence of problems is solved, one for each choice of the continuation parameter, starting with the problem of interest. At each stage the parameters p calculated at earlier stages are used to compute a good initial estimate for the parameters at the current stage (see Hall and Watt (1976) for more details).

9  Example

This example intends to illustrate the use of the break point and equation solving facilities of D02SAF. Most of the facilities which are common to D02SAF and D02HBF are illustrated in the example in the specification of D02HBF (which should also be consulted).
The program solves a projectile problem in two media determining the position of change of media, p3, and the gravity and viscosity in the second medium (p2 represents gravity and p4 represents viscosity).

9.1  Program Text

Program Text (d02safe.f90)

9.2  Program Data

Program Data (d02safe.d)

9.3  Program Results

Program Results (d02safe.r)

Produced by GNUPLOT 4.4 patchlevel 0 -2 -1 0 1 2 3 4 0 1 2 3 4 5 Solution x Example Program Projectile in Two Media Problem height velocity angle determined interface position

D02SAF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012