From f13ba71f6eedba467b7553dc4b71fc09770efd35 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Fri, 4 Mar 2016 17:24:13 +0100 Subject: [PATCH] fixed typo --- processing/pre/geom_grainGrowth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processing/pre/geom_grainGrowth.py b/processing/pre/geom_grainGrowth.py index 4d5aa1b6e..0f72a3589 100755 --- a/processing/pre/geom_grainGrowth.py +++ b/processing/pre/geom_grainGrowth.py @@ -120,7 +120,7 @@ for name in filenames: np.where( ndimage.morphology.binary_dilation(interfaceEnergy > 0., structure = struc, - terations = options.d/2 + 1), # fat boundary | PE: why 2d-1? I would argue for d/2 + 1 + iterations = options.d/2 + 1), # fat boundary | PE: why 2d-1? I would argue for d/2 + 1 periodic_bulkEnergy[grid[0]/2:-grid[0]/2, # retain filled energy on fat boundary... grid[1]/2:-grid[1]/2, grid[2]/2:-grid[2]/2], # ...and zero everywhere else