aboutsummaryrefslogtreecommitdiff
path: root/Examples/SimpleWave/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/SimpleWave/schedule.ccl')
-rw-r--r--Examples/SimpleWave/schedule.ccl19
1 files changed, 9 insertions, 10 deletions
diff --git a/Examples/SimpleWave/schedule.ccl b/Examples/SimpleWave/schedule.ccl
index 853e2ea..7512587 100644
--- a/Examples/SimpleWave/schedule.ccl
+++ b/Examples/SimpleWave/schedule.ccl
@@ -39,21 +39,21 @@ schedule SimpleWave_RegisterSymmetries in SymmetryRegister
OPTIONS: meta
} "register symmetries"
-schedule initial_sine AT INITIAL
+schedule initial_sine AT initial
{
LANG: C
- READS: grid::x
- WRITES: SimpleWave::phi
- WRITES: SimpleWave::pi
+ READS: grid::x(Everywhere)
+ WRITES: SimpleWave::phi(Everywhere)
+ WRITES: SimpleWave::pi(Everywhere)
} "initial_sine"
-schedule calc_rhs in MoL_CalcRHS
+schedule calc_rhs IN MoL_CalcRHS
{
LANG: C
- READS: SimpleWave::phi
- READS: SimpleWave::pi
- WRITES: SimpleWave::phirhs
- WRITES: SimpleWave::pirhs
+ READS: SimpleWave::phi(Everywhere)
+ READS: SimpleWave::pi(Everywhere)
+ WRITES: SimpleWave::phirhs(Interior)
+ WRITES: SimpleWave::pirhs(Interior)
} "calc_rhs"
schedule SimpleWave_SelectBoundConds in MoL_PostStep
@@ -77,5 +77,4 @@ schedule SimpleWave_RegisterVars in MoL_Register
schedule group ApplyBCs as SimpleWave_ApplyBCs in MoL_PostStep after SimpleWave_SelectBoundConds
{
- # no language specified
} "Apply boundary conditions controlled by thorn Boundary"