aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 48d8cc27643543e05362f7f8f0f5a01e7b89ea67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 AT CCTK_Initial AFTER Whisky_Initial AFTER ADMBase_InitialData AFTER TOV_Initial_Data
  {
    LANG: C
    STORAGE: puncture_u
  } "Create puncture black hole initial data"
}