We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2220704 commit a76eb5cCopy full SHA for a76eb5c
docs/src/solvers/split_ode_solve.md
@@ -21,14 +21,17 @@ The appropriate algorithms for this form are:
21
22
- `SplitEuler`: 1st order fully explicit method. Used for testing accuracy
23
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
27
28
### Sundials.jl
29
30
- `ARKODE`: An additive Runge-Kutta method. Not yet implemented.
31
32
## Semilinear ODE
33
-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:
35
36
```math
37
\frac{du}{dt} = Au + f(t,u)
0 commit comments