-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ODE Solvers to Julia #3918
Comments
@B-rando1, you should have a look at Dong's report on solving ODEs in Drasil. I only did a quick google, but DifferentialEquations.jl looks pretty good. They have translations of standard libraries, which probably look like the code we already have for Python. Don't worry about anything clever for the algorithms. Our current ODEs examples are well-behaved and not likely to require any numerical tricks for stiff systems. |
I created a case study for Julia's ODE solver with |
I did some work getting us as close as we currently can to generating ODE solver code in Julia. Unfortunately, we need structs in GProc to finish it off. For more details, see my PR draft #3931. |
Most of the examples in Drasil require an ODE solver. In Drasil we don't have information set up about an ODE library for Julia. Thus, enabling
Bundled
inputs in Julia (via structs) isn't actually enough to get these examples up and working - we also need the ODE libraries working.There doesn't seem to be much documentation that I could find on how ODEs are represented in Drasil. I found a wiki page giving a theory recap and a few issues discussing them (e.g. #394), but I still don't really know how they work.
I have two main questions:
The text was updated successfully, but these errors were encountered: