aboutsummaryrefslogtreecommitdiff
path: root/ML_WaveToy
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2013-04-15 12:21:28 +0200
committerIan Hinder <ian.hinder@aei.mpg.de>2013-04-15 12:21:28 +0200
commit118328bd10f592d82023deb27eac9ffe77aa75b2 (patch)
tree39284961c24a0ae0b7024b4688a0a9a6ee32d325 /ML_WaveToy
parentfdf77c07df6aa7b37ff9726219a29e50f5185645 (diff)
Regenerate code (Kranc commit 519f2cd182c4828e74429e883139fbb8b1a11d3c)
Diffstat (limited to 'ML_WaveToy')
-rw-r--r--ML_WaveToy/interface.ccl4
-rw-r--r--ML_WaveToy/schedule.ccl41
2 files changed, 22 insertions, 23 deletions
diff --git a/ML_WaveToy/interface.ccl b/ML_WaveToy/interface.ccl
index dbe441c..d1da4d1 100644
--- a/ML_WaveToy/interface.ccl
+++ b/ML_WaveToy/interface.ccl
@@ -47,13 +47,13 @@ CCTK_REAL WT_u type=GF timelevels=2 tags='tensortypealias="Scalar" tensorweight=
} "WT_u"
public:
-CCTK_REAL WT_rhorhs type=GF timelevels=2 tags='tensortypealias="Scalar" tensorweight=0'
+CCTK_REAL WT_rhorhs type=GF timelevels=2 tags='tensortypealias="Scalar" tensorweight=0 Prolongation="None"'
{
rhorhs
} "WT_rhorhs"
public:
-CCTK_REAL WT_urhs type=GF timelevels=2 tags='tensortypealias="Scalar" tensorweight=0'
+CCTK_REAL WT_urhs type=GF timelevels=2 tags='tensortypealias="Scalar" tensorweight=0 Prolongation="None"'
{
urhs
} "WT_urhs"
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"