aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@54511f98-0e4f-0410-826e-eb8b393f5a1e>2012-05-15 04:23:37 +0000
committerknarf <knarf@54511f98-0e4f-0410-826e-eb8b393f5a1e>2012-05-15 04:23:37 +0000
commitbe32353555223b88cf90abd513df8b9ccd418576 (patch)
treedae377fe751fcb3e79eb46b4b95c14019f01b0ca
parent4f4daf375a564f7c63ea3f488afcbb795a0f1ae0 (diff)
correct comments
git-svn-id: http://svn.aei.mpg.de/numrel/AEIThorns/ADMMass/trunk@49 54511f98-0e4f-0410-826e-eb8b393f5a1e
-rw-r--r--src/surface_integral.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/surface_integral.c b/src/surface_integral.c
index 91f4995..30b3572 100644
--- a/src/surface_integral.c
+++ b/src/surface_integral.c
@@ -216,7 +216,7 @@ void ADMMass_Surface(CCTK_ARGUMENTS)
ds[2] = 0.0;
/* Select the points on the surfaces of the requested cube,
- paying attention not to compute the corners (and the verteces)
+ paying attention not to compute the corners (and the edges)
more than once. */
/* the whole face of the cube */
@@ -225,22 +225,22 @@ void ADMMass_Surface(CCTK_ARGUMENTS)
/* the whole face of the cube */
if (i == x_max_i) ds[0] = oneDY*oneDZ;
- /* face, excluding the two corners (and the four verteces) that
+ /* face, excluding the two corners (and the four edges) that
were already computed above*/
if ((j == y_min_j) && (i != x_min_i) && (i != x_max_i))
ds[1] = -oneDX*oneDZ;
- /* face, excluding the other two corners (and the four verteces)
+ /* face, excluding the other two corners (and the four edges)
that were already computed above*/
if ((j == y_max_j) && (i != x_min_i) && (i != x_max_i))
ds[1] = oneDX*oneDZ;
- /* face, excluding all corners (and verteces), since they were
+ /* face, excluding all corners (and edges), since they were
already computed above */
if ((k == z_min_k) && (j != y_min_j) && (i != x_min_i) && (j != y_max_j) && (i != x_max_i))
ds[2] = -oneDX*oneDY;
- /* face, excluding all corners (and verteces), since they were
+ /* face, excluding all corners (and edges), since they were
already computed above */
if ((k == z_max_k) && (j != y_min_j) && (i != x_min_i) &&
(j != y_max_j) && (i != x_max_i))