adjusting to new data layout
This commit is contained in:
parent
a367128436
commit
8465c3ab1b
|
@ -224,7 +224,7 @@ for name in filenames:
|
||||||
|
|
||||||
header = [scriptID + ' ' + ' '.join(sys.argv[1:])]\
|
header = [scriptID + ' ' + ' '.join(sys.argv[1:])]\
|
||||||
+ config_header
|
+ config_header
|
||||||
geom = damask.Geom(indices.reshape(grid),size,origin,
|
geom = damask.Geom(indices.reshape(grid,order='F'),size,origin,
|
||||||
homogenization=options.homogenization,comments=header)
|
homogenization=options.homogenization,comments=header)
|
||||||
damask.util.croak(geom)
|
damask.util.croak(geom)
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@ for name in filenames:
|
||||||
np.in1d(microstructure,options.blacklist,invert=True) if options.blacklist else \
|
np.in1d(microstructure,options.blacklist,invert=True) if options.blacklist else \
|
||||||
np.full(geom.grid.prod(),True,dtype=bool))
|
np.full(geom.grid.prod(),True,dtype=bool))
|
||||||
|
|
||||||
seeds = damask.grid_filters.cell_coord0(geom.grid,geom.size).reshape(-1,3)
|
seeds = damask.grid_filters.cell_coord0(geom.grid,geom.size).reshape(-1,3,order='F')
|
||||||
|
|
||||||
comments = geom.comments \
|
comments = geom.comments \
|
||||||
+ [scriptID + ' ' + ' '.join(sys.argv[1:]),
|
+ [scriptID + ' ' + ' '.join(sys.argv[1:]),
|
||||||
|
|
|
@ -128,7 +128,7 @@ for name in filenames:
|
||||||
|
|
||||||
|
|
||||||
if not options.selective:
|
if not options.selective:
|
||||||
coords = damask.grid_filters.cell_coord0(grid,size).reshape(-1,3)
|
coords = damask.grid_filters.cell_coord0(grid,size).reshape(-1,3,order='F')
|
||||||
seeds = coords[np.random.choice(np.prod(grid), options.N, replace=False)] \
|
seeds = coords[np.random.choice(np.prod(grid), options.N, replace=False)] \
|
||||||
+ np.broadcast_to(size/grid,(options.N,3))*(np.random.rand(options.N,3)*.5-.25) # wobble without leaving grid
|
+ np.broadcast_to(size/grid,(options.N,3))*(np.random.rand(options.N,3)*.5-.25) # wobble without leaving grid
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue