aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rwxr-xr-xschedule.ccl19
1 files changed, 16 insertions, 3 deletions
diff --git a/schedule.ccl b/schedule.ccl
index ffa7278..4799da3 100755
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -145,13 +145,26 @@ if (CCTK_Equals(initial_Bvec, "zero"))
if (hydro_excision)
{
- schedule GROUP HydroBase_ExcisionHasBeenSet at CCTK_PostStep
+ schedule GROUP HydroBase_ExcisionMaskSetup in HydroBase_Initial
{
- } "Group to schedule thorns changing the mask before and thorns using the mask after"
+ } "Set up hydro excision mask"
+ schedule GROUP HydroBase_ExcisionMaskSetup at PostRegridInitial
+ {
+ } "Set up hydro excision mask"
+ schedule GROUP HydroBase_ExcisionMaskSetup at PostRegrid
+ {
+ } "Set up hydro excision mask"
+ schedule GROUP HydroBase_ExcisionMaskSetup at Post_Recover_Variables
+ {
+ } "Set up hydro excision mask"
- schedule HydroBase_InitExcisionMask in HydroBase_Initial
+ schedule HydroBase_InitExcisionMask in HydroBase_ExcisionMaskSetup
{
LANG: C
} "Initialize hydro excision mask to 'no excision everywhere'"
+
+ schedule GROUP HydroBase_ExcisionHasBeenSet at CCTK_PostStep
+ {
+ } "Group to schedule thorns changing the mask before and thorns using the mask after"
}