Skip to content

Commit

Permalink
Update split_ode_solve.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Dec 29, 2017
1 parent 2220704 commit a76eb5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/solvers/split_ode_solve.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ The appropriate algorithms for this form are:

- `SplitEuler`: 1st order fully explicit method. Used for testing accuracy
of splits.
- `KenCarp3`: An A-L stable stiffly-accurate 3rd order ESDIRK method
- `KenCarp4`: An A-L stable stiffly-accurate 4rd order ESDIRK method
- `KenCarp5`: An A-L stable stiffly-accurate 5rd order ESDIRK method

### Sundials.jl

- `ARKODE`: An additive Runge-Kutta method. Not yet implemented.

## Semilinear ODE

The Semilinear ODE is a split `ODEProblem` with two functions:
The Semilinear ODE is a split `ODEProblem` with one linear operator and one function:

```math
\frac{du}{dt} = Au + f(t,u)
Expand Down

0 comments on commit a76eb5c

Please sign in to comment.