aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlanfer <lanfer@90eea020-d82d-4da5-bf6e-4ee79ff7632f>1999-10-19 12:24:14 +0000
committerlanfer <lanfer@90eea020-d82d-4da5-bf6e-4ee79ff7632f>1999-10-19 12:24:14 +0000
commit2872526d8ce60497f71ad6b7a5e615f7a2d1a888 (patch)
treecd805526a9b2c3c53fb3dbb41f04a5831f20ca63 /src
parentaf5b39bbcdd4a68259b85879ad077a292c7923fe (diff)
using the new boundary interface with Wavetoy
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyC/trunk@19 90eea020-d82d-4da5-bf6e-4ee79ff7632f
Diffstat (limited to 'src')
-rw-r--r--src/WaveToy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WaveToy.c b/src/WaveToy.c
index 7508661..98f8405 100644
--- a/src/WaveToy.c
+++ b/src/WaveToy.c
@@ -144,11 +144,11 @@ static void WaveToyC_Boundaries(CCTK_CARGUMENTS)
if (CCTK_EQUALS(bound,"flat"))
{
- ierr = ApplyFlatBC(cctkGH,sw,"wavetoyc::phi_new");
+ ierr = FlatBCVar(cctkGH,sw,"wavetoyc::phi_new");
}
else if (CCTK_Equals(bound,"radiation"))
{
- ierr = ApplyRadiativeBC(cctkGH,0,1,sw,"wavetoyc::phi_new","wavetoy::phi");
+ ierr = RadiativeBCVar(cctkGH,0.0,1.0,sw,"wavetoyc::phi_new","wavetoy::phi");
}
if (ierr < 0)