ODEInterface.jl
ODEInterface.jl copied to clipboard
julia package providing an interface for ODE-solvers written in Fortran
Hi and thank you for this package! Is there a change you can extend it to solve boundary value DAEs w/ COLDAE?
I'm using Windows 64-bit and I can't get any of the methods in this package to work. I usually work in notebooks but below is a transcript from my terminal...
When building I get the following error: ``` Error: Rank mismatch in argument 'yold' at (1) (rank-1 and scalar) C:\Users\***\.julia\packages\ODEInterface\Dz5xs\src\bvpsol.f:4853:40: 4853 | CALL BLDFSC ('ACCEPTED', Y, N, DUMMY, YWGT, YMAX,...
As far as I see, bvpm2 only handles singularities at the start, is there a way to handle also the case where you have singularities at both sides?
For the DiffEq wrapper of BVPSOL, I am hoping that we can allow any common interface method for the `odesolver` in BVPSOL. How exactly would I set that up? More...
You can find ROCK2 and ROCK4 from [Hairer's site](http://www.unige.ch/~hairer/software.html) as well as mildly-stiff integrators. I think this would be a good home for them. (also brainstorming, would you include the...
This PR adds an `apple_silicon_flag` to the build function in `build.jl` to automatically opt into building locally when called on AppleSilicon hardware. Similarly, the `loadODESolvers()` function now looks for local...
Fix #32 This PR adds the [COLDAE](https://www.netlib.org/ode/coldae.f) solver for ODEInterface.jl, it is still a WIP, so I need to further polish this until all the APIs are compatiable with the...