aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl9
1 files changed, 8 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 09a7d32..59b4a50 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -66,7 +66,7 @@ if ( (CCTK_Equals(initial_data,"slice")) && ! (CCTK_Equals(evolution_method,"sli
if ( (CCTK_Equals(initial_lapse,"exact")) || (CCTK_Equals(initial_shift,"exact")) )
{
- schedule Exact__gauge in ADMBase_InitialData after Exact__decode_pars
+ schedule Exact__gauge in ADMBase_InitialGauge
{
LANG: Fortran
} "Set initial lapse and/or shift from exact solution on a trivial slice"
@@ -82,10 +82,17 @@ if ( (CCTK_Equals(lapse_evolution_method,"exact")) || (CCTK_Equals(shift_evoluti
OPTIONS: global
} "Register slicings"
+ # Necessary if MoL is not used
schedule Exact__gauge at CCTK_PRESTEP
{
LANG: Fortran
} "Set evolution lapse and/or shift from exact solution on a trivial slice"
+
+ # Necessary if MoL is used
+ schedule Exact__gauge in MoL_PostStep
+ {
+ LANG: Fortran
+ } "Set evolution lapse and/or shift from exact solution on a trivial slice"
}
#######################################################################