aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl28
1 files changed, 28 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
new file mode 100644
index 0000000..f9335d6
--- /dev/null
+++ b/schedule.ccl
@@ -0,0 +1,28 @@
+# Schedule definitions for thorn StaticConformal
+# $Header$
+
+if(CCTK_Equals(metric_type,"static conformal"))
+{
+ STORAGE: conformal_state
+
+ SCHEDULE StaticConformal_InitialiseState at CCTK_BASEGRID
+ {
+ LANG: C
+ } "Set the conformal_state variable to 0"
+
+
+ if(CCTK_Equals(conformal_storage, "factor"))
+ {
+ STORAGE: staticconformal::confac
+ }
+
+ if(CCTK_Equals(conformal_storage, "factor+derivs"))
+ {
+ STORAGE: staticconformal::confac, staticconformal::confac_1derivs
+ }
+
+ if(CCTK_Equals(conformal_storage, "factor+derivs+2nd derivs"))
+ {
+ STORAGE: staticconformal::confac, staticconformal::confac_1derivs, staticconformal::confac_1derivs
+ }
+}