Gleb Pogudin
Gleb Pogudin
`GroebnerBasis.jl` is now depreciated, so it would be great to move the code to `msolve`. At the moment, F4 works only over finite fields, so one should either - refine...
## Main idea Many models of interest (especially, in life sciences) have linear first integrals (for example, conservation of mass, etc.). If there is such a first integral `a_1 *...
Alexey Ovchinnikov has reported the failure of an assertion during reparametrization on ```julia ode = @ODEmodel( x'(t) = b * (x(t)^2 + 1) / (2 * a), y(t) = 2...
Right now, the only way to describe a discrete-time system is via the `@DDSmodel` macro because the old `DiscreteSystem` interface has been removed from MTK. One the new interface will...
In addition to knowing the ODE system and time series data for some outputs, one frequently also knows the initial conditions for some of the states. It would be great...
The [SciML tutorial](https://docs.sciml.ai/ModelingToolkit/dev/tutorials/parameter_identifiability/) while working with the current version of the package does not have many of the recent features starting with allowing `measured_quantities` to be a list of expressions...
At the moment all the algorithms in the package require input models to have rational right-hand side (that is, the rhs must be a quotient of two polynomials). One way...
In addition to knowing the ODE system and time series data for some outputs, one frequently also knows the initial conditions for some of the states. It would be great...
Sometimes (see #128) the equations have the nested structure which, after unfolding into a rational function, becomes prohibitively large. For these cases it would be cool to have the local...