From a76eb5cb6b6f33a372be0a5d59fbe670298b556d Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Fri, 29 Dec 2017 07:10:07 -0800 Subject: [PATCH] Update split_ode_solve.md --- docs/src/solvers/split_ode_solve.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/src/solvers/split_ode_solve.md b/docs/src/solvers/split_ode_solve.md index a0c3ad9818..6cfd40c479 100644 --- a/docs/src/solvers/split_ode_solve.md +++ b/docs/src/solvers/split_ode_solve.md @@ -21,6 +21,9 @@ 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 @@ -28,7 +31,7 @@ The appropriate algorithms for this form are: ## 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)