aboutsummaryrefslogtreecommitdiff
path: root/Examples/Laplace/schedule.ccl
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2012-11-14 19:53:02 +0100
committerIan Hinder <ian.hinder@aei.mpg.de>2012-11-14 19:53:02 +0100
commitcda73baf0fbca06d75e51ad28ed708d7a087a849 (patch)
tree4fac3164d827c0713877954ac0730f166714a5ad /Examples/Laplace/schedule.ccl
parent72b0c57fbcbbc71f55464dfdf751dbdb0b45fcb8 (diff)
Regenerate examples
Diffstat (limited to 'Examples/Laplace/schedule.ccl')
-rw-r--r--Examples/Laplace/schedule.ccl23
1 files changed, 17 insertions, 6 deletions
diff --git a/Examples/Laplace/schedule.ccl b/Examples/Laplace/schedule.ccl
index 782b1e6..05344ed 100644
--- a/Examples/Laplace/schedule.ccl
+++ b/Examples/Laplace/schedule.ccl
@@ -33,12 +33,6 @@ schedule Laplace_Startup at STARTUP
OPTIONS: meta
} "create banner"
-schedule Laplace_RegisterVars in MoL_Register
-{
- LANG: C
- OPTIONS: meta
-} "Register Variables for MoL"
-
schedule Laplace_RegisterSymmetries in SymmetryRegister
{
LANG: C
@@ -49,34 +43,45 @@ schedule Laplace_initial AT INITIAL
{
LANG: C
SYNC: phi_group
+ READS: grid::x
+ READS: grid::y
+ WRITES: Laplace::phi
} "Laplace_initial"
schedule Laplace_initial_boundary AT INITIAL after Laplace_initial
{
LANG: C
SYNC: phi_group
+ READS: grid::y
+ WRITES: Laplace::phi
} "Laplace_initial_boundary"
schedule Laplace_relax in MoL_CalcRHS
{
LANG: C
+ READS: Laplace::phi
+ WRITES: Laplace::phirhs
} "Laplace_relax"
schedule Laplace_relax AT ANALYSIS
{
LANG: C
SYNC: phi_grouprhs
+ READS: Laplace::phi
+ WRITES: Laplace::phirhs
} "Laplace_relax"
schedule Laplace_boundary in MoL_RHSBoundaries
{
LANG: C
+ WRITES: Laplace::phirhs
} "Laplace_boundary"
schedule Laplace_boundary AT ANALYSIS
{
LANG: C
SYNC: phi_grouprhs
+ WRITES: Laplace::phirhs
} "Laplace_boundary"
schedule Laplace_SelectBoundConds in MoL_PostStep
@@ -92,6 +97,12 @@ schedule Laplace_CheckBoundaries at BASEGRID
OPTIONS: meta
} "check boundaries treatment"
+schedule Laplace_RegisterVars in MoL_Register
+{
+ LANG: C
+ OPTIONS: meta
+} "Register Variables for MoL"
+
schedule group ApplyBCs as Laplace_ApplyBCs in MoL_PostStep after Laplace_SelectBoundConds
{
# no language specified