aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 47a06eb2d51f87a05941f8b26911e288774ea861 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Schedule definitions for thorn Cartoon2D
# $Header$

if (cartoon_active)
{
  STORAGE: excision_variables

  STORAGE: coord

  schedule Cartoon2D_setup_coord at CCTK_POSTREGRID {
    LANG: C
  } ""

  schedule Cartoon2D_setup_coord at CCTK_POSTREGRIDINITIAL {
    LANG: C
  } ""

  schedule Cartoon2D_setup_coord at CCTK_BASEGRID {
    LANG: C
  } ""

  schedule Cartoon2D_CheckTensorTypes at CCTK_PARAMCHECK
  {
    LANG: C
    OPTIONS: meta
  } "Check tensor type definitions for consistency"

  schedule Cartoon2D_InitExcisionVars at CCTK_BASEGRID
  {
    LANG: C
    OPTIONS: global
  } "Initialize the excision variables"

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

  schedule Cartoon2D_RegisterSymmetries in SymmetryRegister
  {
    LANG: C
    OPTIONS: global
  } "Register symmetry boundaries"

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

  # Apply cartoon boundary conditions after physical boundaries:
  schedule Cartoon_ApplyBoundaries in BoundaryConditions after Boundary_ApplyPhysicalBCs
  {
    LANG: C
  } "Apply Cartoon boundary conditions"
}