aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherrmann <herrmann@f4913095-0e4f-0410-abea-a123d184f1f3>2005-03-18 14:43:31 +0000
committerherrmann <herrmann@f4913095-0e4f-0410-abea-a123d184f1f3>2005-03-18 14:43:31 +0000
commit346288ed2b578ff90ce34a15ba3302a81880f46a (patch)
tree31dcfd4d441b7bc09852247aecb4607eb271cd8f
parent32df531e9c7a529eb4e14bd2066510a3845030ad (diff)
remove multiplication by volume.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/Norms/trunk@6 f4913095-0e4f-0410-abea-a123d184f1f3
-rw-r--r--src/Compute_Norm.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Compute_Norm.c b/src/Compute_Norm.c
index 482e57f..4eddb1e 100644
--- a/src/Compute_Norm.c
+++ b/src/Compute_Norm.c
@@ -177,18 +177,6 @@ void Norms_Compute_Norms (CCTK_ARGUMENTS)
*norm=sqrt(*norm);
- /* multiply with h^d - see discussion above Eq. (12) in
- * 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);
}