aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl22
1 files changed, 17 insertions, 5 deletions
diff --git a/schedule.ccl b/schedule.ccl
index bc410ca..4d6e4ee 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -12,10 +12,22 @@ if (CCTK_Equals(initial_data, "twopunctures"))
LANG: C
} "Check parameters and thorn needs"
- SCHEDULE TwoPunctures IN ADMBase_InitialData
+ if (schedule_in_ADMBase_InitialData)
{
- LANG: C
- STORAGE: puncture_u
- SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
- } "Create puncture black hole initial data"
+ SCHEDULE TwoPunctures IN ADMBase_InitialData
+ {
+ LANG: C
+ STORAGE: puncture_u
+ SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
+ } "Create puncture black hole initial data"
+ }
+ else
+ {
+ SCHEDULE TwoPunctures AT Initial AFTER ADMBase_InitialData BEFORE ADMBase_PostInitial AFTER TOV_Initial_Data
+ {
+ LANG: C
+ STORAGE: puncture_u
+ SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
+ } "Create puncture black hole initial data"
+ }
}