From 118328bd10f592d82023deb27eac9ffe77aa75b2 Mon Sep 17 00:00:00 2001 From: Ian Hinder Date: Mon, 15 Apr 2013 12:21:28 +0200 Subject: Regenerate code (Kranc commit 519f2cd182c4828e74429e883139fbb8b1a11d3c) --- ML_WaveToy/interface.ccl | 4 ++-- ML_WaveToy/schedule.ccl | 41 ++++++++++++++++++++--------------------- 2 files changed, 22 insertions(+), 23 deletions(-) (limited to 'ML_WaveToy') 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" -- cgit v1.2.3