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
Hi, @ChrisRackauckas , @YingboMa
I am working with a DB where ODE models (parameters, diffeqs, init values, etc) are stored in a language neutral form. So, I can get all the components of ODEProblem from DB and convert (parse) them in Julia to Expressions like:
ex = quote
v1 = k1*A*comp1
dA = -v1/comp1
dB = v1/comp1
end
params = (:k1, :comp1)
depend_vars = (:A, :B)
The interface I am looking for is a way to turn such input to DiffEqSystem and ODEProblem. Is it already supported in macro-free version?
The text was updated successfully, but these errors were encountered:
But I think that right now that needs to know the variable context. A version of parsing where you can pass in what names correspond to what kinds of variables, and have a bunch of stuff defined/returned would be good to have, and @YingboMa 's tooling should already be close.
Hi, @ChrisRackauckas , @YingboMa
I am working with a DB where ODE models (parameters, diffeqs, init values, etc) are stored in a language neutral form. So, I can get all the components of
ODEProblem
from DB and convert (parse) them in Julia toExpressions
like:The interface I am looking for is a way to turn such input to
DiffEqSystem
andODEProblem
. Is it already supported in macro-free version?The text was updated successfully, but these errors were encountered: