DAMASK_EICMD/processing/pre/geom_rotate.py

99 lines
4.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2015-11-12 01:21:17 +05:30
# -*- coding: UTF-8 no BOM -*-
2019-05-25 02:01:34 +05:30
import os
import sys
2015-11-12 01:21:17 +05:30
import numpy as np
import damask
2019-05-25 02:01:34 +05:30
from io import StringIO
2015-11-12 01:21:17 +05:30
from scipy import ndimage
from optparse import OptionParser
scriptName = os.path.splitext(os.path.basename(__file__))[0]
scriptID = ' '.join([scriptName,damask.version])
2015-11-12 01:21:17 +05:30
#--------------------------------------------------------------------------------------------------
# MAIN
#--------------------------------------------------------------------------------------------------
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [geomfile(s)]', description = """
2015-11-12 01:21:17 +05:30
Rotates spectral geometry description.
""", version=scriptID)
parser.add_option('-r', '--rotation',
dest='rotation',
type = 'float', nargs = 4, metavar = ' '.join(['float']*4),
help = 'rotation given as angle and axis')
parser.add_option('-e', '--eulers',
dest = 'eulers',
type = 'float', nargs = 3, metavar = ' '.join(['float']*3),
help = 'rotation given as Euler angles')
parser.add_option('-d', '--degrees',
dest = 'degrees',
action = 'store_true',
help = 'Euler angles are given in degrees [%default]')
parser.add_option('-m', '--matrix',
dest = 'matrix',
type = 'float', nargs = 9, metavar = ' '.join(['float']*9),
help = 'rotation given as matrix')
parser.add_option('-q', '--quaternion',
dest = 'quaternion',
type = 'float', nargs = 4, metavar = ' '.join(['float']*4),
help = 'rotation given as quaternion')
parser.add_option('-f', '--fill',
dest = 'fill',
type = 'int', metavar = 'int',
2019-05-25 02:01:34 +05:30
help = 'background grain index, defaults to max + 1')
2015-11-12 01:21:17 +05:30
parser.set_defaults(degrees = False,
)
2015-11-12 01:21:17 +05:30
(options, filenames) = parser.parse_args()
if sum(x is not None for x in [options.rotation,options.eulers,options.matrix,options.quaternion]) != 1:
2015-11-12 01:21:17 +05:30
parser.error('not exactly one rotation specified...')
2019-02-24 02:43:24 +05:30
if options.quaternion is not None:
eulers = damask.Rotation.fromQuaternion(np.array(options.quaternion)).asEulers(degrees=True)
if options.rotation is not None:
2019-05-25 13:44:53 +05:30
eulers = damask.Rotation.fromAxisAngle(np.array(options.rotation,degrees=options.degrees)).asEulers(degrees=True)
2019-02-24 02:43:24 +05:30
if options.matrix is not None:
eulers = damask.Rotation.fromMatrix(np.array(options.Matrix)).asEulers(degrees=True)
if options.eulers is not None:
2019-05-25 13:44:53 +05:30
eulers = damask.Rotation.fromEulers(np.array(options.eulers),degrees=options.degrees).asEulers(degrees=True)
2015-11-12 01:21:17 +05:30
# --- loop over input files -------------------------------------------------------------------------
if filenames == []: filenames = [None]
for name in filenames:
2019-05-25 13:44:53 +05:30
damask.util.report(scriptName,name)
2019-05-25 02:01:34 +05:30
if name is None:
virt_file = StringIO(''.join(sys.stdin.read()))
geom = damask.Geom.from_file(virt_file)
else:
geom = damask.Geom.from_file(name)
2019-05-25 02:01:34 +05:30
microstructure = geom.microstructure
2019-05-25 13:44:53 +05:30
2019-05-25 02:01:34 +05:30
spacing = geom.get_size()/geom.get_grid()
newGrainID = options.fill if options.fill is not None else np.nanmax(microstructure)+1
microstructure = ndimage.rotate(microstructure,eulers[2],(0,1),order=0,
prefilter=False,output=microstructure.dtype,cval=newGrainID) # rotation around Z
microstructure = ndimage.rotate(microstructure,eulers[1],(1,2),order=0,
prefilter=False,output=microstructure.dtype,cval=newGrainID) # rotation around X
microstructure = ndimage.rotate(microstructure,eulers[0],(0,1),order=0,
prefilter=False,output=microstructure.dtype,cval=newGrainID) # rotation around Z
geom.microstructure = microstructure
geom.set_size(microstructure.shape*spacing)
geom.add_comment(scriptID + ' ' + ' '.join(sys.argv[1:]))
2019-05-25 13:44:53 +05:30
damask.util.croak(geom)
2019-05-25 02:01:34 +05:30
if name is None:
2019-05-25 13:44:53 +05:30
sys.stdout.write(str(geom.show()))
2019-05-25 02:01:34 +05:30
else:
geom.to_file(name)