-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsolve.jl
557 lines (490 loc) · 19.4 KB
/
solve.jl
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
function DiffEqBase.__solve(prob::DiffEqBase.AbstractDDEProblem,
alg::AbstractMethodOfStepsAlgorithm, args...;
kwargs...)
integrator = DiffEqBase.__init(prob, alg, args...; kwargs...)
DiffEqBase.solve!(integrator)
integrator.sol
end
function DiffEqBase.__init(prob::DiffEqBase.AbstractDDEProblem,
alg::AbstractMethodOfStepsAlgorithm,
timeseries_init = (),
ts_init = (),
ks_init = ();
saveat = (),
tstops = (),
d_discontinuities = (),
save_idxs = nothing,
save_everystep = isempty(saveat),
save_on = true,
save_start = save_everystep || isempty(saveat) ||
saveat isa Number || prob.tspan[1] in saveat,
save_end = nothing,
callback = nothing,
dense = save_everystep && isempty(saveat),
calck = (callback !== nothing && callback != CallbackSet()) || # Empty callback
dense, # and no dense output
dt = zero(eltype(prob.tspan)),
dtmin = DiffEqBase.prob2dtmin(prob; use_end_time = false),
dtmax = eltype(prob.tspan)(prob.tspan[end] - prob.tspan[1]),
force_dtmin = false,
adaptive = DiffEqBase.isadaptive(alg),
gamma = OrdinaryDiffEqCore.gamma_default(alg.alg),
abstol = nothing,
reltol = nothing,
qmin = OrdinaryDiffEqCore.qmin_default(alg.alg),
qmax = OrdinaryDiffEqCore.qmax_default(alg.alg),
qsteady_min = OrdinaryDiffEqCore.qsteady_min_default(alg.alg),
qsteady_max = OrdinaryDiffEqCore.qsteady_max_default(alg.alg),
qoldinit = DiffEqBase.isadaptive(alg) ? 1 // 10^4 : 0,
controller = nothing,
fullnormalize = true,
failfactor = 2,
beta1 = nothing,
beta2 = nothing,
maxiters = adaptive ? 1000000 : typemax(Int),
internalnorm = DiffEqBase.ODE_DEFAULT_NORM,
internalopnorm = LinearAlgebra.opnorm,
isoutofdomain = DiffEqBase.ODE_DEFAULT_ISOUTOFDOMAIN,
unstable_check = DiffEqBase.ODE_DEFAULT_UNSTABLE_CHECK,
verbose = true,
timeseries_errors = true,
dense_errors = false,
advance_to_tstop = false,
stop_at_next_tstop = false,
initialize_save = true,
progress = false,
progress_steps = 1000,
progress_name = "DDE",
progress_message = DiffEqBase.ODE_DEFAULT_PROG_MESSAGE,
progress_id = :DelayDiffEq,
userdata = nothing,
allow_extrapolation = OrdinaryDiffEqCore.alg_extrapolates(alg),
initialize_integrator = true,
alias_u0 = false,
# keyword arguments for DDEs
discontinuity_interp_points::Int = 10,
discontinuity_abstol = eltype(prob.tspan)(1 // Int64(10)^12),
discontinuity_reltol = 0,
initializealg = DDEDefaultInit(),
kwargs...)
if haskey(kwargs, :initial_order)
@warn "initial_order has been deprecated. Please specify order_discontinuity_t0 in the DDEProblem instead."
order_discontinuity_t0::Int = kwargs[:initial_order]
else
order_discontinuity_t0 = prob.order_discontinuity_t0
end
if alg.alg isa CompositeAlgorithm && alg.alg.choice_function isa AutoSwitch
auto = alg.alg.choice_function
alg = MethodOfSteps(CompositeAlgorithm(alg.alg.algs,
OrdinaryDiffEqCore.AutoSwitchCache(0, 0,
auto.nonstiffalg,
auto.stiffalg,
auto.stiffalgfirst,
auto.maxstiffstep,
auto.maxnonstiffstep,
auto.nonstifftol,
auto.stifftol,
auto.dtfac,
auto.stiffalgfirst,
auto.switch_max)))
end
if haskey(kwargs, :minimal_solution)
@warn "minimal_solution is ignored"
end
if !isempty(saveat) && dense
@warn("Dense output is incompatible with saveat. Please use the SavingCallback from the Callback Library to mix the two behaviors.")
end
progress && @logmsg(-1, progress_name, _id=progress_id, progress=0)
isdae = prob.f.mass_matrix !== I && !(prob.f.mass_matrix isa Tuple) &&
ArrayInterface.issingular(prob.f.mass_matrix)
# unpack problem
@unpack f, u0, h, tspan, p, neutral, constant_lags, dependent_lags = prob
# determine type and direction of time
tType = eltype(tspan)
t0 = first(tspan)
tdir = sign(last(tspan) - t0)
tTypeNoUnits = typeof(one(tType))
# Allow positive dtmax, but auto-convert
dtmax > zero(dtmax) && tdir < zero(tdir) && (dtmax *= tdir)
# no fixed-point iterations for constrained algorithms,
# and thus `dtmax` should match minimal lag
if isconstrained(alg) && has_constant_lags(prob)
dtmax = tdir * min(abs(dtmax), minimum(abs, constant_lags))
end
# get absolute and relative tolerances
abstol_internal = get_abstol(u0, tspan, alg.alg; abstol = abstol)
reltol_internal = get_reltol(u0, tspan, alg.alg; reltol = reltol)
# get rate prototype
rate_prototype = rate_prototype_of(u0, tspan)
# get states (possibly different from the ODE integrator!)
u, uprev, uprev2 = u_uprev_uprev2(u0, alg;
alias_u0 = alias_u0,
adaptive = adaptive,
allow_extrapolation = allow_extrapolation,
calck = calck)
uEltypeNoUnits = recursive_unitless_eltype(u)
uBottomEltypeNoUnits = recursive_unitless_bottom_eltype(u)
# get the differential vs algebraic variables
differential_vars = prob isa DAEProblem ? prob.differential_vars :
OrdinaryDiffEqCore.get_differential_vars(f, u)
# create a history function
history = build_history_function(prob, alg, rate_prototype, reltol_internal,
differential_vars;
dt = dt, dtmin = dtmin, calck = false,
adaptive = adaptive, internalnorm = internalnorm)
f_with_history = ODEFunctionWrapper(f, history)
# initialize output arrays of the solution
save_idxs, saved_subsystem = SciMLBase.get_save_idxs_and_saved_subsystem(prob, save_idxs)
k = typeof(rate_prototype)[]
ts, timeseries, ks = solution_arrays(u, tspan, rate_prototype;
timeseries_init = timeseries_init,
ts_init = ts_init,
ks_init = ks_init,
save_idxs = save_idxs,
save_start = save_start)
# build cache
ode_integrator = history.integrator
cache = OrdinaryDiffEqCore.alg_cache(alg.alg, u, rate_prototype, uEltypeNoUnits,
uBottomEltypeNoUnits, tTypeNoUnits, uprev, uprev2,
f_with_history, t0, zero(tType), reltol_internal, p,
calck,
Val(isinplace(prob)))
# separate statistics of the integrator and the history
stats = SciMLBase.DEStats(0)
# create solution
alg_choice = iscomposite(alg) ? Int[] : nothing
id = OrdinaryDiffEqCore.InterpolationData(f_with_history, timeseries, ts, ks,
alg_choice, dense, cache, differential_vars, false)
sol = DiffEqBase.build_solution(prob, alg.alg, ts, timeseries;
dense = dense, k = ks, interp = id, saved_subsytem = saved_subsystem,
alg_choice = id.alg_choice, calculate_error = false,
stats = stats)
# retrieve time stops, time points at which solutions is saved, and discontinuities
tstops_internal = OrdinaryDiffEqCore.initialize_tstops(tType, tstops, d_discontinuities,
tspan)
saveat_internal = OrdinaryDiffEqCore.initialize_saveat(tType, saveat, tspan)
d_discontinuities_internal = OrdinaryDiffEqCore.initialize_d_discontinuities(
Discontinuity{
tType,
Int
},
d_discontinuities,
tspan)
maximum_order = OrdinaryDiffEqCore.alg_maximum_order(alg)
tstops_propagated, d_discontinuities_propagated = initialize_tstops_d_discontinuities_propagated(
tType,
tstops,
d_discontinuities,
tspan,
order_discontinuity_t0,
maximum_order,
constant_lags,
neutral)
# reserve capacity for the solution
sizehint!(sol, alg, tspan, tstops_internal, saveat_internal;
save_everystep = save_everystep, adaptive = adaptive, dt = tType(dt),
dtmin = dtmin, internalnorm = internalnorm)
# create array of tracked discontinuities
# used to find propagated discontinuities with callbacks and to keep track of all
# passed discontinuities
tracked_discontinuities = Discontinuity{tType, Int}[]
if order_discontinuity_t0 ≤ maximum_order
push!(tracked_discontinuities, Discontinuity(tdir * t0, order_discontinuity_t0))
end
# Create set of callbacks and its cache
callback_set, callback_cache = callback_set_and_cache(prob, callback)
# separate options of integrator and of dummy ODE integrator since ODE integrator always saves
# every step and every index (necessary for history function)
QT = tTypeNoUnits <: Integer ? typeof(qmin) : typeof(internalnorm(u, t0))
# Setting up the step size controller
if (beta1 !== nothing || beta2 !== nothing) && controller !== nothing
throw(ArgumentError("Setting both the legacy PID parameters `beta1, beta2 = $((beta1, beta2))` and the `controller = $controller` is not allowed."))
end
if (beta1 !== nothing || beta2 !== nothing)
message = "Providing the legacy PID parameters `beta1, beta2` is deprecated. Use the keyword argument `controller` instead."
Base.depwarn(message, :init)
Base.depwarn(message, :solve)
end
if controller === nothing
controller = OrdinaryDiffEqCore.default_controller(alg.alg, cache,
convert(QT, qoldinit)::QT, beta1,
beta2)
end
save_end_user = save_end
save_end = save_end === nothing ?
save_everystep || isempty(saveat) || saveat isa Number ||
prob.tspan[2] in saveat : save_end
opts = OrdinaryDiffEqCore.DEOptions{typeof(abstol_internal), typeof(reltol_internal),
QT, tType, typeof(controller),
typeof(internalnorm), typeof(internalopnorm),
typeof(save_end_user),
typeof(callback_set),
typeof(isoutofdomain),
typeof(progress_message), typeof(unstable_check),
typeof(tstops_internal),
typeof(d_discontinuities_internal), typeof(userdata),
typeof(save_idxs),
typeof(maxiters), typeof(tstops),
typeof(saveat), typeof(d_discontinuities)}(maxiters,
save_everystep,
adaptive,
abstol_internal,
reltol_internal,
QT(gamma),
QT(qmax),
QT(qmin),
QT(qsteady_max),
QT(qsteady_min),
QT(qoldinit),
QT(failfactor),
tType(dtmax),
tType(dtmin),
controller,
internalnorm,
internalopnorm,
save_idxs,
tstops_internal,
saveat_internal,
d_discontinuities_internal,
tstops,
saveat,
d_discontinuities,
userdata,
progress,
progress_steps,
progress_name,
progress_message,
progress_id,
timeseries_errors,
dense_errors,
dense,
save_on,
save_start,
save_end,
save_end_user,
callback_set,
isoutofdomain,
unstable_check,
verbose,
calck,
force_dtmin,
advance_to_tstop,
stop_at_next_tstop)
# create fixed point solver
fpsolver = build_fpsolver(alg, alg.fpsolve, u, uEltypeNoUnits, uBottomEltypeNoUnits,
Val(isinplace(prob)))
# initialize indices of u(t) and u(tprev) in the dense history
prev_idx = 1
prev2_idx = 1
# create integrator combining the new defined problem function with history
# information, the new solution, the parameters of the ODE integrator, and
# parameters of fixed-point iteration
# do not initialize fsalfirst and fsallast
# rate/state = (state/time)/state = 1/t units, internalnorm drops units
eigen_est = inv(one(tType))
tprev = t0
dtcache = tType(dt)
dtpropose = tType(dt)
iter = 0
kshortsize = 0
reeval_fsal = false
u_modified = false
EEst = QT(1)
just_hit_tstop = false
do_error_check = true
isout = false
accept_step = false
force_stepfail = false
last_stepfail = false
event_last_time = 0
vector_event_last_time = 1
last_event_error = zero(uBottomEltypeNoUnits)
dtchangeable = OrdinaryDiffEqCore.isdtchangeable(alg.alg)
q11 = QT(1)
success_iter = 0
erracc = QT(1)
dtacc = tType(1)
fsalfirst, fsallast = OrdinaryDiffEqCore.get_fsalfirstlast(cache, rate_prototype)
integrator = DDEIntegrator{typeof(alg.alg), isinplace(prob), typeof(u0), tType,
typeof(p),
typeof(eigen_est), QT, typeof(tdir), typeof(k), typeof(sol),
typeof(f_with_history), typeof(cache),
typeof(ode_integrator), typeof(fpsolver),
typeof(opts), typeof(discontinuity_abstol),
typeof(discontinuity_reltol), typeof(history),
typeof(tstops_propagated),
typeof(d_discontinuities_propagated),
typeof(fsalfirst),
typeof(last_event_error), typeof(callback_cache),
typeof(differential_vars), typeof(initializealg)}(sol, u, k,
t0,
tType(dt),
f_with_history,
p,
uprev,
uprev2,
tprev,
prev_idx,
prev2_idx,
fpsolver,
order_discontinuity_t0,
tracked_discontinuities,
discontinuity_interp_points,
discontinuity_abstol,
discontinuity_reltol,
tstops_propagated,
d_discontinuities_propagated,
alg.alg,
dtcache,
dtchangeable,
dtpropose,
tdir,
eigen_est,
EEst,
QT(qoldinit),
q11,
erracc,
dtacc,
success_iter,
iter,
length(ts),
length(ts),
cache,
callback_cache,
kshortsize,
force_stepfail,
last_stepfail,
just_hit_tstop,
do_error_check,
event_last_time,
vector_event_last_time,
last_event_error,
accept_step,
isout,
reeval_fsal,
u_modified,
isdae,
opts,
stats,
history,
differential_vars,
ode_integrator, fsalfirst, fsallast, initializealg)
# initialize DDE integrator
if initialize_integrator
DiffEqBase.initialize_dae!(integrator)
initialize_solution!(integrator)
OrdinaryDiffEqCore.initialize_callbacks!(integrator, initialize_save)
OrdinaryDiffEqCore.initialize!(integrator)
end
# take care of time step dt = 0 and dt with incorrect sign
OrdinaryDiffEqCore.handle_dt!(integrator)
integrator
end
function DiffEqBase.solve!(integrator::DDEIntegrator)
@unpack tdir, opts, sol = integrator
@unpack tstops = opts
# step over all stopping time points, similar to solving with ODE integrators
@inbounds while !isempty(tstops)
while tdir * integrator.t < first(tstops)
# apply step or adapt step size
OrdinaryDiffEqCore.loopheader!(integrator)
# abort integration following same criteria as for ODEs:
# maxiters exceeded, dt <= dtmin, integration unstable
DiffEqBase.check_error!(integrator) == ReturnCode.Success || return sol
# calculate next step
OrdinaryDiffEqCore.perform_step!(integrator)
# calculate proposed next step size, handle callbacks, and update solution
OrdinaryDiffEqCore.loopfooter!(integrator)
isempty(tstops) && break
end
# remove hit or passed stopping time points
OrdinaryDiffEqCore.handle_tstop!(integrator)
end
# clean up solution
DiffEqBase.postamble!(integrator)
f = sol.prob.f
if DiffEqBase.has_analytic(f)
DiffEqBase.calculate_solution_errors!(sol;
timeseries_errors = opts.timeseries_errors,
dense_errors = opts.dense_errors)
end
sol.retcode == ReturnCode.Default || return sol
integrator.sol = DiffEqBase.solution_new_retcode(sol, ReturnCode.Success)
end
function OrdinaryDiffEqCore.initialize_callbacks!(integrator::DDEIntegrator,
initialize_save = true)
callbacks = integrator.opts.callback
prob = integrator.sol.prob
# set up additional initial values of newly created DDE integrator
# (such as fsalfirst) and its callbacks
integrator.u_modified = true
u_modified = initialize!(callbacks, integrator.u, integrator.t, integrator)
# if the user modifies u, we need to fix previous values before initializing
# FSAL in order for the starting derivatives to be correct
if u_modified
if isinplace(prob)
recursivecopy!(integrator.uprev, integrator.u)
else
integrator.uprev = integrator.u
end
if OrdinaryDiffEqCore.alg_extrapolates(integrator.alg)
if isinplace(prob)
recursivecopy!(integrator.uprev2, integrator.uprev)
else
integrator.uprev2 = integrator.uprev
end
end
# update heap of discontinuities
# discontinuity is assumed to be of order 0, i.e. solution x is discontinuous
add_next_discontinuities!(integrator, 0, integrator.t)
# reset this as it is now handled so the integrators should proceed as normal
reeval_internals_due_to_modification!(integrator, Val{false})
if initialize_save &&
(any((c) -> c.save_positions[2], callbacks.discrete_callbacks) ||
any((c) -> c.save_positions[2], callbacks.continuous_callbacks))
savevalues!(integrator, true)
end
end
# reset this as it is now handled so the integrators should proceed as normal
integrator.u_modified = false
end
function initialize_tstops_d_discontinuities_propagated(::Type{T}, tstops,
d_discontinuities, tspan,
order_discontinuity_t0,
alg_maximum_order,
constant_lags, neutral) where {T}
# create heaps for propagated discontinuities and corresponding time stops
tstops_propagated = BinaryMinHeap{T}()
d_discontinuities_propagated = BinaryMinHeap{Discontinuity{T, Int}}()
# add discontinuities and time stops propagated from initial discontinuity
if constant_lags !== nothing && !isempty(constant_lags) &&
order_discontinuity_t0 ≤ alg_maximum_order
sizehint!(tstops_propagated, length(constant_lags))
sizehint!(d_discontinuities_propagated, length(constant_lags))
t0, tf = tspan
tdir = sign(tf - t0)
maxlag = tdir * (tf - t0)
next_order = neutral ? order_discontinuity_t0 : order_discontinuity_t0 + 1
for lag in constant_lags
if tdir * lag < maxlag
t = tdir * (t0 + lag)
push!(tstops_propagated, t)
d = Discontinuity{T, Int}(t, next_order)
push!(d_discontinuities_propagated, d)
end
end
end
return tstops_propagated, d_discontinuities_propagated
end
struct DDEDefaultInit <: DiffEqBase.DAEInitializationAlgorithm end
function DiffEqBase.initialize_dae!(integrator::DDEIntegrator, initializealg = integrator.initializealg)
OrdinaryDiffEqCore._initialize_dae!(integrator, integrator.sol.prob, initializealg,
Val(DiffEqBase.isinplace(integrator.sol.prob)))
end
function OrdinaryDiffEqCore._initialize_dae!(integrator::DDEIntegrator, prob, ::DDEDefaultInit, isinplace)
if SciMLBase.has_initializeprob(prob.f)
OrdinaryDiffEqCore._initialize_dae!(integrator, prob, SciMLBase.OverrideInit(), isinplace)
else
OrdinaryDiffEqCore._initialize_dae!(integrator, prob, SciMLBase.CheckInit(), isinplace)
end
end