aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: d29b43d0720b49e16243d3c251e72ad34aca8ade (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
29
30
# Schedule definitions for thorn IDLinearWaves



if (CCTK_Equals(initial_data,"planewaves")) 
{
  schedule IDLinearWaves_ParamChecker at CCTK_PARAMCHECK
  {
    LANG: C
  } "Check that the metric_type is recognised"

  schedule planewaves at CCTK_INITIAL
  {
    LANG: Fortran
  } "Construct linear planewave initial data"  
}

if (CCTK_Equals(initial_data,"teukwaves")) 
{
  schedule IDLinearWaves_ParamChecker at CCTK_PARAMCHECK
  {
    LANG: C
  } "Check that the metric_type is recognised"

  schedule teukwaves at CCTK_INITIAL
  {
    LANG: Fortran
  } "Construct linear Teukolsky wave initial data"  
}