aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl18
1 files changed, 18 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index add994d..3c5b82a 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -567,6 +567,24 @@ else if (CCTK_Equals(ODE_Method,"RK45"))
LANG: C
} "Updates calculated with the Runge-Kutta 45 method"
}
+else if (CCTK_Equals(ODE_Method,"RK65"))
+{
+ STORAGE: ErrorEstimate ErrorScalars
+
+ schedule MoL_RK65Add AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
+ {
+ LANG: C
+ } "Updates calculated with the Runge-Kutta 65 method"
+}
+else if (CCTK_Equals(ODE_Method,"RK87"))
+{
+ STORAGE: ErrorEstimate ErrorScalars
+
+ schedule MoL_RK87Add AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
+ {
+ LANG: C
+ } "Updates calculated with the Runge-Kutta 87 method"
+}
else if (CCTK_Equals(ODE_Method,"ICN"))
{
schedule MoL_ICNAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep