aboutsummaryrefslogtreecommitdiff
path: root/Examples/Laplace/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/Laplace/schedule.ccl')
-rw-r--r--Examples/Laplace/schedule.ccl23
1 files changed, 11 insertions, 12 deletions
diff --git a/Examples/Laplace/schedule.ccl b/Examples/Laplace/schedule.ccl
index 05344ed..4d03697 100644
--- a/Examples/Laplace/schedule.ccl
+++ b/Examples/Laplace/schedule.ccl
@@ -43,45 +43,45 @@ schedule Laplace_initial AT INITIAL
{
LANG: C
SYNC: phi_group
- READS: grid::x
- READS: grid::y
- WRITES: Laplace::phi
+ READS: grid::x(Everywhere)
+ READS: grid::y(Everywhere)
+ WRITES: Laplace::phi(Interior)
} "Laplace_initial"
schedule Laplace_initial_boundary AT INITIAL after Laplace_initial
{
LANG: C
SYNC: phi_group
- READS: grid::y
- WRITES: Laplace::phi
+ READS: grid::y(Everywhere)
+ WRITES: Laplace::phi(Boundary)
} "Laplace_initial_boundary"
schedule Laplace_relax in MoL_CalcRHS
{
LANG: C
- READS: Laplace::phi
- WRITES: Laplace::phirhs
+ READS: Laplace::phi(Everywhere)
+ WRITES: Laplace::phirhs(Interior)
} "Laplace_relax"
schedule Laplace_relax AT ANALYSIS
{
LANG: C
SYNC: phi_grouprhs
- READS: Laplace::phi
- WRITES: Laplace::phirhs
+ READS: Laplace::phi(Everywhere)
+ WRITES: Laplace::phirhs(Interior)
} "Laplace_relax"
schedule Laplace_boundary in MoL_RHSBoundaries
{
LANG: C
- WRITES: Laplace::phirhs
+ WRITES: Laplace::phirhs(Boundary)
} "Laplace_boundary"
schedule Laplace_boundary AT ANALYSIS
{
LANG: C
SYNC: phi_grouprhs
- WRITES: Laplace::phirhs
+ WRITES: Laplace::phirhs(Boundary)
} "Laplace_boundary"
schedule Laplace_SelectBoundConds in MoL_PostStep
@@ -105,5 +105,4 @@ schedule Laplace_RegisterVars in MoL_Register
schedule group ApplyBCs as Laplace_ApplyBCs in MoL_PostStep after Laplace_SelectBoundConds
{
- # no language specified
} "Apply boundary conditions controlled by thorn Boundary"