aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorallen <allen@4451c3c6-1034-4891-99ea-21147727ccdf>1999-07-25 20:43:55 +0000
committerallen <allen@4451c3c6-1034-4891-99ea-21147727ccdf>1999-07-25 20:43:55 +0000
commit7a90dca5f61a61ec27fde2268f2b823b0eadc7ad (patch)
tree7fc320cae6fd721191636fafb0750be3c7de8c4a /schedule.ccl
parent567098d30977b236e82ff7b61d421c2f4531e2d1 (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/WaveToyF77/trunk@3 4451c3c6-1034-4891-99ea-21147727ccdf
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl38
1 files changed, 38 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
new file mode 100644
index 0000000..80e7e7d
--- /dev/null
+++ b/schedule.ccl
@@ -0,0 +1,38 @@
+# Schedule definitions for thorn WaveToyF77
+# $Header$
+
+schedule WaveToyF77_Startup at CCTK_STARTUP
+{
+ LANG: C
+} "Register the Wave Toy (F77) banner"
+
+schedule WaveToyF77_InitSymBound at CCTK_BASEGRID
+{
+ LANG: Fortran
+} "Schedule symmetries for Wave Toy (F77)"
+
+schedule WaveToyF77_CheckParameters at CCTK_PARAMCHECK
+{
+ LANG: Fortran
+} "Check parameters for Wave Toy (F77)"
+
+
+# The basic fields always need memory and communication
+# -----------------------------------------------------
+STORAGE: scalarfields
+COMMUNICATION: scalarfields
+
+schedule WaveToyF77_InitialData at CCTK_INITIAL
+{
+ LANG: Fortran
+} "Initialisation of example 3D wave equation"
+
+# Scalartmps are needed, without communication, during evolution
+# --------------------------------------------------------------
+schedule WaveToyF77_evolution at CCTK_EVOL
+{
+ LANG: Fortran
+ STORAGE: scalartmps
+} "Evolution of example 3D wave equation"
+
+