2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2011-10-11 23:05:53 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2016-03-02 02:53:30 +05:30
|
|
|
import os,sys,math
|
2014-11-18 13:30:45 +05:30
|
|
|
import numpy as np
|
2013-11-04 19:42:10 +05:30
|
|
|
from scipy import ndimage
|
2014-11-18 13:30:45 +05:30
|
|
|
from optparse import OptionParser
|
|
|
|
import damask
|
2011-10-11 23:05:53 +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-18 18:58:54 +05:30
|
|
|
|
2018-03-30 21:18:02 +05:30
|
|
|
def taintedNeighborhood(stencil,trigger=[],size=1):
|
|
|
|
|
|
|
|
me = stencil[stencil.shape[0]//2]
|
|
|
|
if len(trigger) == 0:
|
|
|
|
return np.any(stencil != me)
|
|
|
|
if me in trigger:
|
|
|
|
trigger = set(trigger)
|
|
|
|
trigger.remove(me)
|
|
|
|
trigger = list(trigger)
|
|
|
|
return np.any(np.in1d(stencil,np.array(trigger)))
|
|
|
|
|
2013-05-14 23:21:53 +05:30
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
#--------------------------------------------------------------------------------------------------
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2014-11-18 13:30:45 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [file[s]]', description = """
|
2018-03-30 21:18:02 +05:30
|
|
|
Offset microstructure index for points which see a microstructure different from themselves
|
|
|
|
(or listed as triggers) within a given (cubic) vicinity, i.e. within the region close to a grain/phase boundary.
|
2014-11-18 13:30:45 +05:30
|
|
|
|
|
|
|
""", version = scriptID)
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-v', '--vicinity',
|
|
|
|
dest = 'vicinity',
|
|
|
|
type = 'int', metavar = 'int',
|
|
|
|
help = 'voxel distance checked for presence of other microstructure [%default]')
|
|
|
|
parser.add_option('-m', '--microstructureoffset',
|
|
|
|
dest='offset',
|
|
|
|
type = 'int', metavar = 'int',
|
|
|
|
help = 'offset (positive or negative) for tagged microstructure indices. '+
|
|
|
|
'"0" selects maximum microstructure index [%default]')
|
2018-03-30 21:18:02 +05:30
|
|
|
parser.add_option('-t', '--trigger',
|
|
|
|
action = 'extend', dest = 'trigger', metavar = '<int LIST>',
|
|
|
|
help = 'list of microstructure indices triggering a change')
|
2018-02-20 20:50:35 +05:30
|
|
|
parser.add_option('-n', '--nonperiodic',
|
|
|
|
dest = 'mode',
|
|
|
|
action = 'store_const', const = 'nearest',
|
|
|
|
help = 'assume geometry to be non-periodic')
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.set_defaults(vicinity = 1,
|
|
|
|
offset = 0,
|
2018-03-30 21:18:02 +05:30
|
|
|
trigger = [],
|
2018-02-20 20:50:35 +05:30
|
|
|
mode = 'wrap',
|
2015-08-08 00:33:26 +05:30
|
|
|
)
|
2011-10-11 23:05:53 +05:30
|
|
|
|
|
|
|
(options, filenames) = parser.parse_args()
|
2018-03-30 21:18:02 +05:30
|
|
|
options.trigger = np.array(options.trigger, dtype=int)
|
|
|
|
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
|
|
|
|
2015-08-21 01:12:05 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2015-08-21 01:12:05 +05:30
|
|
|
try:
|
|
|
|
table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False, labeled = False)
|
|
|
|
except: continue
|
2015-09-24 22:22:58 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
# --- interpret header ----------------------------------------------------------------------------
|
|
|
|
|
2015-03-02 10:36:29 +05:30
|
|
|
table.head_read()
|
2015-08-08 00:33:26 +05:30
|
|
|
info,extra_header = table.head_getGeom()
|
|
|
|
|
2015-09-24 22:22:58 +05:30
|
|
|
damask.util.croak(['grid a b c: %s'%(' x '.join(map(str,info['grid']))),
|
2015-08-08 00:33:26 +05:30
|
|
|
'size x y z: %s'%(' x '.join(map(str,info['size']))),
|
|
|
|
'origin x y z: %s'%(' : '.join(map(str,info['origin']))),
|
|
|
|
'homogenization: %i'%info['homogenization'],
|
|
|
|
'microstructures: %i'%info['microstructures'],
|
|
|
|
])
|
|
|
|
|
|
|
|
errors = []
|
|
|
|
if np.any(info['grid'] < 1): errors.append('invalid grid a b c.')
|
|
|
|
if np.any(info['size'] <= 0.0): errors.append('invalid size x y z.')
|
|
|
|
if errors != []:
|
2015-09-24 22:22:58 +05:30
|
|
|
damask.util.croak(errors)
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close(dismiss = True)
|
|
|
|
continue
|
|
|
|
|
|
|
|
# --- read data ------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
microstructure = table.microstructure_read(info['grid']).reshape(info['grid'],order='F') # read microstructure
|
|
|
|
|
|
|
|
# --- do work ------------------------------------------------------------------------------------
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2013-05-14 23:21:53 +05:30
|
|
|
newInfo = {
|
2015-08-08 00:33:26 +05:30
|
|
|
'microstructures': 0,
|
|
|
|
}
|
2013-05-15 02:39:37 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
if options.offset == 0: options.offset = microstructure.max()
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2018-03-30 21:18:02 +05:30
|
|
|
microstructure = np.where(ndimage.filters.generic_filter(microstructure,
|
|
|
|
taintedNeighborhood,
|
|
|
|
size=1+2*options.vicinity,mode=options.mode,
|
|
|
|
extra_arguments=(),
|
|
|
|
extra_keywords={"trigger":options.trigger,"size":1+2*options.vicinity}),
|
|
|
|
microstructure + options.offset,microstructure)
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2013-05-14 23:21:53 +05:30
|
|
|
newInfo['microstructures'] = microstructure.max()
|
2013-04-25 22:21:32 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- report ---------------------------------------------------------------------------------------
|
|
|
|
|
2016-03-02 02:53:30 +05:30
|
|
|
if (newInfo['microstructures'] != info['microstructures']):
|
|
|
|
damask.util.croak('--> microstructures: %i'%newInfo['microstructures'])
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
# --- write header ---------------------------------------------------------------------------------
|
|
|
|
|
2015-03-02 10:36:29 +05:30
|
|
|
table.labels_clear()
|
|
|
|
table.info_clear()
|
2017-08-23 23:39:33 +05:30
|
|
|
table.info_append(extra_header+[
|
2014-01-20 20:11:56 +05:30
|
|
|
scriptID + ' ' + ' '.join(sys.argv[1:]),
|
2015-08-08 00:33:26 +05:30
|
|
|
"grid\ta {grid[0]}\tb {grid[1]}\tc {grid[2]}".format(grid=info['grid']),
|
|
|
|
"size\tx {size[0]}\ty {size[1]}\tz {size[2]}".format(size=info['size']),
|
|
|
|
"origin\tx {origin[0]}\ty {origin[1]}\tz {origin[2]}".format(origin=info['origin']),
|
|
|
|
"homogenization\t{homog}".format(homog=info['homogenization']),
|
|
|
|
"microstructures\t{microstructures}".format(microstructures=newInfo['microstructures']),
|
2013-11-04 19:42:10 +05:30
|
|
|
])
|
2015-03-02 10:36:29 +05:30
|
|
|
table.head_write()
|
2013-11-04 19:42:10 +05:30
|
|
|
|
2013-05-14 23:21:53 +05:30
|
|
|
# --- write microstructure information ------------------------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2013-11-04 19:42:10 +05:30
|
|
|
formatwidth = int(math.floor(math.log10(microstructure.max())+1))
|
2015-03-02 10:36:29 +05:30
|
|
|
table.data = microstructure.reshape((info['grid'][0],info['grid'][1]*info['grid'][2]),order='F').transpose()
|
2015-08-08 00:33:26 +05:30
|
|
|
table.data_writeArray('%%%ii'%(formatwidth),delimiter = ' ')
|
2011-10-11 23:05:53 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- output finalization --------------------------------------------------------------------------
|
2013-11-04 19:42:10 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close() # close ASCII table
|