aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 3fd06003c86b967104ce51d936607e277d605b79 (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
# Schedule definitions for thorn SummationByParts
# $Header$

# Mask for norms
STORAGE: normmask

if (use_variable_deltas)
{
  STORAGE: deltas
}

SCHEDULE SBP_SetNormMask AT basegrid
{
  LANG: Fortran
} "Setup the mask for the calculation of the norm"

if (use_variable_deltas)
{
  SCHEDULE SBP_DeltaInitial AT basegrid
  {
    LANG: Fortran
  } "Initialize dissipation deltas"
}

if (check_grid_sizes)
{
  SCHEDULE SBP_CheckGridSizes AT postinitial
  {
    LANG: Fortran
  } "Check grid sizes and ghost zones"
}

if (use_dissipation)
{
  SCHEDULE SBP_DissipationAdd IN MoL_PostRHS
  {
    LANG: C
  } "Add SBP compatible dissipation to the right hand sides"
}