aboutsummaryrefslogtreecommitdiff
path: root/Examples/Wave/schedule.ccl
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2012-01-23 13:17:26 -0600
committerIan Hinder <ian.hinder@aei.mpg.de>2012-01-23 13:17:26 -0600
commita65586203c3cb4bb4d16811bcc48715b31911e81 (patch)
tree97be7fa125aabb84144f404df421c6401fe763bc /Examples/Wave/schedule.ccl
parentd4a911e37e7302ad4414bf3824f0b73712705539 (diff)
Regenerate examples (except Advect)
Advect doesn't work at the moment due to a problem with TensorTools.
Diffstat (limited to 'Examples/Wave/schedule.ccl')
-rw-r--r--Examples/Wave/schedule.ccl47
1 files changed, 40 insertions, 7 deletions
diff --git a/Examples/Wave/schedule.ccl b/Examples/Wave/schedule.ccl
index ea09733..e9e28e0 100644
--- a/Examples/Wave/schedule.ccl
+++ b/Examples/Wave/schedule.ccl
@@ -1,11 +1,44 @@
# File produced by Kranc
-STORAGE: errors[3]
+if (timelevels == 1)
+{
+ STORAGE: errors[1]
+}
+if (timelevels == 2)
+{
+ STORAGE: errors[2]
+}
+if (timelevels == 3)
+{
+ STORAGE: errors[3]
+}
-STORAGE: exact[3]
+if (timelevels == 1)
+{
+ STORAGE: exact[1]
+}
+if (timelevels == 2)
+{
+ STORAGE: exact[2]
+}
+if (timelevels == 3)
+{
+ STORAGE: exact[3]
+}
-STORAGE: norms[3]
+if (timelevels == 1)
+{
+ STORAGE: norms[1]
+}
+if (timelevels == 2)
+{
+ STORAGE: norms[2]
+}
+if (timelevels == 3)
+{
+ STORAGE: norms[3]
+}
if (timelevels == 1)
{
@@ -54,7 +87,7 @@ schedule Wave_RegisterSymmetries in SymmetryRegister
if (CCTK_EQUALS(initial_data, "sine"))
{
- schedule wave_exact_sine AT INITIAL before import_exact
+ schedule wave_exact_sine AT INITIAL before import_exact before import_exact
{
LANG: C
} "wave_exact_sine"
@@ -63,7 +96,7 @@ if (CCTK_EQUALS(initial_data, "sine"))
if (CCTK_EQUALS(initial_data, "sine"))
{
- schedule wave_exact_sine AT POSTSTEP before calc_errors
+ schedule wave_exact_sine AT POSTSTEP before calc_errors before import_exact
{
LANG: C
} "wave_exact_sine"
@@ -72,7 +105,7 @@ if (CCTK_EQUALS(initial_data, "sine"))
if (CCTK_EQUALS(initial_data, "gaussian"))
{
- schedule wave_exact_gaussian AT INITIAL before import_exact
+ schedule wave_exact_gaussian AT INITIAL before import_exact before import_exact
{
LANG: C
} "wave_exact_gaussian"
@@ -81,7 +114,7 @@ if (CCTK_EQUALS(initial_data, "gaussian"))
if (CCTK_EQUALS(initial_data, "gaussian"))
{
- schedule wave_exact_gaussian AT POSTSTEP before calc_errors
+ schedule wave_exact_gaussian AT POSTSTEP before calc_errors before import_exact
{
LANG: C
} "wave_exact_gaussian"