aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: f52cbb7e398ac971fdce416f6d5dae8ab008b589 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# Schedule definitions for thorn HydroBase

if (timelevels == 1)
{
  STORAGE: rho[1]
  STORAGE: press[1]
  STORAGE: eps[1]
  STORAGE: vel[1]
  if (!CCTK_EQUALS(initial_Y_e, "none"))
  {
    STORAGE: Y_e[1]
  }
  if (!CCTK_EQUALS(initial_Bvec, "none"))
  {
    STORAGE: Bvec[1]
  }
  if (!CCTK_EQUALS(initial_temperature, "none"))
  {
    STORAGE: temperature[1]
  }
  if (!CCTK_EQUALS(initial_entropy, "none"))
  {
    STORAGE: entropy[1]
  }
}
else if (timelevels == 2)
{
  STORAGE: rho[2]
  STORAGE: press[2]
  STORAGE: eps[2]
  STORAGE: vel[2]
  if (!CCTK_EQUALS(initial_Y_e, "none"))
  {
    STORAGE: Y_e[2]
  }
  if (!CCTK_EQUALS(initial_Bvec, "none"))
  {
    STORAGE: Bvec[2]
  }
  if (!CCTK_EQUALS(initial_temperature, "none"))
  {
    STORAGE: temperature[2]
  }
  if (!CCTK_EQUALS(initial_entropy, "none"))
  {
    STORAGE: entropy[2]
  }
}
else if (timelevels == 3)
{
  STORAGE: rho[3]
  STORAGE: press[3]
  STORAGE: eps[3]
  STORAGE: vel[3]
  if (!CCTK_EQUALS(initial_Y_e, "none"))
  {
    STORAGE: Y_e[3]
  }
  if (!CCTK_EQUALS(initial_Bvec, "none"))
  {
    STORAGE: Bvec[3]
  }
  if (!CCTK_EQUALS(initial_temperature, "none"))
  {
    STORAGE: temperature[3]
  }
  if (!CCTK_EQUALS(initial_entropy, "none"))
  {
    STORAGE: entropy[3]
  }
}

if (hydro_excision)
{
  STORAGE: hydro_excision_mask
}

schedule group HydroBase_Initial at CCTK_INITIAL    \
    after (ADMBase_InitialData ADMBase_InitialGauge \
           IOUtil_RecoverIDFromDatafiles)           \
    before (ADMBase_PostInitial SetTmunu)
{
} "HydroBase initial data group"

schedule HydroBase_StartUp at CCTK_STARTUP
{
  LANG: C
} "Startup banner"

schedule group HydroBase_RHS in MoL_CalcRHS
{
} "Groups for scheduling tasks for calculating RHS of hydro variables"

schedule group HydroBase_PostStep in MoL_PostStep before SetTmunu after ADMBase_SetADMVars
{
} "Post step tasks for hydro thorns"

# Hydro thorns should not schedule anything in group
# HydroBase_Boundaries; they should schedule in
# HydroBase_Select_Boundaries instead.  However, they may refer to
# HydroBase_Boundaries in order to schedule own routines before or
# after the boundary treatment, or in order to schedule the whole
# group.
schedule group HydroBase_Boundaries in HydroBase_PostStep \
    before HydroBase_Con2Prim
{
} "HydroBase-internal Boundary conditions group"

# This is where hydro thorns schedule functions that select which
# boundary conditions should be applied to which variables.
schedule group HydroBase_Select_Boundaries in HydroBase_Boundaries
{
} "Group to schedule the boundary condition functions"

# This group actually applies all selected boundary conditions.  Hydro
# thorns should not need to change anything here.
schedule group ApplyBCs as HydroBase_ApplyBCs in HydroBase_Boundaries \
    after HydroBase_Select_Boundaries
{
} "Apply the boundary conditions of HydroBase"

# Hydro thorns should schedule their Con2Prim routines in this group.
# This group is then scheduled at different times during an evolution.
schedule group HydroBase_Con2Prim in HydroBase_PostStep
{
} "Convert from conservative to primitive variables"

schedule group HydroBase_Con2Prim at CCTK_PostPostInitial as Con2Prim \
    before ADMConstraintsGroup
{
} "Convert from conservative to primitive variables (might be redundant)"

# Hydro thorns should schedule their Prim2Con routines in this group.
# This group is then scheduled at different times during an evolution.
schedule group HydroBase_Prim2ConInitial at CCTK_INITIAL \
    after HydroBase_Initial before SetTmunu
{
} "Recover the conservative variables from the primitive variables"



if (CCTK_EQUALS(initial_hydro, "zero"))
{
  schedule HydroBase_Zero in HydroBase_Initial
  {
    LANG: C
  } "Set up vacuum hydro initial data"
}

if (CCTK_Equals(initial_Y_e, "one"))
{
  SCHEDULE HydroBase_Y_e_one in HydroBase_Initial
  {
    LANG: C
  } "Set electron fraction to 1"
}

if (CCTK_Equals(initial_Bvec, "zero"))
{
  SCHEDULE HydroBase_Bvec_zero in HydroBase_Initial
  {
    LANG: C
  } "Set magnetic field to 0"
}

if (hydro_excision)
{
  schedule GROUP HydroBase_ExcisionMaskSetup in HydroBase_Initial
  {
  } "Set up hydro excision mask"
  schedule GROUP HydroBase_ExcisionMaskSetup at PostRegridInitial
  {
  } "Set up hydro excision mask"
  schedule GROUP HydroBase_ExcisionMaskSetup at PostRegrid
  {
  } "Set up hydro excision mask"
  schedule GROUP HydroBase_ExcisionMaskSetup at Post_Recover_Variables
  {
  } "Set up hydro excision mask"

  schedule HydroBase_InitExcisionMask in HydroBase_ExcisionMaskSetup
  {
    LANG: C
  } "Initialize hydro excision mask to 'no excision everywhere'"

  schedule GROUP HydroBase_ExcisionHasBeenSet at CCTK_PostStep
  {
  } "Group to schedule thorns changing the mask before and thorns using the mask after"
}