aboutsummaryrefslogtreecommitdiff
path: root/ML_FOWaveToy/schedule.ccl
blob: c6a7602355c2e7ac604b07ac620f327f23727491 (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
# File produced by user eschnett
# Produced with Mathematica Version 7.0 for Mac OS X x86 (64-bit) (November 11, 2008)

# Mathematica script written by Ian Hinder and Sascha Husa


STORAGE: WT_w[1]

STORAGE: WT_rhorhs[1]

STORAGE: WT_urhs[1]

STORAGE: WT_vrhs[1]

if (timelevels == 1)
{
  STORAGE: WT_rho[1]
}
if (timelevels == 2)
{
  STORAGE: WT_rho[2]
}

if (timelevels == 1)
{
  STORAGE: WT_u[1]
}
if (timelevels == 2)
{
  STORAGE: WT_u[2]
}

if (timelevels == 1)
{
  STORAGE: WT_v[1]
}
if (timelevels == 2)
{
  STORAGE: WT_v[2]
}

schedule ML_FOWaveToy_Startup at STARTUP
{
  LANG: C
  OPTIONS: meta
} "create banner"

schedule ML_FOWaveToy_RegisterVars in MoL_Register
{
  LANG: C
  OPTIONS: meta
} "Register Variables for MoL"

schedule ML_FOWaveToy_RegisterSymmetries in SymmetryRegister
{
  LANG: C
  OPTIONS: meta
} "register symmetries"

schedule WTFO_Gaussian AT initial
{
  LANG: C
} "WTFO_Gaussian"

schedule WTFO_RHS IN MoL_CalcRHS
{
  LANG: C
} "WTFO_RHS"

schedule WTFO_RHS AT analysis
{
  LANG: C
  SYNC: WT_rhorhs
  SYNC: WT_urhs
  SYNC: WT_vrhs
} "WTFO_RHS"

schedule WTFO_constraints AT analysis
{
  LANG: C
  SYNC: WT_w
} "WTFO_constraints"

schedule ML_FOWaveToy_ApplyBoundConds in MoL_PostStep
{
  LANG: C
  OPTIONS: level
  SYNC: WT_rho
  SYNC: WT_u
  SYNC: WT_v
} "apply boundary conditions"

schedule ML_FOWaveToy_CheckBoundaries at BASEGRID
{
  LANG: C
  OPTIONS: meta
} "check boundaries treatment"

schedule group ApplyBCs as ML_FOWaveToy_ApplyBCs in MoL_PostStep  after ML_FOWaveToy_ApplyBoundConds
{
  # no language specified
} "Apply boundary conditions controlled by thorn Boundary"