2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import os
|
|
|
|
import sys
|
2014-08-07 22:21:26 +05:30
|
|
|
from optparse import OptionParser
|
2019-06-14 16:33:30 +05:30
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
|
2014-08-07 22:21:26 +05:30
|
|
|
import damask
|
2014-05-27 13:38:10 +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])
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
|
2014-05-27 13:38:10 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2019-02-17 12:30:26 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
|
2015-03-29 21:07:40 +05:30
|
|
|
Rotate vector and/or tensor column data by given angle around given axis.
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2014-08-07 22:21:26 +05:30
|
|
|
""", version = scriptID)
|
|
|
|
|
2018-12-09 11:40:31 +05:30
|
|
|
parser.add_option('-d', '--data',
|
|
|
|
dest = 'data',
|
2015-08-08 00:33:26 +05:30
|
|
|
action = 'extend', metavar = '<string LIST>',
|
2018-12-09 11:40:31 +05:30
|
|
|
help = 'vector/tensor value(s) label(s)')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-r', '--rotation',
|
|
|
|
dest = 'rotation',
|
|
|
|
type = 'float', nargs = 4, metavar = ' '.join(['float']*4),
|
2019-03-10 00:28:17 +05:30
|
|
|
help = 'axis and angle to rotate data [%default]')
|
2018-12-09 11:40:31 +05:30
|
|
|
parser.add_option('--degrees',
|
2015-08-08 00:33:26 +05:30
|
|
|
dest = 'degrees',
|
|
|
|
action = 'store_true',
|
2019-02-16 19:23:56 +05:30
|
|
|
help = 'angles are given in degrees')
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2019-03-10 00:28:17 +05:30
|
|
|
parser.set_defaults(rotation = (1.,1.,1.,0), # no rotation about (1,1,1)
|
2015-08-08 00:33:26 +05:30
|
|
|
degrees = False,
|
|
|
|
)
|
|
|
|
|
2014-05-27 13:38:10 +05:30
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
2018-12-09 11:40:31 +05:30
|
|
|
if options.data is None:
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.error('no data column specified.')
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2019-03-10 00:28:17 +05:30
|
|
|
r = damask.Rotation.fromAxisAngle(np.array(options.rotation),options.degrees,normalise=True)
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2015-02-11 22:52:47 +05:30
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2015-08-18 20:07:32 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-02-11 22:52:47 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2015-08-18 20:07:32 +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
|
|
|
|
2018-12-09 11:40:31 +05:30
|
|
|
# --- interpret header ----------------------------------------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
table.head_read()
|
|
|
|
|
|
|
|
errors = []
|
|
|
|
remarks = []
|
2018-12-09 11:40:31 +05:30
|
|
|
active = {'vector':[],'tensor':[]}
|
|
|
|
|
|
|
|
for i,dim in enumerate(table.label_dimension(options.data)):
|
|
|
|
label = options.data[i]
|
|
|
|
if dim == -1:
|
2018-12-09 15:33:18 +05:30
|
|
|
remarks.append('"{}" not found...'.format(label))
|
2018-12-09 11:40:31 +05:30
|
|
|
elif dim == 3:
|
|
|
|
remarks.append('adding vector "{}"...'.format(label))
|
|
|
|
active['vector'].append(label)
|
|
|
|
elif dim == 9:
|
|
|
|
remarks.append('adding tensor "{}"...'.format(label))
|
|
|
|
active['tensor'].append(label)
|
2014-05-27 13:38:10 +05:30
|
|
|
|
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)
|
|
|
|
continue
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ assemble header --------------------------------------
|
|
|
|
|
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2014-05-27 13:38:10 +05:30
|
|
|
table.head_write()
|
|
|
|
|
2014-08-07 22:21:26 +05:30
|
|
|
# ------------------------------------------ process data ------------------------------------------
|
2014-05-27 13:38:10 +05:30
|
|
|
outputAlive = True
|
2014-08-07 22:21:26 +05:30
|
|
|
while outputAlive and table.data_read(): # read next data line of ASCII table
|
2018-12-09 11:40:31 +05:30
|
|
|
for v in active['vector']:
|
|
|
|
column = table.label_index(v)
|
2019-02-12 12:12:46 +05:30
|
|
|
table.data[column:column+3] = r * np.array(list(map(float,table.data[column:column+3])))
|
2018-12-09 11:40:31 +05:30
|
|
|
for t in active['tensor']:
|
2018-12-09 12:28:42 +05:30
|
|
|
column = table.label_index(t)
|
2019-02-12 13:34:35 +05:30
|
|
|
table.data[column:column+9] = (r * np.array(list(map(float,table.data[column:column+9]))).reshape((3,3))).reshape(9)
|
2019-02-12 12:12:46 +05:30
|
|
|
|
2014-08-07 22:21:26 +05:30
|
|
|
outputAlive = table.data_write() # output processed line
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# ------------------------------------------ output finalization -----------------------------------
|
2014-05-27 13:38:10 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close() # close ASCII tables
|