2016-07-18 23:05:35 +05:30
|
|
|
#!/usr/bin/env python2.7
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2016-03-01 22:55:14 +05:30
|
|
|
import os,sys,math
|
2014-08-06 20:55:18 +05:30
|
|
|
import numpy as np
|
2014-07-25 01:51:18 +05:30
|
|
|
from optparse import OptionParser
|
|
|
|
import damask
|
2013-11-26 00:41:02 +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-25 01:51:18 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [file[s]]', description = """
|
2013-11-26 00:41:02 +05:30
|
|
|
Add quaternion and/or Bunge Euler angle representation of crystal lattice orientation.
|
2016-03-02 01:44:06 +05:30
|
|
|
Orientation is given by quaternion, Euler angles, rotation matrix, or crystal frame coordinates
|
|
|
|
(i.e. component vectors of rotation matrix).
|
2016-08-01 05:05:10 +05:30
|
|
|
Additional (globally fixed) rotations of the lab frame and/or crystal frame can be applied.
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2014-08-06 18:57:09 +05:30
|
|
|
""", version = scriptID)
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-11-10 07:04:10 +05:30
|
|
|
outputChoices = ['quaternion','rodrigues','eulers']
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-o', '--output',
|
|
|
|
dest = 'output',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
2016-07-31 00:37:44 +05:30
|
|
|
help = 'output orientation formats {{{}}}'.format(', '.join(outputChoices)))
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-s', '--symmetry',
|
|
|
|
dest = 'symmetry',
|
|
|
|
type = 'choice', choices = damask.Symmetry.lattices[1:], metavar='string',
|
|
|
|
help = 'crystal symmetry [%default] {{{}}} '.format(', '.join(damask.Symmetry.lattices[1:])))
|
2016-07-31 00:37:44 +05:30
|
|
|
parser.add_option('-d', '--degrees',
|
|
|
|
dest = 'degrees',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'angles are given in degrees [%default]')
|
2016-08-01 05:05:10 +05:30
|
|
|
parser.add_option('-R', '--labrotation',
|
|
|
|
dest='labrotation',
|
2016-07-31 00:37:44 +05:30
|
|
|
type = 'float', nargs = 4, metavar = ' '.join(['float']*4),
|
2016-08-01 05:05:10 +05:30
|
|
|
help = 'angle and axis of additional lab frame rotation')
|
|
|
|
parser.add_option('-r', '--crystalrotation',
|
|
|
|
dest='crystalrotation',
|
|
|
|
type = 'float', nargs = 4, metavar = ' '.join(['float']*4),
|
|
|
|
help = 'angle and axis of additional crystal frame rotation')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-e', '--eulers',
|
|
|
|
dest = 'eulers',
|
|
|
|
type = 'string', metavar = 'string',
|
2015-05-10 03:02:23 +05:30
|
|
|
help = 'Euler angles label')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-m', '--matrix',
|
|
|
|
dest = 'matrix',
|
|
|
|
type = 'string', metavar = 'string',
|
2015-05-10 03:02:23 +05:30
|
|
|
help = 'orientation matrix label')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-a',
|
|
|
|
dest = 'a',
|
|
|
|
type = 'string', metavar = 'string',
|
2015-05-10 03:02:23 +05:30
|
|
|
help = 'crystal frame a vector label')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-b',
|
|
|
|
dest = 'b',
|
|
|
|
type = 'string', metavar = 'string',
|
2015-05-10 03:02:23 +05:30
|
|
|
help = 'crystal frame b vector label')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-c',
|
|
|
|
dest = 'c',
|
|
|
|
type = 'string', metavar = 'string',
|
2015-05-10 03:02:23 +05:30
|
|
|
help = 'crystal frame c vector label')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-q', '--quaternion',
|
|
|
|
dest = 'quaternion',
|
|
|
|
type = 'string', metavar = 'string',
|
2015-05-10 03:02:23 +05:30
|
|
|
help = 'quaternion label')
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.set_defaults(output = [],
|
|
|
|
symmetry = damask.Symmetry.lattices[-1],
|
2016-08-01 20:13:14 +05:30
|
|
|
labrotation = (0.,1.,1.,1.), # no rotation about 1,1,1
|
|
|
|
crystalrotation = (0.,1.,1.,1.), # no rotation about 1,1,1
|
2015-08-08 00:33:26 +05:30
|
|
|
degrees = False,
|
|
|
|
)
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
(options, filenames) = parser.parse_args()
|
2014-08-04 23:23:41 +05:30
|
|
|
|
2013-11-26 00:41:02 +05:30
|
|
|
options.output = map(lambda x: x.lower(), options.output)
|
2015-08-08 00:33:26 +05:30
|
|
|
if options.output == [] or (not set(options.output).issubset(set(outputChoices))):
|
|
|
|
parser.error('output must be chosen from {}.'.format(', '.join(outputChoices)))
|
|
|
|
|
2016-03-02 01:41:43 +05:30
|
|
|
input = [options.eulers is not None,
|
|
|
|
options.a is not None and \
|
|
|
|
options.b is not None and \
|
|
|
|
options.c is not None,
|
|
|
|
options.matrix is not None,
|
|
|
|
options.quaternion is not None,
|
2015-08-08 00:33:26 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
if np.sum(input) != 1: parser.error('needs exactly one input format.')
|
|
|
|
|
|
|
|
(label,dim,inputtype) = [(options.eulers,3,'eulers'),
|
|
|
|
([options.a,options.b,options.c],[3,3,3],'frame'),
|
|
|
|
(options.matrix,9,'matrix'),
|
|
|
|
(options.quaternion,4,'quaternion'),
|
|
|
|
][np.where(input)[0][0]] # select input label that was requested
|
|
|
|
toRadians = math.pi/180.0 if options.degrees else 1.0 # rescale degrees to radians
|
2016-08-01 05:05:10 +05:30
|
|
|
r = damask.Quaternion().fromAngleAxis(toRadians*options.crystalrotation[0],options.crystalrotation[1:]) # crystal frame rotation
|
|
|
|
R = damask.Quaternion().fromAngleAxis(toRadians*options. labrotation[0],options. labrotation[1:]) # lab frame rotation
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- loop over input files ------------------------------------------------------------------------
|
2014-05-26 20:01:42 +05:30
|
|
|
|
2015-08-21 01:12:05 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-06-05 17:17:27 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2016-07-31 00:37:44 +05:30
|
|
|
try: table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False)
|
2015-08-21 01:12:05 +05:30
|
|
|
except: continue
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ read header ------------------------------------------
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.head_read()
|
2014-08-04 23:23:41 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ sanity checks -----------------------------------------
|
|
|
|
|
|
|
|
errors = []
|
|
|
|
remarks = []
|
|
|
|
|
2016-03-09 22:58:36 +05:30
|
|
|
if not np.all(table.label_dimension(label) == dim): errors.append('input {} does not have dimension {}.'.format(label,dim))
|
2015-08-08 00:33:26 +05:30
|
|
|
else: column = table.label_index(label)
|
|
|
|
|
2015-09-24 14:54:42 +05:30
|
|
|
if remarks != []: damask.util.croak(remarks)
|
2015-08-08 00:33:26 +05:30
|
|
|
if errors != []:
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.croak(errors)
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close(dismiss = True)
|
2014-08-04 23:23:41 +05:30
|
|
|
continue
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2014-08-06 20:55:18 +05:30
|
|
|
# ------------------------------------------ assemble header ---------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2013-11-26 00:41:02 +05:30
|
|
|
for output in options.output:
|
2016-07-31 00:37:44 +05:30
|
|
|
if output == 'quaternion': table.labels_append(['{}_{}_{}({})'.format(i+1,'quat',options.symmetry,label) for i in xrange(4)])
|
|
|
|
elif output == 'rodrigues': table.labels_append(['{}_{}_{}({})'.format(i+1,'rodr',options.symmetry,label) for i in xrange(3)])
|
|
|
|
elif output == 'eulers': table.labels_append(['{}_{}_{}({})'.format(i+1,'eulr',options.symmetry,label) for i in xrange(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
|
2015-08-08 00:33:26 +05:30
|
|
|
if inputtype == 'eulers':
|
|
|
|
o = damask.Orientation(Eulers = np.array(map(float,table.data[column:column+3]))*toRadians,
|
|
|
|
symmetry = options.symmetry).reduced()
|
|
|
|
elif inputtype == 'matrix':
|
|
|
|
o = damask.Orientation(matrix = np.array(map(float,table.data[column:column+9])).reshape(3,3).transpose(),
|
|
|
|
symmetry = options.symmetry).reduced()
|
|
|
|
elif inputtype == 'frame':
|
|
|
|
o = damask.Orientation(matrix = np.array(map(float,table.data[column[0]:column[0]+3] + \
|
|
|
|
table.data[column[1]:column[1]+3] + \
|
|
|
|
table.data[column[2]:column[2]+3])).reshape(3,3),
|
|
|
|
symmetry = options.symmetry).reduced()
|
|
|
|
elif inputtype == 'quaternion':
|
|
|
|
o = damask.Orientation(quaternion = np.array(map(float,table.data[column:column+4])),
|
|
|
|
symmetry = options.symmetry).reduced()
|
2013-11-26 00:41:02 +05:30
|
|
|
|
2016-08-01 05:05:10 +05:30
|
|
|
o.quaternion = r*o.quaternion*R # apply additional lab and crystal frame rotations
|
2014-05-26 20:01:42 +05:30
|
|
|
|
2013-11-26 00:41:02 +05:30
|
|
|
for output in options.output:
|
2016-07-31 00:37:44 +05:30
|
|
|
if output == 'quaternion': table.data_append(o.asQuaternion())
|
|
|
|
elif output == 'rodrigues': table.data_append(o.asRodrigues())
|
|
|
|
elif output == 'eulers': table.data_append(o.asEulers('Bunge', degrees=options.degrees))
|
2014-07-25 01:51:18 +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
|