aboutsummaryrefslogtreecommitdiff
path: root/interface.ccl
diff options
context:
space:
mode:
authordiener <diener@f69c4107-0314-4c4f-9ad4-17e986b73f4a>2007-10-18 13:35:10 +0000
committerdiener <diener@f69c4107-0314-4c4f-9ad4-17e986b73f4a>2007-10-18 13:35:10 +0000
commit93d997291d78ca3cebf36f33673b75ffcd8a4ba6 (patch)
tree6d0ddee0fd79d43d43600e9cf4456d06735158ab /interface.ccl
parent2a45c231d2a5b7a1e29faaf599f3a19cf91b9293 (diff)
Make 2nd derivative interface consistent with FiniteDifferencing and
FourierDifferencing, providing a routine to return mixed derivatives obtained by applying two succesive 1st derivatives in different directions. Not tested yet, but compiles. git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/SummationByParts/trunk@87 f69c4107-0314-4c4f-9ad4-17e986b73f4a
Diffstat (limited to 'interface.ccl')
-rw-r--r--interface.ccl3
1 files changed, 2 insertions, 1 deletions
diff --git a/interface.ccl b/interface.ccl
index a9f203d..02614a6 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -26,7 +26,8 @@ SUBROUTINE Diff_up_gv ( CCTK_POINTER_TO_CONST IN cctkGH, \
PROVIDES FUNCTION Diff_up_gv WITH DiffUpGv LANGUAGE C
SUBROUTINE Diff2_gv ( CCTK_POINTER_TO_CONST IN cctkGH, \
- CCTK_INT IN dir, \
+ CCTK_INT IN dir1, \
+ CCTK_INT IN dir2, \
CCTK_REAL IN ARRAY var, \
CCTK_REAL OUT ARRAY dvar, \
CCTK_INT IN table_handle )