From e683cbef69dc9439d7b667d61f0cb8ad77f9c6eb Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Mon, 21 Sep 2020 11:30:27 -0400 Subject: [PATCH] replaced a stray get_grid() in geom_grainGrowth --- 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 0652d0583..ea9331317 100755 --- a/processing/pre/geom_grainGrowth.py +++ b/processing/pre/geom_grainGrowth.py @@ -64,7 +64,7 @@ for name in filenames: geom = damask.Geom.from_file(StringIO(''.join(sys.stdin.read())) if name is None else name) - grid_original = geom.get_grid() + grid_original = geom.grid damask.util.croak(geom) microstructure = np.tile(geom.microstructure,np.where(grid_original == 1, 2,1)) # make one copy along dimensions with grid == 1 grid = np.array(microstructure.shape)