aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: efa44f98e26800b0f2a1511bf19a5437bc8f9063 (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 Cartoon2D
# $Header$

if (cartoon_active)
{
  if (allow_grid_resize)
  {
    schedule Cartoon2D_SetGrid at CCTK_RECOVER_PARAMETERS
    {
      LANG: C
    } "Adjust grid sizes"
  }

  schedule Cartoon2D_CheckParameters at CCTK_PARAMCHECK
  {
    LANG: C
  } "Check Cartoon2D parameters"

  schedule Cartoon_SetSym_Einstein at CCTK_BASEGRID after SpatialCoordinates
  {
    LANG: C
  } "Reset symmetries for Einstein grid functions"

  schedule Cartoon_SetSym_BSSN at CCTK_BASEGRID after SpatialCoordinates
  {
    LANG: C
  } "Reset symmetries for ADM_BSSN grid functions"
}