aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl16
1 files changed, 16 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index e2b8975..db7c85e 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -5,6 +5,7 @@ if (CCTK_Equals(initial_data,"planewaves"))
schedule IDLinearWaves_ParamChecker at CCTK_PARAMCHECK
{
LANG: C
+ OPTIONS: global
} "Check that the metric_type is recognised"
schedule IDLinearWaves_PlaneWaves in ADMBase_InitialData
@@ -18,6 +19,7 @@ if (CCTK_Equals(initial_data,"standing_planewaves"))
schedule IDLinearWaves_ParamChecker at CCTK_PARAMCHECK
{
LANG: C
+ OPTIONS: global
} "Check that the metric_type is recognised"
schedule IDLinearWaves_StandWaves in ADMBase_InitialData
@@ -31,6 +33,7 @@ if (CCTK_Equals(initial_data,"teukwaves"))
schedule IDLinearWaves_ParamChecker at CCTK_PARAMCHECK
{
LANG: C
+ OPTIONS: global
} "Check that the metric_type is recognised"
schedule IDLinearWaves_TeukWaves in ADMBase_InitialData
@@ -39,3 +42,16 @@ if (CCTK_Equals(initial_data,"teukwaves"))
} "Construct linear Teukolsky wave initial data"
}
+if (CCTK_Equals(initial_data,"sine_planewaves"))
+{
+ schedule IDLinearWaves_ParamChecker at CCTK_PARAMCHECK
+ {
+ LANG: C
+ OPTIONS: global
+ } "Check that the metric_type is recognised"
+
+ schedule IDLinearWaves_SinePlaneWaves in ADMBase_InitialData
+ {
+ LANG: Fortran
+ } "Construct linear plane wave initial data"
+}