aboutsummaryrefslogtreecommitdiff
path: root/src/Domain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Domain.c')
-rw-r--r--src/Domain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Domain.c b/src/Domain.c
index 75272a0..b6cb280 100644
--- a/src/Domain.c
+++ b/src/Domain.c
@@ -109,7 +109,7 @@ CCTK_INT CoordBase_GetDomainSpecification
thespacing[2] = dz;
} else if (CCTK_EQUALS (spacing, "numcells")) {
thespacing[0] = (physical_max[0] - physical_min[0]) / ncells_x;
- thespacing[1] = (physical_max[1] - physical_min[1]) / ncells_y;
+ thespacing[1] = thespacing[0];//(physical_max[1] - physical_min[1]) / ncells_y;
thespacing[2] = (physical_max[2] - physical_min[2]) / ncells_z;
}