aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@5c0f84ea-6048-4d6e-bfa4-55cd5f2e0dd7>2005-03-21 18:48:04 +0000
committerschnetter <schnetter@5c0f84ea-6048-4d6e-bfa4-55cd5f2e0dd7>2005-03-21 18:48:04 +0000
commitbba69a7e77c91ccbc2776159478dfac1e93255db (patch)
tree6ca1058dd849c9dc72688b107544b0b80f9e34bf /schedule.ccl
parentb68b294b343f555efeaa085fe08ba03aa6d9cd11 (diff)
Add a new type of plane waves: these are sinusoidal, as necessary for
the Mexico tests. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDLinearWaves/trunk@89 5c0f84ea-6048-4d6e-bfa4-55cd5f2e0dd7
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"
+}