aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherrmann <herrmann@f4913095-0e4f-0410-abea-a123d184f1f3>2005-03-17 19:06:33 +0000
committerherrmann <herrmann@f4913095-0e4f-0410-abea-a123d184f1f3>2005-03-17 19:06:33 +0000
commit32df531e9c7a529eb4e14bd2066510a3845030ad (patch)
treeb279964b503b9b2169fa414017df9a4fab5d6b5b
parent749d52043c6199aa21bb24975c355b59eb9cd76b (diff)
for norm divide by sqrt(hd)
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/Norms/trunk@5 f4913095-0e4f-0410-abea-a123d184f1f3
-rw-r--r--src/Compute_Norm.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/Compute_Norm.c b/src/Compute_Norm.c
index 083f498..482e57f 100644
--- a/src/Compute_Norm.c
+++ b/src/Compute_Norm.c
@@ -1,3 +1,6 @@
+
+
+
/* XXX cleanup the include files ! */
#include <assert.h>
@@ -175,8 +178,15 @@ void Norms_Compute_Norms (CCTK_ARGUMENTS)
*norm=sqrt(*norm);
/* multiply with h^d - see discussion above Eq. (12) in
- * gr-qc/XXX */
- hd=dx*dy*dz;
+ * gr-qc/0503056 [abs, ps, pdf, other] :
+ *
+ * Title: Numerical stability for finite difference
+ * approximations of Einstein's equations
+ * Authors: Gioel Calabrese, Ian Hinder, Sascha Husa
+ * Comments: 18 pages, 5 figures
+ *
+ */
+ hd=sqrt(dx*dy*dz);
*norm=*norm*hd;
CCTK_VInfo(CCTK_THORNSTRING,"norm= %16.8g",*norm);