replaced a stray get_grid() in geom_grainGrowth

This commit is contained in:
Philip Eisenlohr 2020-09-21 11:30:27 -04:00
parent 188905766f
commit e683cbef69
1 changed files with 1 additions and 1 deletions

View File

@ -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)