aboutsummaryrefslogtreecommitdiff
path: root/src/InitSymBound.c
diff options
context:
space:
mode:
authorgoodale <goodale@90eea020-d82d-4da5-bf6e-4ee79ff7632f>2000-03-29 07:42:15 +0000
committergoodale <goodale@90eea020-d82d-4da5-bf6e-4ee79ff7632f>2000-03-29 07:42:15 +0000
commitc7a57ec2e13fa24ad80c633369e8f6055ea89c23 (patch)
treed7e3b2c00cf34f9c52cbe8f8b843b682e1e1e04c /src/InitSymBound.c
parentaa70aa70e686f8b6e048e56f8bedc0538730fd3d (diff)
Changed to use timelevels - thanks for putting the rotation in PUGH Ed.
Note that the no-boundary condition tests assumed that phi_new had zero at its boundaries. This is, or course, no longer true with timelevel rotation. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyC/trunk@40 90eea020-d82d-4da5-bf6e-4ee79ff7632f
Diffstat (limited to 'src/InitSymBound.c')
-rw-r--r--src/InitSymBound.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/InitSymBound.c b/src/InitSymBound.c
index ae0c34b..018bf39 100644
--- a/src/InitSymBound.c
+++ b/src/InitSymBound.c
@@ -31,16 +31,15 @@ static char *rcsid = "$Header$";
void WaveToyC_InitSymBound(CCTK_ARGUMENTS)
{
- DECLARE_CCTK_ARGUMENTS
+ DECLARE_CCTK_ARGUMENTS
- int sym[3];
+ int sym[3];
- sym[0] = 1;
- sym[1] = 1;
- sym[2] = 1;
+ sym[0] = 1;
+ sym[1] = 1;
+ sym[2] = 1;
- SetCartSymmetry(cctkGH, sym,"wavetoy::phi");
- SetCartSymmetry(cctkGH, sym,"wavetoyc::phi_new");
+ SetCartSymmetry(cctkGH, sym,"wavetoy::phi");
- return;
+ return;
}