aboutsummaryrefslogtreecommitdiff
path: root/Examples/SimpleWaveScript/schedule.ccl
blob: 49113c03eb778a514cef19dcfa0da0b119d39d60 (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
# File produced by Kranc


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

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

if (rhs_timelevels == 1)
{
  STORAGE: phi_grouprhs[1]
}
if (rhs_timelevels == 2)
{
  STORAGE: phi_grouprhs[2]
}
if (rhs_timelevels == 3)
{
  STORAGE: phi_grouprhs[3]
}

if (rhs_timelevels == 1)
{
  STORAGE: pi_grouprhs[1]
}
if (rhs_timelevels == 2)
{
  STORAGE: pi_grouprhs[2]
}
if (rhs_timelevels == 3)
{
  STORAGE: pi_grouprhs[3]
}

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

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

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

schedule initial_sine_calc at initial
{
  LANG: C
} "initial_sine_calc"

schedule calc_rhs in mol_calcrhs
{
  LANG: C
} "calc_rhs"

schedule SimpleWaveScript_SelectBoundConds in MoL_PostStep
{
  LANG: C
  OPTIONS: level
  SYNC: phi_group
  SYNC: pi_group
} "select boundary conditions"

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

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