aboutsummaryrefslogtreecommitdiff
path: root/src/RobinBoundary.c
diff options
context:
space:
mode:
authorschnetter <schnetter@6a38eb6e-646e-4a02-a296-d141613ad6c4>2004-03-09 09:45:05 +0000
committerschnetter <schnetter@6a38eb6e-646e-4a02-a296-d141613ad6c4>2004-03-09 09:45:05 +0000
commit0d0a338cb50efccfdabbbc65c917a1e63bc05ecb (patch)
tree6fd9d0609e957e35700cc0634df1724efe9ff640 /src/RobinBoundary.c
parent690b22e26602684e32447575b405158216ca25a3 (diff)
Change the table keys to not contain any spaces. That makes it
possible to create tables from strings, which it turn makes it possible to set them in parameter files, which it turn decouples evolution thorns and boundary condition thorns. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@265 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/RobinBoundary.c')
-rw-r--r--src/RobinBoundary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/RobinBoundary.c b/src/RobinBoundary.c
index 51fc3cf..c5a0171 100644
--- a/src/RobinBoundary.c
+++ b/src/RobinBoundary.c
@@ -157,7 +157,7 @@ CCTK_INT BndRobin(const cGH *GH, CCTK_INT num_vars, CCTK_INT *vars,
} else
{
/* Decay power */
- Util_TableGetInt(tables[i], &npow, "DECAY POWER");
+ Util_TableGetInt(tables[i], &npow, "DECAY_POWER");
}
/* Determine boundary width on all faces */
@@ -175,7 +175,7 @@ CCTK_INT BndRobin(const cGH *GH, CCTK_INT num_vars, CCTK_INT *vars,
if (widths[i]<0)
{
err = Util_TableGetIntArray(tables[i], gdim, width_alldirs,
- "BOUNDARY WIDTH");
+ "BOUNDARY_WIDTH");
if (err<0)
{
CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,