SciFracX / FractionalDiffEq.jl

Solve Fractional Differential Equations using high performance numerical methods
https://scifracx.github.io/FractionalDiffEq.jl/dev/
MIT License
81 stars 11 forks source link

NonLinearAlg in julia #35

Closed beloved321 closed 2 years ago

beloved321 commented 2 years ago

julia> result = solve(prob, h, tf, NonLinearAlg(1)) ERROR: MethodError: no method matching NonLinearAlg(::Int64) can some one put me through this

ErikQQY commented 2 years ago

Hi there!! I think the right usage should be:

solve(prob, h, NonLinearAlg())

For the system of fractional ordinary differential equations, there are many solvers available, for example, Grunwald Letnikov difference method GL, fractional linear multiple-step method FLMMBDF, FLMMTrap and FLMMNewtonGregory. Also, there are solvers for Caputo-Fabrizio fractional operators such as NewtonPolynomial.

ErikQQY commented 2 years ago

I am doing a lot of refactoring recently, so the documents might be a little outdated, I just released version 0.2.6, and I think this version will improve the experience a lot.😄