Skip to content

Commit 80caf1e

Browse files
committed
fix: fix typos and to_term differentials in affect equations
1 parent fcb10f9 commit 80caf1e

File tree

2 files changed

+13
-19
lines changed

2 files changed

+13
-19
lines changed

src/systems/callbacks.jl

+13-7
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,8 @@ function make_affect(affect::Vector{Equation}; discrete_parameters::AbstractVect
264264
@warn "Affect equation $eq has no `Pre` operator. As such it will be interpreted as an algebraic equation to be satisfied after the callback. If you intended to use the value of a variable x before the affect, use Pre(x)."
265265
end
266266
collect_vars!(dvs, params, eq, iv; op = Pre)
267+
diffvs = collect_applied_operators(eq, Differential)
268+
union!(dvs, diffvs)
267269
end
268270
for eq in algeeqs
269271
collect_vars!(dvs, params, eq, iv)
@@ -272,23 +274,28 @@ function make_affect(affect::Vector{Equation}; discrete_parameters::AbstractVect
272274
pre_params = filter(haspre value, params)
273275
sys_params = collect(setdiff(params, union(discrete_parameters, pre_params)))
274276
discretes = map(tovar, discrete_parameters)
277+
dvs = collect(dvs)
278+
_dvs = map(default_toterm, dvs)
279+
275280
aff_map = Dict(zip(discretes, discrete_parameters))
276281
rev_map = Dict(zip(discrete_parameters, discretes))
277-
affect = Symbolics.fast_substitute(affect, rev_map)
278-
algeeqs = Symbolics.fast_substitute(algeeqs, rev_map)
282+
subs = merge(rev_map, Dict(zip(dvs, _dvs)))
283+
affect = Symbolics.fast_substitute(affect, subs)
284+
algeeqs = Symbolics.fast_substitute(algeeqs, subs)
285+
279286
@named affectsys = ImplicitDiscreteSystem(
280-
vcat(affect, algeeqs), iv, collect(union(dvs, discretes)),
287+
vcat(affect, algeeqs), iv, collect(union(_dvs, discretes)),
281288
collect(union(pre_params, sys_params)))
282-
affectsys = structural_simplify(affect_sys; fully_determined = false)
289+
affectsys = structural_simplify(affectsys; fully_determined = false)
283290
# get accessed parameters p from Pre(p) in the callback parameters
284291
accessed_params = filter(isparameter, map(unPre, collect(pre_params)))
285292
union!(accessed_params, sys_params)
286293
# add unknowns to the map
287-
for u in dvs
294+
for u in _dvs
288295
aff_map[u] = u
289296
end
290297

291-
AffectSystem(affectsys, collect(dvs), collect(accessed_params),
298+
AffectSystem(affectsys, collect(_dvs), collect(accessed_params),
292299
collect(discrete_parameters), aff_map)
293300
end
294301

@@ -811,7 +818,6 @@ function compile_affect(
811818
end
812819

813820
function wrap_save_discretes(f, save_idxs)
814-
@show save_idxs
815821
let save_idxs = save_idxs
816822
if f === SciMLBase.INITIALIZE_DEFAULT
817823
(c, u, t, i) -> begin

src/utils.jl

-12
Original file line numberDiff line numberDiff line change
@@ -499,18 +499,6 @@ function collect_applied_operators(x, op)
499499
end
500500
end
501501

502-
function find_derivatives!(vars, expr::Equation, f = identity)
503-
(find_derivatives!(vars, expr.lhs, f); find_derivatives!(vars, expr.rhs, f); vars)
504-
end
505-
function find_derivatives!(vars, expr, f)
506-
!iscall(O) && return vars
507-
operation(O) isa Differential && push!(vars, f(O))
508-
for arg in arguments(O)
509-
vars!(vars, arg)
510-
end
511-
return vars
512-
end
513-
514502
"""
515503
$(TYPEDSIGNATURES)
516504

0 commit comments

Comments
 (0)