2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import os
|
|
|
|
import sys
|
2014-07-22 19:51:49 +05:30
|
|
|
from optparse import OptionParser
|
2019-06-14 16:33:30 +05:30
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
|
2014-07-22 19:51:49 +05:30
|
|
|
import damask
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2019-06-14 16:33:30 +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-11-26 00:41:02 +05:30
|
|
|
|
2014-07-22 19:51:49 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2019-02-16 22:11:56 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
|
2013-11-26 00:41:02 +05:30
|
|
|
Add RGB color value corresponding to TSL-OIM scheme for inverse pole figures.
|
2014-07-22 19:51:49 +05:30
|
|
|
|
2014-08-06 18:57:09 +05:30
|
|
|
""", version = scriptID)
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2018-12-10 13:57:39 +05:30
|
|
|
parser.add_option('-p',
|
|
|
|
'--pole',
|
2015-08-08 00:33:26 +05:30
|
|
|
dest = 'pole',
|
|
|
|
type = 'float', nargs = 3, metavar = 'float float float',
|
2015-05-09 18:31:31 +05:30
|
|
|
help = 'lab frame direction for inverse pole figure [%default]')
|
2018-12-10 13:57:39 +05:30
|
|
|
parser.add_option('-s',
|
|
|
|
'--symmetry',
|
2015-08-08 00:33:26 +05:30
|
|
|
dest = 'symmetry',
|
|
|
|
type = 'choice', choices = damask.Symmetry.lattices[1:], metavar='string',
|
|
|
|
help = 'crystal symmetry [%default] {{{}}} '.format(', '.join(damask.Symmetry.lattices[1:])))
|
2018-12-10 13:57:39 +05:30
|
|
|
parser.add_option('-o',
|
|
|
|
'--orientation',
|
2015-08-08 00:33:26 +05:30
|
|
|
dest = 'quaternion',
|
2018-12-10 13:57:39 +05:30
|
|
|
metavar = 'string',
|
|
|
|
help = 'label of crystal orientation given as unit quaternion [%default]')
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-06-16 22:51:24 +05:30
|
|
|
parser.set_defaults(pole = (0.0,0.0,1.0),
|
2018-12-09 11:40:31 +05:30
|
|
|
quaternion = 'orientation',
|
2015-08-08 00:33:26 +05:30
|
|
|
symmetry = damask.Symmetry.lattices[-1],
|
2015-06-16 22:51:24 +05:30
|
|
|
)
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-06-16 22:51:24 +05:30
|
|
|
(options, filenames) = parser.parse_args()
|
2014-08-04 23:23:41 +05:30
|
|
|
|
2019-02-24 12:38:14 +05:30
|
|
|
# damask.Orientation requires Bravais lattice, but we are only interested in symmetry
|
|
|
|
symmetry2lattice={'cubic':'bcc','hexagonal':'hex','tetragonal':'bct'}
|
|
|
|
lattice = symmetry2lattice[options.symmetry]
|
|
|
|
|
2014-07-22 19:51:49 +05:30
|
|
|
pole = np.array(options.pole)
|
|
|
|
pole /= np.linalg.norm(pole)
|
2013-11-26 00:41:02 +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-06-16 22:51:24 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2015-08-21 01:12:05 +05:30
|
|
|
try:
|
|
|
|
table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False)
|
|
|
|
except: continue
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ read header ------------------------------------------
|
|
|
|
|
|
|
|
table.head_read()
|
2015-06-16 22:51:24 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ sanity checks ----------------------------------------
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2018-12-09 11:40:31 +05:30
|
|
|
if not table.label_dimension(options.quaternion) == 4:
|
|
|
|
damask.util.croak('input {} does not have dimension 4.'.format(options.quaternion))
|
2015-06-16 22:51:24 +05:30
|
|
|
table.close(dismiss = True) # close ASCIItable and remove empty file
|
2014-08-04 23:23:41 +05:30
|
|
|
continue
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2018-12-09 11:40:31 +05:30
|
|
|
column = table.label_index(options.quaternion)
|
2015-06-16 22:51:24 +05:30
|
|
|
|
2014-08-06 20:55:18 +05:30
|
|
|
# ------------------------------------------ assemble header ---------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2015-06-16 22:51:24 +05:30
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2016-10-25 00:46:29 +05:30
|
|
|
table.labels_append(['{}_IPF_{:g}{:g}{:g}_{sym}'.format(i+1,*options.pole,sym = options.symmetry.lower()) for i in range(3)])
|
2013-11-26 00:41:02 +05:30
|
|
|
table.head_write()
|
|
|
|
|
2014-08-06 20:55:18 +05:30
|
|
|
# ------------------------------------------ process data ------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2014-07-25 01:51:18 +05:30
|
|
|
outputAlive = True
|
|
|
|
while outputAlive and table.data_read(): # read next data line of ASCII table
|
2019-02-24 12:38:14 +05:30
|
|
|
o = damask.Orientation(np.array(list(map(float,table.data[column:column+4]))),
|
|
|
|
lattice = lattice).reduced()
|
2013-11-26 00:41:02 +05:30
|
|
|
|
|
|
|
table.data_append(o.IPFcolor(pole))
|
2014-07-22 19:51:49 +05:30
|
|
|
outputAlive = table.data_write() # output processed line
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ output finalization -----------------------------------
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close() # close ASCII tables
|