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
This was working on the Catalyst tests up until the v9.66 release, so probably related.
Simple system, just consisting of a simple algebraic equation. Probably related to why we have an error.
using ModelingToolkit
using ModelingToolkit: t_nounits as t, D_nounits as D
using OrdinaryDiffEqDefault
@variablesX(t)
eqs = [2X ~6.0- X]
@mtkbuild osys =ODESystem(eqs, t)
u0 = [X =>1.0]
oprob =ODEProblem(osys, u0, 1.0)
sol =solve(oprob)
If things like this shouldn't be simualteable in the first way, there should probably be an error when one tries to create an ODESystem that cannot be simualted.
The text was updated successfully, but these errors were encountered:
This was working on the Catalyst tests up until the v9.66 release, so probably related.
Simple system, just consisting of a simple algebraic equation. Probably related to why we have an error.
If things like this shouldn't be simualteable in the first way, there should probably be an error when one tries to create an
ODESystem
that cannot be simualted.The text was updated successfully, but these errors were encountered: