From c4896403254a6de126501a42f9cb046538a44727 Mon Sep 17 00:00:00 2001 From: schnetter Date: Sun, 19 Feb 2006 00:31:54 +0000 Subject: Implement RK45 Cash-Karp integrator in MoL. This integrator is similar to the existing RK45 integrator. It also supports adaptive time stepping, but uses slightly different coefficients. The Numerical Recipes say that it has "slightly better error properties". git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@110 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b --- schedule.ccl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'schedule.ccl') diff --git a/schedule.ccl b/schedule.ccl index 3c5b82a..1ab9518 100644 --- a/schedule.ccl +++ b/schedule.ccl @@ -558,7 +558,7 @@ else if (CCTK_Equals(ODE_Method,"RK3")) LANG: C } "Updates calculated with the efficient Runge-Kutta 3 method" } -else if (CCTK_Equals(ODE_Method,"RK45")) +else if (CCTK_Equals(ODE_Method,"RK45") || CCTK_Equals(ODE_Method,"RK45CK")) { STORAGE: ErrorEstimate ErrorScalars -- cgit v1.2.3