2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2013-04-12 15:57:05 +05:30
|
|
|
|
2019-05-27 02:19:05 +05:30
|
|
|
import os
|
2019-05-30 17:37:49 +05:30
|
|
|
import sys
|
2015-08-08 00:33:26 +05:30
|
|
|
import multiprocessing
|
2016-04-09 03:17:02 +05:30
|
|
|
from optparse import OptionParser,OptionGroup
|
2019-05-27 02:19:05 +05:30
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
from scipy import spatial
|
|
|
|
|
2014-08-25 18:09:12 +05:30
|
|
|
import damask
|
2012-11-06 02:49:12 +05:30
|
|
|
|
2019-05-30 13:14:40 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2013-07-10 14:42:00 +05:30
|
|
|
|
2014-10-09 22:33:06 +05:30
|
|
|
|
2019-05-27 02:19:05 +05:30
|
|
|
def laguerreTessellation(undeformed, coords, weights, grains, periodic = True, cpus = 2):
|
|
|
|
|
|
|
|
def findClosestSeed(fargs):
|
2016-07-15 19:18:53 +05:30
|
|
|
point, seeds, myWeights = fargs
|
2015-08-08 00:33:26 +05:30
|
|
|
tmp = np.repeat(point.reshape(3,1), len(seeds), axis=1).T
|
2016-07-15 19:18:53 +05:30
|
|
|
dist = np.sum((tmp - seeds)**2,axis=1) -myWeights
|
2015-08-08 00:33:26 +05:30
|
|
|
return np.argmin(dist) # seed point closest to point
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2019-05-27 02:19:05 +05:30
|
|
|
copies = \
|
|
|
|
np.array([
|
|
|
|
[ -1,-1,-1 ],
|
|
|
|
[ 0,-1,-1 ],
|
|
|
|
[ 1,-1,-1 ],
|
|
|
|
[ -1, 0,-1 ],
|
|
|
|
[ 0, 0,-1 ],
|
|
|
|
[ 1, 0,-1 ],
|
|
|
|
[ -1, 1,-1 ],
|
|
|
|
[ 0, 1,-1 ],
|
|
|
|
[ 1, 1,-1 ],
|
|
|
|
[ -1,-1, 0 ],
|
|
|
|
[ 0,-1, 0 ],
|
|
|
|
[ 1,-1, 0 ],
|
|
|
|
[ -1, 0, 0 ],
|
|
|
|
[ 0, 0, 0 ],
|
|
|
|
[ 1, 0, 0 ],
|
|
|
|
[ -1, 1, 0 ],
|
|
|
|
[ 0, 1, 0 ],
|
|
|
|
[ 1, 1, 0 ],
|
|
|
|
[ -1,-1, 1 ],
|
|
|
|
[ 0,-1, 1 ],
|
|
|
|
[ 1,-1, 1 ],
|
|
|
|
[ -1, 0, 1 ],
|
|
|
|
[ 0, 0, 1 ],
|
|
|
|
[ 1, 0, 1 ],
|
|
|
|
[ -1, 1, 1 ],
|
|
|
|
[ 0, 1, 1 ],
|
|
|
|
[ 1, 1, 1 ],
|
|
|
|
]).astype(float)*info['size'] if periodic else \
|
|
|
|
np.array([
|
|
|
|
[ 0, 0, 0 ],
|
|
|
|
]).astype(float)
|
|
|
|
|
|
|
|
repeatweights = np.tile(weights,len(copies)).flatten(order='F') # Laguerre weights (1,2,3,1,2,3,...,1,2,3)
|
|
|
|
for i,vec in enumerate(copies): # periodic copies of seed points ...
|
|
|
|
try: seeds = np.append(seeds, coords+vec, axis=0) # ... (1+a,2+a,3+a,...,1+z,2+z,3+z)
|
2019-05-30 17:37:49 +05:30
|
|
|
except NameError: seeds = coords+vec
|
2019-05-27 02:19:05 +05:30
|
|
|
|
|
|
|
if (repeatweights == 0.0).all(): # standard Voronoi (no weights, KD tree)
|
|
|
|
myKDTree = spatial.cKDTree(seeds)
|
|
|
|
devNull,closestSeeds = myKDTree.query(undeformed)
|
|
|
|
else:
|
|
|
|
damask.util.croak('...using {} cpu{}'.format(options.cpus, 's' if options.cpus > 1 else ''))
|
|
|
|
arguments = [[arg,seeds,repeatweights] for arg in list(undeformed)]
|
|
|
|
|
|
|
|
if cpus > 1: # use multithreading
|
|
|
|
pool = multiprocessing.Pool(processes = cpus) # initialize workers
|
|
|
|
result = pool.map_async(findClosestSeed, arguments) # evaluate function in parallel
|
|
|
|
pool.close()
|
|
|
|
pool.join()
|
|
|
|
closestSeeds = np.array(result.get()).flatten()
|
2015-08-09 03:13:21 +05:30
|
|
|
else:
|
2019-05-27 02:19:05 +05:30
|
|
|
closestSeeds = np.zeros(len(arguments),dtype='i')
|
|
|
|
for i,arg in enumerate(arguments):
|
|
|
|
closestSeeds[i] = findClosestSeed(arg)
|
2015-10-06 23:33:06 +05:30
|
|
|
|
2016-03-02 15:59:07 +05:30
|
|
|
# closestSeed is modulo number of original seed points (i.e. excluding periodic copies)
|
2019-05-30 17:37:49 +05:30
|
|
|
return grains[closestSeeds%coords.shape[0]]
|
2013-06-30 06:00:06 +05:30
|
|
|
|
2019-05-27 02:22:23 +05:30
|
|
|
|
2014-08-25 18:09:12 +05:30
|
|
|
# --------------------------------------------------------------------
|
2012-11-06 02:49:12 +05:30
|
|
|
# MAIN
|
2014-08-25 18:09:12 +05:30
|
|
|
# --------------------------------------------------------------------
|
2014-10-09 22:33:06 +05:30
|
|
|
|
2016-05-12 12:24:34 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog option(s) [seedfile(s)]', description = """
|
|
|
|
Generate geometry description and material configuration by tessellation of given seeds file.
|
2014-10-10 14:24:48 +05:30
|
|
|
|
2014-08-25 18:09:12 +05:30
|
|
|
""", version = scriptID)
|
2012-11-06 02:49:12 +05:30
|
|
|
|
2016-04-09 03:17:02 +05:30
|
|
|
|
|
|
|
group = OptionGroup(parser, "Tessellation","")
|
|
|
|
|
2016-04-24 20:39:28 +05:30
|
|
|
group.add_option('-l',
|
|
|
|
'--laguerre',
|
|
|
|
dest = 'laguerre',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'use Laguerre (weighted Voronoi) tessellation')
|
2016-04-09 03:17:02 +05:30
|
|
|
group.add_option('--cpus',
|
2016-04-24 20:39:28 +05:30
|
|
|
dest = 'cpus',
|
|
|
|
type = 'int', metavar = 'int',
|
|
|
|
help = 'number of parallel processes to use for Laguerre tessellation [%default]')
|
2016-04-09 03:17:02 +05:30
|
|
|
group.add_option('--nonperiodic',
|
2017-08-17 01:54:45 +05:30
|
|
|
dest = 'periodic',
|
|
|
|
action = 'store_false',
|
2016-04-24 20:39:28 +05:30
|
|
|
help = 'nonperiodic tessellation')
|
2016-04-09 03:17:02 +05:30
|
|
|
|
|
|
|
parser.add_option_group(group)
|
|
|
|
|
|
|
|
group = OptionGroup(parser, "Geometry","")
|
|
|
|
|
2016-04-24 20:39:28 +05:30
|
|
|
group.add_option('-g',
|
|
|
|
'--grid',
|
|
|
|
dest = 'grid',
|
|
|
|
type = 'int', nargs = 3, metavar = ' '.join(['int']*3),
|
2016-07-15 14:04:17 +05:30
|
|
|
help = 'a,b,c grid of hexahedral box')
|
2016-04-24 20:39:28 +05:30
|
|
|
group.add_option('-s',
|
|
|
|
'--size',
|
|
|
|
dest = 'size',
|
|
|
|
type = 'float', nargs = 3, metavar=' '.join(['float']*3),
|
2016-07-15 14:04:17 +05:30
|
|
|
help = 'x,y,z size of hexahedral box')
|
2016-04-24 20:39:28 +05:30
|
|
|
group.add_option('-o',
|
|
|
|
'--origin',
|
|
|
|
dest = 'origin',
|
|
|
|
type = 'float', nargs = 3, metavar=' '.join(['float']*3),
|
|
|
|
help = 'origin of grid')
|
2017-08-17 01:54:45 +05:30
|
|
|
group.add_option('--nonnormalized',
|
|
|
|
dest = 'normalized',
|
|
|
|
action = 'store_false',
|
|
|
|
help = 'seed coordinates are not normalized to a unit cube')
|
2016-04-09 03:17:02 +05:30
|
|
|
|
|
|
|
parser.add_option_group(group)
|
|
|
|
|
|
|
|
group = OptionGroup(parser, "Seeds","")
|
|
|
|
|
2016-04-24 20:39:28 +05:30
|
|
|
group.add_option('-p',
|
|
|
|
'--pos', '--seedposition',
|
|
|
|
dest = 'pos',
|
2015-08-08 00:33:26 +05:30
|
|
|
type = 'string', metavar = 'string',
|
2016-04-24 20:39:28 +05:30
|
|
|
help = 'label of coordinates [%default]')
|
|
|
|
group.add_option('-w',
|
|
|
|
'--weight',
|
|
|
|
dest = 'weight',
|
|
|
|
type = 'string', metavar = 'string',
|
|
|
|
help = 'label of weights [%default]')
|
|
|
|
group.add_option('-m',
|
|
|
|
'--microstructure',
|
|
|
|
dest = 'microstructure',
|
|
|
|
type = 'string', metavar = 'string',
|
|
|
|
help = 'label of microstructures [%default]')
|
|
|
|
group.add_option('-e',
|
|
|
|
'--eulers',
|
|
|
|
dest = 'eulers',
|
|
|
|
type = 'string', metavar = 'string',
|
|
|
|
help = 'label of Euler angles [%default]')
|
2016-04-09 03:17:02 +05:30
|
|
|
group.add_option('--axes',
|
2016-04-24 20:39:28 +05:30
|
|
|
dest = 'axes',
|
|
|
|
type = 'string', nargs = 3, metavar = ' '.join(['string']*3),
|
|
|
|
help = 'orientation coordinate frame in terms of position coordinate frame')
|
2016-04-09 03:17:02 +05:30
|
|
|
|
|
|
|
parser.add_option_group(group)
|
|
|
|
|
|
|
|
group = OptionGroup(parser, "Configuration","")
|
|
|
|
|
2016-12-24 04:16:16 +05:30
|
|
|
group.add_option('--without-config',
|
2016-12-07 08:06:25 +05:30
|
|
|
dest = 'config',
|
|
|
|
action = 'store_false',
|
|
|
|
help = 'omit material configuration header')
|
2016-04-09 03:17:02 +05:30
|
|
|
group.add_option('--homogenization',
|
2016-04-24 20:39:28 +05:30
|
|
|
dest = 'homogenization',
|
|
|
|
type = 'int', metavar = 'int',
|
|
|
|
help = 'homogenization index to be used [%default]')
|
2016-04-09 03:17:02 +05:30
|
|
|
group.add_option('--phase',
|
2016-04-24 20:39:28 +05:30
|
|
|
dest = 'phase',
|
|
|
|
type = 'int', metavar = 'int',
|
|
|
|
help = 'phase index to be used [%default]')
|
2016-04-09 03:17:02 +05:30
|
|
|
|
|
|
|
parser.add_option_group(group)
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2016-04-24 20:39:28 +05:30
|
|
|
parser.set_defaults(pos = 'pos',
|
2015-08-08 00:33:26 +05:30
|
|
|
weight = 'weight',
|
|
|
|
microstructure = 'microstructure',
|
2016-04-24 20:39:28 +05:30
|
|
|
eulers = 'euler',
|
2015-06-27 14:11:08 +05:30
|
|
|
homogenization = 1,
|
2015-08-08 00:33:26 +05:30
|
|
|
phase = 1,
|
|
|
|
cpus = 2,
|
|
|
|
laguerre = False,
|
2017-08-17 01:54:45 +05:30
|
|
|
periodic = True,
|
|
|
|
normalized = True,
|
2016-12-07 08:06:25 +05:30
|
|
|
config = True,
|
2015-06-27 14:11:08 +05:30
|
|
|
)
|
2019-05-30 14:15:17 +05:30
|
|
|
|
2012-11-06 02:49:12 +05:30
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2015-08-13 02:25:53 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2012-11-06 02:49:12 +05:30
|
|
|
|
2015-06-27 14:11:08 +05:30
|
|
|
for name in filenames:
|
2015-09-24 21:04:27 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2019-05-30 14:15:17 +05:30
|
|
|
table = damask.ASCIItable(name = name, readonly = True)
|
|
|
|
|
2012-11-06 02:49:12 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- read header ----------------------------------------------------------------------------
|
2014-01-01 02:36:32 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.head_read()
|
|
|
|
info,extra_header = table.head_getGeom()
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2016-03-02 15:59:07 +05:30
|
|
|
if options.grid is not None: info['grid'] = options.grid
|
|
|
|
if options.size is not None: info['size'] = options.size
|
|
|
|
if options.origin is not None: info['origin'] = options.origin
|
2019-05-30 17:37:49 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ sanity checks ---------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
remarks = []
|
|
|
|
errors = []
|
2015-05-02 13:11:14 +05:30
|
|
|
labels = []
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
hasGrains = table.label_dimension(options.microstructure) == 1
|
|
|
|
hasEulers = table.label_dimension(options.eulers) == 3
|
2015-08-13 02:25:53 +05:30
|
|
|
hasWeights = table.label_dimension(options.weight) == 1 and options.laguerre
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2019-05-27 12:05:24 +05:30
|
|
|
for i in range(3):
|
|
|
|
if info['size'][i] <= 0.0: # any invalid size?
|
|
|
|
info['size'][i] = float(info['grid'][i])/max(info['grid']) # normalize to grid
|
|
|
|
remarks.append('rescaling size {} to {}...'.format(['x','y','z'][i],info['size'][i]))
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2016-04-24 20:39:28 +05:30
|
|
|
if table.label_dimension(options.pos) != 3:
|
|
|
|
errors.append('seed positions "{}" have dimension {}.'.format(options.pos,
|
|
|
|
table.label_dimension(options.pos)))
|
2015-05-08 10:32:44 +05:30
|
|
|
else:
|
2016-04-24 20:39:28 +05:30
|
|
|
labels += [options.pos]
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2017-08-17 01:54:45 +05:30
|
|
|
if not options.normalized: remarks.append('using real-space seed coordinates...')
|
2015-08-08 03:45:24 +05:30
|
|
|
if not hasEulers: remarks.append('missing seed orientations...')
|
2015-08-08 00:33:26 +05:30
|
|
|
else: labels += [options.eulers]
|
2015-08-08 03:45:24 +05:30
|
|
|
if not hasGrains: remarks.append('missing seed microstructure indices...')
|
2015-08-08 00:33:26 +05:30
|
|
|
else: labels += [options.microstructure]
|
2015-08-08 03:45:24 +05:30
|
|
|
if options.laguerre and not hasWeights: remarks.append('missing seed weights...')
|
2015-08-08 00:33:26 +05:30
|
|
|
else: labels += [options.weight]
|
|
|
|
|
2015-09-24 21:04:27 +05:30
|
|
|
if remarks != []: damask.util.croak(remarks)
|
2015-08-08 00:33:26 +05:30
|
|
|
if errors != []:
|
2015-09-24 21:04:27 +05:30
|
|
|
damask.util.croak(errors)
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close(dismiss=True)
|
2015-05-08 10:32:44 +05:30
|
|
|
continue
|
2014-02-04 05:14:29 +05:30
|
|
|
|
2019-05-30 17:37:49 +05:30
|
|
|
# ------------------------------------------ read seeds ---------------------------------------
|
|
|
|
|
2015-05-02 13:11:14 +05:30
|
|
|
table.data_readArray(labels)
|
2017-08-17 01:54:45 +05:30
|
|
|
coords = table.data[:,table.label_indexrange(options.pos)] * info['size'] if options.normalized \
|
|
|
|
else table.data[:,table.label_indexrange(options.pos)] - info['origin']
|
2016-04-24 20:39:28 +05:30
|
|
|
eulers = table.data[:,table.label_indexrange(options.eulers)] if hasEulers \
|
|
|
|
else np.zeros(3*len(coords))
|
2019-05-27 02:19:05 +05:30
|
|
|
grains = table.data[:,table.label_indexrange(options.microstructure)].astype(int) if hasGrains \
|
2016-04-24 20:39:28 +05:30
|
|
|
else 1+np.arange(len(coords))
|
|
|
|
weights = table.data[:,table.label_indexrange(options.weight)] if hasWeights \
|
|
|
|
else np.zeros(len(coords))
|
|
|
|
grainIDs = np.unique(grains).astype('i')
|
2015-08-08 00:33:26 +05:30
|
|
|
NgrainIDs = len(grainIDs)
|
|
|
|
|
|
|
|
# --- tessellate microstructure ------------------------------------------------------------
|
|
|
|
|
|
|
|
x = (np.arange(info['grid'][0])+0.5)*info['size'][0]/info['grid'][0]
|
|
|
|
y = (np.arange(info['grid'][1])+0.5)*info['size'][1]/info['grid'][1]
|
|
|
|
z = (np.arange(info['grid'][2])+0.5)*info['size'][2]/info['grid'][2]
|
2019-05-30 13:14:40 +05:30
|
|
|
X,Y,Z = np.meshgrid(x, y, z,indexing='ij')
|
2019-05-30 17:58:31 +05:30
|
|
|
grid = np.stack((X,Y,Z),axis=-1).reshape((np.prod(info['grid']),3),order='F')
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2015-09-24 21:04:27 +05:30
|
|
|
damask.util.croak('tessellating...')
|
2017-08-17 01:54:45 +05:30
|
|
|
indices = laguerreTessellation(grid, coords, weights, grains, options.periodic, options.cpus)
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
config_header = []
|
2016-12-07 08:06:25 +05:30
|
|
|
if options.config:
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2016-12-07 08:06:25 +05:30
|
|
|
if hasEulers:
|
|
|
|
config_header += ['<texture>']
|
|
|
|
for ID in grainIDs:
|
|
|
|
eulerID = np.nonzero(grains == ID)[0][0] # find first occurrence of this grain id
|
2019-05-30 13:33:55 +05:30
|
|
|
config_header += ['[Grain{}]'.format(ID),
|
|
|
|
'(gauss)\tphi1 {:.2f}\tPhi {:.2f}\tphi2 {:.2f}'.format(*eulers[eulerID])
|
2019-05-30 13:14:40 +05:30
|
|
|
]
|
|
|
|
if options.axes is not None: config_header += ['axes\t{} {} {}'.format(*options.axes)]
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2019-05-30 17:35:45 +05:30
|
|
|
config_header += ['<microstructure>']
|
|
|
|
for ID in grainIDs:
|
|
|
|
config_header += ['[Grain{}]'.format(ID),
|
|
|
|
'crystallite 1',
|
|
|
|
'(constituent)\tphase {}\ttexture {}\tfraction 1.0'.format(options.phase,ID)
|
|
|
|
]
|
|
|
|
|
2018-12-21 03:42:05 +05:30
|
|
|
config_header += ['<!skip>']
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2019-05-30 13:14:40 +05:30
|
|
|
header = [scriptID + ' ' + ' '.join(sys.argv[1:])]\
|
|
|
|
+ config_header
|
|
|
|
geom = damask.Geom(indices.reshape(info['grid'],order='F'),info['size'],info['origin'],
|
2019-05-28 06:44:09 +05:30
|
|
|
homogenization=options.homogenization,comments=header)
|
2019-05-27 02:19:05 +05:30
|
|
|
damask.util.croak(geom)
|
2019-05-30 17:37:49 +05:30
|
|
|
|
2019-05-27 02:19:05 +05:30
|
|
|
if name is None:
|
|
|
|
sys.stdout.write(str(geom.show()))
|
|
|
|
else:
|
|
|
|
geom.to_file(os.path.splitext(name)[0]+'.geom')
|