forked from project-asgard/DG-SparseGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathodenumjac.m
More file actions
262 lines (245 loc) · 9.97 KB
/
odenumjac.m
File metadata and controls
262 lines (245 loc) · 9.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
function [dFdy,fac,nfevals,nfcalls] = odenumjac(F,Fargs,Fvalue,options)
%ODENUMJAC Numerically compute the Jacobian dF/dY of function F(...,Y,...).
% [DFDY,FAC] = ODENUMJAC(F,FARGS,FVALUE,OPTIONS) numerically computes
% the Jacobian of function F with respect to variable Y, returning it
% as a matrix DFDY. F could be a function of several variables. It must
% return a column vector. The arguments of F are specified in a cell
% array FARGS. Vector FVALUE contains F(FARGS{:}).
% The structure OPTIONS must have the following fields: DIFFVAR, VECTVARS,
% THRESH, and FAC. For sparse Jacobians, OPTIONS must also have fields
% PATTERNS and G. The filed OPTIONS.DIFFVAR is the index of the
% differentiation variable, Y = FARGS{DIFFVAR}. For a function F(t,x),
% set DIFFVAR to 1 to compute DF/Dt, or to 2 to compute DF/Dx.
% ODENUMJAC takes advantage of vectorization, i.e., when several values F
% can be obtained with one function evaluation. Set OPTIONS.VECTVAR
% to the indices of vectorized arguments: VECTVAR = [2] indicates that
% F(t,[x1 y2 ...]) returns [F(t,x1) F(t,x2) ...], while VECTVAR = [1,2]
% indicates that F([t1 t2 ...],[x1 x2 ...]) returns [F(t1,x1) F(t2,x2) ...].
% OPTIONS.THRESH provides a threshold of significance for Y, i.e.
% the exact value of a component Y(i) with abs(Y(i)) < THRESH(i) is not
% important. All components of THRESH must be positive. Column FAC is
% working storage. On the first call, set OPTIONS.FAC to []. Do not alter
% the returned value between calls.
%
% [DFDY,FAC] = ODENUMJAC(F,FARGS,FVALUE,OPTIONS) computes a sparse matrix
% DFDY if the fields OPTIONS.PATTERN and OPTIONS.G are present.
% PATTERN is a non-empty sparse matrix of 0's and 1's. A value of 0 for
% PATTERN(i,j) means that component i of the function F(...,Y,...) does not
% depend on component j of vector Y (hence DFDY(i,j) = 0). Column vector
% OPTIONS.G is an efficient column grouping, as determined by COLGROUP(PATTERN).
%
% [DFDY,FAC,NFEVALS,NFCALLS] = ODENUMJAC(...) returns the number of values
% F(FARGS{:}) computed while forming dFdY (NFEVALS) and the number of calls
% to the function F (NFCALLS). If F is not vectorized, NFCALLS equals NFEVALS.
%
% Although ODENUMJAC was developed specifically for the approximation of
% partial derivatives when integrating a system of ODE's, it can be used
% for other applications. In particular, when the length of the vector
% returned by F(...,Y,...) is different from the length of Y, DFDY is
% rectangular.
%
% See also COLGROUP.
% ODENUMJAC is an implementation of an exceptionally robust scheme due to
% Salane for the approximation of partial derivatives when integrating
% a system of ODEs, Y' = F(T,Y). It is called when the ODE code has an
% approximation Y at time T and is about to step to T+H. The ODE code
% controls the error in Y to be less than the absolute error tolerance
% ATOL = THRESH. Experience computing partial derivatives at previous
% steps is recorded in FAC. A sparse Jacobian is computed efficiently
% by using COLGROUP(S) to find groups of columns of DFDY that can be
% approximated with a single call to function F. COLGROUP tries two
% schemes (first-fit and first-fit after reverse COLAMD ordering) and
% returns the better grouping.
%
% D.E. Salane, "Adaptive Routines for Forming Jacobians Numerically",
% SAND86-1319, Sandia National Laboratories, 1986.
%
% T.F. Coleman, B.S. Garbow, and J.J. More, Software for estimating
% sparse Jacobian matrices, ACM Trans. Math. Software, 11(1984)
% 329-345.
%
% L.F. Shampine and M.W. Reichelt, The MATLAB ODE Suite, SIAM Journal on
% Scientific Computing, 18-1, 1997.
% Mark W. Reichelt and Lawrence F. Shampine, 3-28-94
% Copyright 1984-2004 The MathWorks, Inc.
% $Revision: 1.1.6.6 $ $Date: 2004/04/16 22:06:49 $
% Options
diffvar = options.diffvar;
vectvar = options.vectvars;
thresh = options.thresh;
fac = options.fac;
% Full or sparse Jacobian.
fullJacobian = true;
if isfield(options,'pattern')
fullJacobian = false;
S = options.pattern;
g = options.g;
end
% The differentiation variable.
y = Fargs{diffvar};
% Initialize.
classF = class(Fvalue);
br = eps(classF) ^ (0.875);
bl = eps(classF) ^ (0.75);
bu = eps(classF) ^ (0.25);
classY = class(y);
facmin = eps(classY) ^ (0.78);
facmax = 0.1;
ny = length(y);
nF = length(Fvalue);
if isempty(fac)
fac = sqrt(eps(classY)) + zeros(ny,1,classY);
end
% Select an increment del for a difference approximation to
% column j of dFdy. The vector fac accounts for experience
% gained in previous calls to numjac.
yscale = max(abs(y),thresh);
del = (y + fac .* yscale) - y;
for j = find(del == 0)'
while true
if fac(j) < facmax
fac(j) = min(100*fac(j),facmax);
del(j) = (y(j) + fac(j)*yscale(j)) - y(j);
if del(j)
break
end
else
del(j) = thresh(j);
break;
end
end
end
if nF == ny
s = (sign(Fvalue) >= 0);
del = (s - (~s)) .* abs(del); % keep del pointing into region
end
% Form a difference approximation to all columns of dFdy.
if fullJacobian % generate full matrix dFdy
ydel = y(:,ones(1,ny)) + diag(del);
if isempty(vectvar)
% non-vectorized
Fdel = zeros(nF,ny);
for j = 1:ny
Fdel(:,j) = feval(F,Fargs{1:diffvar-1},ydel(:,j),Fargs{diffvar+1:end});
end
nfcalls = ny; % stats
else
% Expand arguments. Need to preserve the original (non-expanded)
% Fargs in case of correcting columns (done one column at a time).
Fargs_expanded = Fargs;
Fargs_expanded{diffvar} = ydel;
vectvar = setdiff(vectvar,diffvar);
for i=1:length(vectvar)
Fargs_expanded{vectvar(i)} = repmat(Fargs{vectvar(i)},1,ny);
end
Fdel = feval(F,Fargs_expanded{:});
nfcalls = 1; % stats
end
nfevals = ny; % stats (at least one per loop)
Fdiff = Fdel - Fvalue(:,ones(1,ny));
dFdy = Fdiff * diag(1 ./ del);
[Difmax,Rowmax] = max(abs(Fdiff),[],1);
% If Fdel is a column vector, then index is a scalar, so indexing is okay.
absFdelRm = abs(Fdel((0:ny-1)*nF + Rowmax));
else % sparse dFdy with structure S and column grouping g
ng = max(g);
one2ny = (1:ny)';
ydel = y(:,ones(1,ng));
i = (g-1)*ny + one2ny;
ydel(i) = ydel(i) + del;
if isempty(vectvar)
% non-vectorized
Fdel = zeros(nF,ng);
for j = 1:ng
Fdel(:,j) = feval(F,Fargs{1:diffvar-1},ydel(:,j),Fargs{diffvar+1:end});
end
nfcalls = ng; % stats
else
% Expand arguments. Need to preserve the original (non-expanded)
% Fargs in case of correcting columns (done one column at a time).
Fargs_expanded = Fargs;
Fargs_expanded{diffvar} = ydel;
vectvar = setdiff(vectvar,diffvar);
for i=1:length(vectvar)
Fargs_expanded{vectvar(i)} = repmat(Fargs{vectvar(i)},1,ng);
end
Fdel = feval(F,Fargs_expanded{:});
nfcalls = 1; % stats
end
nfevals = ng; % stats (at least one per column)
Fdiff = Fdel - Fvalue(:,ones(1,ng));
[i j] = find(S);
Fdiff = sparse(i,j,Fdiff((g(j)-1)*nF + i),nF,ny);
dFdy = Fdiff * sparse(one2ny,one2ny,1 ./ del,ny,ny);
[Difmax,Rowmax] = max(abs(Fdiff),[],1);
Difmax = full(Difmax);
% If ng==1, then Fdel is a column vector although index may be a row vector.
absFdelRm = abs(Fdel((g-1)*nF + Rowmax').');
end
% Adjust fac for next call to numjac.
absFvalue = abs(Fvalue);
absFvalueRm = absFvalue(Rowmax); % not a col vec if absFvalue scalar
absFvalueRm = absFvalueRm(:)'; % ensure that absFvalueRm is a row vector
j = ((absFdelRm ~= 0) & (absFvalueRm ~= 0)) | (Difmax == 0);
if any(j)
ydel = y;
Fscale = max(absFdelRm,absFvalueRm);
% If the difference in f values is so small that the column might be just
% roundoff error, try a bigger increment.
k1 = (Difmax <= br*Fscale); % Difmax and Fscale might be zero
for k = find(j & k1)
tmpfac = min(sqrt(fac(k)),facmax);
del = (y(k) + tmpfac*yscale(k)) - y(k);
if (tmpfac ~= fac(k)) && (del ~= 0)
if nF == ny
if Fvalue(k) >= 0 % keep del pointing into region
del = abs(del);
else
del = -abs(del);
end
end
ydel(k) = y(k) + del;
Fargs{diffvar} = ydel;
fdel = feval(F,Fargs{:});
nfevals = nfevals + 1; % stats
nfcalls = nfcalls + 1; % stats
ydel(k) = y(k);
fdiff = fdel - Fvalue;
tmp = fdiff ./ del;
[difmax,rowmax] = max(abs(fdiff));
if tmpfac * norm(tmp,inf) >= norm(dFdy(:,k),inf);
% The new difference is more significant, so
% use the column computed with this increment.
if fullJacobian
dFdy(:,k) = tmp;
else
i = find(S(:,k));
if ~isempty(i)
dFdy(i,k) = tmp(i);
end
end
% Adjust fac for the next call to numjac.
fscale = max(abs(fdel(rowmax)),absFvalue(rowmax));
if difmax <= bl*fscale
% The difference is small, so increase the increment.
fac(k) = min(10*tmpfac, facmax);
elseif difmax > bu*fscale
% The difference is large, so reduce the increment.
fac(k) = max(0.1*tmpfac, facmin);
else
fac(k) = tmpfac;
end
end
end
end
% If the difference is small, increase the increment.
k = find(j & ~k1 & (Difmax <= bl*Fscale));
if ~isempty(k)
fac(k) = min(10*fac(k), facmax);
end
% If the difference is large, reduce the increment.
k = find(j & (Difmax > bu*Fscale));
if ~isempty(k)
fac(k) = max(0.1*fac(k), facmin);
end
end