aboutsummaryrefslogtreecommitdiff
path: root/src/Boundary.h
diff options
context:
space:
mode:
authorallen <allen@6a38eb6e-646e-4a02-a296-d141613ad6c4>1999-11-01 09:33:02 +0000
committerallen <allen@6a38eb6e-646e-4a02-a296-d141613ad6c4>1999-11-01 09:33:02 +0000
commitb77a02dc282b020ce72a5e68dccca1b54f0c621e (patch)
tree6fd059cf6722e310d7787d40a0efe31e59c22c60 /src/Boundary.h
parent2abfd5897d720af20f59e80580fdc5d36b528546 (diff)
ScalarBoundary will be a replacement to the badly named ConstantBoundary
CopyBoundary copies the values from a second GF to the first GF git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@60 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/Boundary.h')
-rw-r--r--src/Boundary.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Boundary.h b/src/Boundary.h
index f7d7f5d..70b946d 100644
--- a/src/Boundary.h
+++ b/src/Boundary.h
@@ -22,6 +22,43 @@ int ConstantBCGroupI(cGH *GH,
int *stencil_size,
int gi);
+int ScalarBCVar(cGH *GH,
+ CCTK_REAL var0,
+ int *stencil_size,
+ const char *impvarname);
+int ScalarBCVarI(cGH *GH,
+ CCTK_REAL var0,
+ int *stencil_size,
+ int vi);
+int ScalarBCGroup(cGH *GH,
+ CCTK_REAL var0,
+ int *stencil_size,
+ const char *impgrpname);
+int ScalarBCGroupI(cGH *GH,
+ CCTK_REAL var0,
+ int *stencil_size,
+ int gi);
+
+int CopyBCVar(cGH *GH,
+ int *stencil_size,
+ const char *impvarname,
+ const char *imppvarname);
+
+int CopyBCVarI(cGH *GH,
+ int *stencil_size,
+ int vi,
+ int vip);
+
+int CopyBCGroup(cGH *GH,
+ int *stencil_size,
+ const char *impgrpname,
+ const char *imppgrpname);
+
+int CopyBCGroupI(cGH *GH,
+ int *stencil_size,
+ int gi,
+ int gip);
+
int RadiativeBCVar(cGH *GH,
CCTK_REAL var0,
CCTK_REAL v0,