You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using ModelingToolkit, OrdinaryDiffEq
using ModelingToolkit: t_nounits as t, D_nounits as D
@variablesy(t)
@named sys =ODESystem([D(y) ~1], t; defaults = [y =>D(y)])
sys =structural_simplify(sys)
dprob =ODEProblem(sys, [], (0.0, 1.0), [])
fails with
ERROR: Differential found in a non-differential system. Likely this is a bug in the construction of an initialization system. Please report this issue with a reproducible example. Offending equation: 0 ~ -y(t) + Differential(t)(y(t))
The text was updated successfully, but these errors were encountered:
fails with
The text was updated successfully, but these errors were encountered: