aboutsummaryrefslogtreecommitdiff
path: root/ML_WaveToy/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'ML_WaveToy/schedule.ccl')
-rw-r--r--ML_WaveToy/schedule.ccl41
1 files changed, 20 insertions, 21 deletions
diff --git a/ML_WaveToy/schedule.ccl b/ML_WaveToy/schedule.ccl
index 2d0b031..5ab96e0 100644
--- a/ML_WaveToy/schedule.ccl
+++ b/ML_WaveToy/schedule.ccl
@@ -60,9 +60,9 @@ if (CCTK_EQUALS(initial_data, "Gaussian"))
schedule WT_Gaussian AT initial
{
LANG: C
- READS: grid::r
- WRITES: ML_WaveToy::rho
- WRITES: ML_WaveToy::u
+ READS: grid::r(Everywhere)
+ WRITES: ML_WaveToy::rho(Everywhere)
+ WRITES: ML_WaveToy::u(Everywhere)
} "WT_Gaussian"
}
@@ -72,28 +72,28 @@ if (CCTK_EQUALS(initial_data, "Standing"))
schedule WT_Standing AT initial
{
LANG: C
- READS: grid::x
- READS: grid::y
- READS: grid::z
- WRITES: ML_WaveToy::rho
- WRITES: ML_WaveToy::u
+ READS: grid::x(Everywhere)
+ READS: grid::y(Everywhere)
+ READS: grid::z(Everywhere)
+ WRITES: ML_WaveToy::rho(Everywhere)
+ WRITES: ML_WaveToy::u(Everywhere)
} "WT_Standing"
}
schedule WT_RHS IN MoL_CalcRHS
{
LANG: C
- READS: ML_WaveToy::rho
- READS: ML_WaveToy::u
- WRITES: ML_WaveToy::rhorhs
- WRITES: ML_WaveToy::urhs
+ READS: ML_WaveToy::rho(Everywhere)
+ READS: ML_WaveToy::u(Everywhere)
+ WRITES: ML_WaveToy::rhorhs(Interior)
+ WRITES: ML_WaveToy::urhs(Interior)
} "WT_RHS"
schedule WT_Dirichlet IN MoL_CalcRHS
{
LANG: C
- WRITES: ML_WaveToy::rhorhs
- WRITES: ML_WaveToy::urhs
+ WRITES: ML_WaveToy::rhorhs(Boundary)
+ WRITES: ML_WaveToy::urhs(Boundary)
} "WT_Dirichlet"
schedule WT_Dirichlet AT analysis
@@ -101,24 +101,24 @@ schedule WT_Dirichlet AT analysis
LANG: C
SYNC: WT_rhorhs
SYNC: WT_urhs
- WRITES: ML_WaveToy::rhorhs
- WRITES: ML_WaveToy::urhs
+ WRITES: ML_WaveToy::rhorhs(Boundary)
+ WRITES: ML_WaveToy::urhs(Boundary)
} "WT_Dirichlet"
schedule WT_Energy AT analysis
{
LANG: C
SYNC: WT_eps
- READS: ML_WaveToy::rho
- READS: ML_WaveToy::u
- WRITES: ML_WaveToy::eps
+ READS: ML_WaveToy::rho(Everywhere)
+ READS: ML_WaveToy::u(Everywhere)
+ WRITES: ML_WaveToy::eps(Interior)
} "WT_Energy"
schedule WT_EnergyBoundary AT analysis
{
LANG: C
SYNC: WT_eps
- WRITES: ML_WaveToy::eps
+ WRITES: ML_WaveToy::eps(Boundary)
} "WT_EnergyBoundary"
schedule ML_WaveToy_SelectBoundConds in MoL_PostStep
@@ -143,5 +143,4 @@ schedule ML_WaveToy_RegisterVars in MoL_Register
schedule group ApplyBCs as ML_WaveToy_ApplyBCs in MoL_PostStep after ML_WaveToy_SelectBoundConds
{
- # no language specified
} "Apply boundary conditions controlled by thorn Boundary"