aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl16
1 files changed, 15 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 48283fd..21896e3 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -551,6 +551,13 @@ if (CCTK_Equals(ODE_Method,"Generic"))
LANG: C
} "Updates calculated with a generic method"
}
+else if (CCTK_Equals(ODE_Method,"Euler"))
+{
+ schedule MoL_EulerAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
+ {
+ LANG: C
+ } "Updates calculated with the Euler method"
+}
else if (CCTK_Equals(ODE_Method,"RK2"))
{
schedule MoL_RK2Add AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
@@ -613,6 +620,13 @@ else if (CCTK_Equals(ODE_Method,"ICN-avg"))
LANG: C
} "Updates calculated with the averaging ICN method"
}
+else if (CCTK_Equals(ODE_Method,"AB"))
+{
+ schedule MoL_ABAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
+ {
+ LANG: C
+ } "Updates calculated with the Adams-Bashforth"
+}
else if (CCTK_Equals(ODE_Method,"RK2-MR-2:1"))
{
schedule MoL_RK2_MR_2_1_Add AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
@@ -765,7 +779,7 @@ schedule MoL_ResetDeltaTime IN MoL_Step AFTER (MoL_PostStep MoL_PostStepModify)
### variables to their original state. ###
##################################################
-schedule MoL_RestoreSandR IN MoL_Evolution AFTER MoL_FinishLoop
+schedule MoL_RestoreSandR IN MoL_Evolution AFTER (MoL_ReduceAdaptiveError MoL_FinishLoop)
{
LANG: C
} "Restoring the Save and Restore variables to the original state"