Skip to content

Commit a76eb5c

Browse files
Update split_ode_solve.md
1 parent 2220704 commit a76eb5c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/src/solvers/split_ode_solve.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,17 @@ The appropriate algorithms for this form are:
2121

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

2528
### Sundials.jl
2629

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

2932
## Semilinear ODE
3033

31-
The Semilinear ODE is a split `ODEProblem` with two functions:
34+
The Semilinear ODE is a split `ODEProblem` with one linear operator and one function:
3235

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

0 commit comments

Comments
 (0)