aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2017-06-30 10:36:59 +0200
committerAnton Khirnov <anton@khirnov.net>2017-06-30 10:36:59 +0200
commit8897023efd87aecef4f48787fd6cf3563fc0cadd (patch)
tree3d4cfd7fa9d72f062cb2027b92d596d1a4eec489
parent13008424c6f9dd16a624e072c358557e71f6a225 (diff)
Update for cartoon.cartoon
-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;
}