aboutsummaryrefslogtreecommitdiff
path: root/src/CopyBoundary.c
diff options
context:
space:
mode:
authorlanfer <lanfer@6a38eb6e-646e-4a02-a296-d141613ad6c4>2000-07-18 16:56:01 +0000
committerlanfer <lanfer@6a38eb6e-646e-4a02-a296-d141613ad6c4>2000-07-18 16:56:01 +0000
commit779e0b79c1af4f3a1e1e66164dc3d539fd1869bc (patch)
tree6c02e97f5918d8cf28440ff4e75092b840c007ea /src/CopyBoundary.c
parentd992df596dc3b32814edc22c96c51e588911bd2f (diff)
Boundary routines:
reworked Robin to have conformal calling interfaces fixed two bugs: the more interresting one: coordinates do not have timelevels. Replaced most CCTK_WARNS with CCTK_VWarns to be more informative. gerd git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@115 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/CopyBoundary.c')
-rw-r--r--src/CopyBoundary.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/CopyBoundary.c b/src/CopyBoundary.c
index 8a429a0..0f49b62 100644
--- a/src/CopyBoundary.c
+++ b/src/CopyBoundary.c
@@ -1,9 +1,10 @@
/*@@
- @file ScalarBoundary.c
+ @file CopyBoundary.c
@date Mon Mar 15 15:09:00 1999
@author Gerd Lanfermann, Gabrielle Allen
@desc
- Wrappers for calling routines for applying scalar boundary conditions
+ Wrappers for calling routines for applying copying-boudnary
+ conditions
@enddesc
@@*/
@@ -364,7 +365,10 @@ static int ApplyBndCopy(cGH *GH,
stencil,
GH->data[vi][timelevel],
GH->data[vi2][timelevel]); break;
- default : berr = -1; CCTK_WARN(1, "No BC for dim>3");
+ default : berr = -1;
+ CCTK_VWarn(1,__LINE__,__FILE__,"Boundary",
+ "ApplyBndCopy: No BC for dim>3: grid variables '%s'/'%s'",
+ CCTK_VarName(vi),CCTK_VarName(vi2));
}
berr = (berr>-1) ? 0 : -1;
}