aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorallen <allen@90eea020-d82d-4da5-bf6e-4ee79ff7632f>1999-09-10 13:17:29 +0000
committerallen <allen@90eea020-d82d-4da5-bf6e-4ee79ff7632f>1999-09-10 13:17:29 +0000
commit5424fb9e49a1d37b3e1f13806bf6aa3d81e4874f (patch)
tree81ddca6c9e2f91f058639132c16cadef2595120b /schedule.ccl
parentf56f298c3b29c36f03bf55e7a44c7a6fc124bc0a (diff)
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyC/trunk@3 90eea020-d82d-4da5-bf6e-4ee79ff7632f
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl27
1 files changed, 27 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
new file mode 100644
index 0000000..45df973
--- /dev/null
+++ b/schedule.ccl
@@ -0,0 +1,27 @@
+# Schedule definitions for thorn WaveToyC
+# $Header$
+
+schedule WaveToyC_Startup at CCTK_STARTUP
+{
+ LANG: C
+} "Register banner"
+
+schedule WaveToyC_InitSymBound at CCTK_BASEGRID
+{
+ LANG: C
+} "Schedule symmetries"
+
+# The basic fields always need memory and communication
+# -----------------------------------------------------
+STORAGE: scalarevolve,scalarold
+COMMUNICATION: scalarevolve
+
+# Scalartmps are needed, without communication, during evolution
+# --------------------------------------------------------------
+schedule WaveToyC_Evolution at CCTK_EVOL
+{
+ LANG: C
+ STORAGE: scalartmps
+} "Evolution of 3D wave equation"
+
+