Catalyst.jl
Catalyst.jl copied to clipboard
Chemical reaction network and systems biology interface for scientific machine learning (SciML). High performance, GPU-parallelized, and O(1) solvers in open source software.
Might be worth thinking about allowing more complicated derivative expressions on the left side of differential equations. ```julia @reaction_network begin @variables A(t) B(t) @equations D(A) + D(B) ~ A end...
SI units works, i.e. ```julia @test_nowarn @reaction_network begin @ivs t [unit=u"s"] @species begin X1(t), [unit=u"mol/m^3"] Z1(t), [unit=u"mol/m^3"] X2(t), [unit=u"mol/m^3"] Z2(t), [unit=u"mol/m^3"] X3(t), [unit=u"mol/m^3"] Y3(t), [unit=u"mol/m^3"] Z3(t), [unit=u"mol/m^3"] end @parameters begin...
This pull request changes the compat entry for the `CairoMakie` package from `0.12, 0.13` to `0.12, 0.13, 0.15` for package docs. This keeps the compat entries for earlier versions. Note:...
This pull request changes the compat entry for the `CairoMakie` package from `0.12, 0.13` to `0.12, 0.13, 0.15`. This keeps the compat entries for earlier versions. Note: I have not...
This pull request changes the compat entry for the `Makie` package from `0.22.1` to `0.22.1, 0.24`. This keeps the compat entries for earlier versions. Note: I have not tested your...
**Is your feature request related to a problem? Please describe.** The current modularization methods are ambiguous and produce unneeded parameters. This is a complex issue and the point of this...
Potentially (not fully sure, I don't really work much with this kind of models) it might make hierarchical modelling easier if one could define submodels directly in the DSL. I.e....
Now that we have things working well again let's brainstorm what our next functionality efforts should be: - ODE-jump correctness tests (then it is done) - functional affects in the...
A start toward #1284. Now the node labels for array species look like 
See https://discourse.julialang.org/t/building-catalyst-jl-reaction-network-from-a-csv-file-error-in-construction/130043 @vyudu any chance you could fix that?