PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_ode_bvp_coll_sys (d02jb)
Purpose
nag_ode_bvp_coll_sys (d02jb) solves a regular linear two-point boundary value problem for a system of ordinary differential equations by Chebyshev series using collocation and least squares.
Syntax
Description
nag_ode_bvp_coll_sys (d02jb) calculates the solution of a regular two-point boundary value problem for a regular linear
th-order system of first-order ordinary differential equations as a Chebyshev series in the interval
. The differential equation
is defined by
cf, and the boundary conditions at the points
and
are defined by
bc.
You specify the degree of Chebyshev series required,
, and the number of collocation points,
kp. The function sets up a system of linear equations for the Chebyshev coefficients,
equations for each collocation point and one for each boundary condition. The boundary conditions are solved exactly, and the remaining equations are then solved by a least squares method. The result produced is a set of coefficients for a Chebyshev series solution for each component of the solution of the system of differential equations on an interval normalized to
.
nag_fit_1dcheb_eval2 (e02ak) can be used to evaluate the components of the solution at any point on the interval
– see
Example for an example.
nag_fit_1dcheb_deriv (e02ah) followed by
nag_fit_1dcheb_eval2 (e02ak) can be used to evaluate their derivatives.
References
Picken S M (1970) Algorithms for the solution of differential equations in Chebyshev-series by the selected points method Report Math. 94 National Physical Laboratory
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
, the order of the system of differential equations.
Constraint:
.
- 2:
– function handle or string containing name of m-file
-
cf defines the system of differential equations (see
Description). It must return the value of a coefficient function
, of
, at a given point
, or of a right-hand side function
if
.
[result] = cf(ii, j, x)
Input Parameters
- 1:
– int64int32nag_int scalar
- 2:
– int64int32nag_int scalar
-
Indicate the function to be evaluated, namely if , or if .
, .
- 3:
– double scalar
-
The point at which the function is to be evaluated.
Output Parameters
- 1:
– double scalar
-
The value of a coefficient function , of , at a given point , or of a right-hand side function if .
- 3:
– function handle or string containing name of m-file
-
bc defines the
boundary conditions, which have the form
or
. The boundary conditions may be specified in any order.
[j, rhs] = bc(ii)
Input Parameters
- 1:
– int64int32nag_int scalar
-
The index of the boundary condition to be defined.
Output Parameters
- 1:
– int64int32nag_int scalar
-
Must be set to
if the
th boundary condition is
, or to
if it is
.
j must not be set to the same value
for two different values of
ii.
- 2:
– double scalar
-
The value .
- 4:
– double scalar
- 5:
– double scalar
-
The left- and right-hand boundaries, and , respectively.
Constraint:
.
- 6:
– int64int32nag_int scalar
-
The number of coefficients to be returned in the Chebyshev series representation of the components of the solution (hence the degree of the polynomial approximation is ).
Constraint:
.
- 7:
– int64int32nag_int scalar
-
The number of collocation points to be used.
Constraint:
.
Optional Input Parameters
None.
Output Parameters
- 1:
– double array
-
The computed Chebyshev coefficients of the
th component of the solution,
; that is, the computed solution is:
where
is the
th Chebyshev polynomial of the first kind, and
denotes that the first coefficient,
, is halved.
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
On entry, | , |
or | , |
or | , |
or | , |
or | . |
-
-
On entry, | , |
or | (i.e., insufficient workspace). |
-
-
Either the boundary conditions are not linearly independent (that is, in
bc the variable
j is set to the same value
for two different values of
ii), or the rank of the matrix of equations for the coefficients is less than the number of unknowns. Increasing
kp may overcome this latter problem.
-
-
The least squares function
nag_linsys_real_gen_lsqsol (f04am) has failed to correct the first approximate solution (see
nag_linsys_real_gen_lsqsol (f04am)).
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The Chebyshev coefficients are determined by a stable numerical method. The accuracy of the approximate solution may be checked by varying the degree of the polynomials and the number of collocation points (see
Further Comments).
Further Comments
The time taken by nag_ode_bvp_coll_sys (d02jb) depends on the size and complexity of the differential system, the degree of the polynomial solution, and the number of matching points.
The collocation points in the interval are chosen to be the extrema of the appropriate shifted Chebyshev polynomial. If , then the least squares solution reduces to the solution of a system of linear equations, and true collocation results.
The accuracy of the solution may be checked by repeating the calculation with different values of
k1 and with
kp fixed but
. If the Chebyshev coefficients decrease rapidly for each component (and consistently for various
k1 and
kp), the size of the last two or three gives an indication of the error. If the Chebyshev coefficients do not decay rapidly, it is likely that the solution cannot be well-represented by Chebyshev series. Note that the Chebyshev coefficients are calculated for the interval
.
Linear systems of high-order equations in their original form, singular problems, and, indirectly, nonlinear problems can be solved using
nag_ode_bvp_coll_nth_comp (d02tg).
Example
This example solves the equation
with boundary conditions
The equation is written as the first-order system
for solution by
nag_ode_bvp_coll_sys (d02jb) and the boundary conditions are written
We use
,
and
, and
and
, so that the different Chebyshev series may be compared. The solution for
and
is evaluated by
nag_fit_1dcheb_eval2 (e02ak) at nine equally spaced points over the interval
.
Open in the MATLAB editor:
d02jb_example
function d02jb_example
fprintf('d02jb example results\n\n');
n = int64(2);
k1max = 8;
kpmax = 15;
x0 = -1.0;
x1 = 1.0;
c = zeros(k1max, n);
fprintf(' KP K1 Chebyshev coefficients\n');
for kp = int64(10:5:kpmax)
for k1 = int64(4:2:k1max)
[c, ifail] = d02jb(...
n, @cf, @bc, x0, x1, k1, kp);
fprintf('%4d ',kp, k1);
for jord = 1:n
for kind = 1:k1
fprintf('%7.4f ',c(kind,jord));
if mod(kind, 8) == 0 && kind ~= k1
fprintf('\n ');
end
end
fprintf('\n ');
end
fprintf('\n');
end
end
fprintf('\n');
k1 = 8;
k1m1 = int64(k1-1);
m = 9;
ia1 = int64(1);
x = zeros(m, 1);
y = zeros(m, n+1);
fprintf(['Last computed solution evaluated at %1d equally spaced ', ...
'points\n\n'], m);
fprintf(' X Y(1) Y(2)\n');
for i = 1:m
x(i) = (x0*(m-i) + x1*(i-1))/(m-1);
fprintf('%8.4f ', x(i));
for jord = 1:n
[y(i, jord), ifail] = e02ak(...
k1m1, x0, x1, c(:,jord), ia1, x(i));
fprintf('%8.4f ',y(i, jord));
end
fprintf('\n');
y(i,n+1) = abs(y(i,1) - 1 + cos(x(i))/cos(1));
end
fig1 = figure;
display_plot(x, y, fig1);
function [j, rhs] = bc(i)
rhs = 0;
if (i == 1)
j = int64(1);
else
j = int64(-1);
end
function result = cf(ii, jj, x)
if (jj == ii)
result = 0;
elseif (ii == 1 && jj == 2)
result = 1;
elseif (ii == 2 && jj == 1)
result = -1;
elseif (ii == 1)
result = 0;
else
result = 1;
end
function display_plot(x, y, fig1)
axes1 = axes('Parent',fig1,'YMinorTick','on','YTick',[-2 -1 0 1 2],...
'YColor',[0 0.447 0.741],...
'XMinorTick','on');
hold(axes1,'on');
ylabel('y and y''');
xlabel('x');
title({'Two-point BVP for ODE System using Chebyshev series',...
' with Collocation & Least-Squares'});
plot1 = plot(x,y(:,1:2),'Parent',axes1);
set(plot1(1),'DisplayName','y''','Marker','+','LineStyle','--');
set(plot1(2),'DisplayName','y','Marker','x');
axes2 = axes('Parent',fig1,'HitTest','off','Color','none',...
'YMinorTick','on',...
'YTick',[0 5e-07 1e-06 1.5e-06 2e-06],...
'YColor',[0.85 0.325 0.098],...
'YAxisLocation','right',...
'Position',[0.13 0.11 0.775 0.815]);
hold(axes2,'on');
ylabel('Absolute Error');
plot(x,y(:,3),'Parent',axes2,'DisplayName','y error','Marker','*',...
'LineStyle',':','Color',[0.85 0.325 0.098]);
legend1 = legend(axes1,'show');
set(legend1,'Position',[0.17 0.77 0.09 0.11]);
d02jb example results
KP K1 Chebyshev coefficients
10 4 -0.7798 0.0000 0.3899 -0.0000
0.0000 1.5751 0.0000 -0.0629
10 6 -0.8326 -0.0000 0.4253 0.0000 -0.0090 -0.0000
-0.0000 1.6290 0.0000 -0.0724 -0.0000 0.0009
10 8 -0.8325 -0.0000 0.4253 0.0000 -0.0092 -0.0000 0.0001 0.0000
-0.0000 1.6289 0.0000 -0.0724 -0.0000 0.0009 0.0000 -0.0000
15 4 -0.7829 0.0000 0.3914 -0.0000
0.0000 1.5778 0.0000 -0.0631
15 6 -0.8326 -0.0000 0.4253 0.0000 -0.0090 0.0000
0.0000 1.6290 0.0000 -0.0724 -0.0000 0.0009
15 8 -0.8325 -0.0000 0.4253 0.0000 -0.0092 0.0000 0.0001 -0.0000
0.0000 1.6289 0.0000 -0.0724 -0.0000 0.0009 0.0000 -0.0000
Last computed solution evaluated at 9 equally spaced points
X Y(1) Y(2)
-1.0000 0.0000 -1.5574
-0.7500 -0.3542 -1.2616
-0.5000 -0.6242 -0.8873
-0.2500 -0.7933 -0.4579
0.0000 -0.8508 0.0000
0.2500 -0.7933 0.4579
0.5000 -0.6242 0.8873
0.7500 -0.3542 1.2616
1.0000 0.0000 1.5574
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015