aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 1adbc4c579dcbe48bcef1695ecfce4a210b598b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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
  COMMUNICATION: scalartmps
} "Evolution of 3D wave equation"