aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: bc410ca2669b8f22e645750f8a0a7d35aede4741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Schedule definitions for thorn TwoPunctures
# $Header$

if (CCTK_Equals(initial_data, "twopunctures"))
{
  if (keep_u_around) {
    STORAGE: puncture_u
  }

  SCHEDULE TwoPunctures_ParamCheck AT PARAMCHECK
  {
    LANG: C
  } "Check parameters and thorn needs"

  SCHEDULE TwoPunctures IN ADMBase_InitialData
  {
    LANG: C
    STORAGE: puncture_u
    SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
  } "Create puncture black hole initial data"
}