aboutsummaryrefslogtreecommitdiff
path: root/src/dissipation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dissipation.c')
-rw-r--r--src/dissipation.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dissipation.c b/src/dissipation.c
index e04c8d5..42ed6b9 100644
--- a/src/dissipation.c
+++ b/src/dissipation.c
@@ -15,7 +15,6 @@ CCTK_FNAME(apply_dissipation) (CCTK_REAL const * const var,
int const * const nj,
int const * const nk,
CCTK_REAL const * const dx,
- CCTK_REAL const * const dt,
CCTK_INT const * const order,
CCTK_REAL const * const epsdis);
@@ -42,7 +41,7 @@ apply (int const varindex, char const * const optstring, void * const arg)
cGroup vardata, rhsdata;
CCTK_REAL const * varptr;
CCTK_REAL * rhsptr;
- CCTK_REAL dt, dx[3];
+ CCTK_REAL dx[3];
int n;
int d;
int ierr;
@@ -58,7 +57,6 @@ apply (int const varindex, char const * const optstring, void * const arg)
}
}
- dt = CCTK_DELTA_TIME;
for (d=0; d<3; ++d) {
dx[d] = CCTK_DELTA_SPACE(d);
}
@@ -110,5 +108,5 @@ apply (int const varindex, char const * const optstring, void * const arg)
CCTK_FNAME(apply_dissipation)
(varptr, rhsptr, &cctk_lsh[0], &cctk_lsh[1], &cctk_lsh[2],
- dx, &dt, &order, epsdisA);
+ dx, &order, epsdisA);
}