aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--interface.ccl6
-rw-r--r--schedule.ccl2
-rw-r--r--src/WaveToy.c4
3 files changed, 4 insertions, 8 deletions
diff --git a/interface.ccl b/interface.ccl
index 0de03c3..255b605 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -8,12 +8,8 @@ public:
cctk_real scalarevolve type = GF
{
phi
-} "The evolved scalar field"
-
-cctk_real scalarold type = GF
-{
phi_old
-} "The scalar field at the last timestep"
+} "The evolved scalar field"
private:
diff --git a/schedule.ccl b/schedule.ccl
index a32d4ea..cd736a9 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,7 +1,7 @@
# Schedule definitions for thorn WaveToyC
# $Header$
-STORAGE: scalarevolve,scalarold
+STORAGE: scalarevolve
schedule WaveToyC_Startup at STARTUP
{
diff --git a/src/WaveToy.c b/src/WaveToy.c
index 1dda594..7508661 100644
--- a/src/WaveToy.c
+++ b/src/WaveToy.c
@@ -119,7 +119,7 @@ void WaveToyC_Evolution(CCTK_CARGUMENTS)
@desc
Boundary conditions for the wave equation
@enddesc
- @calls ApplySymmetry,ApplyFlatBC,ApplyRadiativeBC
+ @calls CartSymBCGroupI,FlatBC,RadiativeBC
@calledby
@history
@@ -140,7 +140,7 @@ static void WaveToyC_Boundaries(CCTK_CARGUMENTS)
sw[1]=1;
sw[2]=1;
- ApplySymmetry(cctkGH,"wavetoyc::scalartmps");
+ ierr = CartSymBCGroup(cctkGH,"wavetoyc::scalartmps");
if (CCTK_EQUALS(bound,"flat"))
{