2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2015-12-18 02:56:59 +05:30
|
|
|
import math,os
|
2015-05-08 19:44:44 +05:30
|
|
|
import numpy as np
|
2019-02-12 03:41:11 +05:30
|
|
|
from . import Lambert
|
|
|
|
|
|
|
|
P = -1
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2019-02-12 04:20:02 +05:30
|
|
|
####################################################################################################
|
|
|
|
class Quaternion2:
|
|
|
|
u"""
|
|
|
|
Quaternion with basic operations
|
|
|
|
|
|
|
|
q is the real part, p = (x, y, z) are the imaginary parts.
|
|
|
|
Defintion of multiplication depends on variable P, P ∉ {-1,1}.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,
|
|
|
|
q = 0.0,
|
|
|
|
p = np.zeros(3,dtype=float)):
|
|
|
|
"""Initializes to identity unless specified"""
|
|
|
|
self.q = q
|
|
|
|
self.p = np.array(p)
|
|
|
|
|
|
|
|
|
|
|
|
def __copy__(self):
|
|
|
|
"""Copy"""
|
|
|
|
return self.__class__(q=self.q,
|
|
|
|
p=self.p.copy())
|
|
|
|
|
|
|
|
copy = __copy__
|
|
|
|
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
"""Components"""
|
|
|
|
return iter(self.asList())
|
|
|
|
|
|
|
|
def asArray(self):
|
|
|
|
"""As numpy array"""
|
|
|
|
return np.array((self.q,self.p[0],self.p[1],self.p[2]))
|
|
|
|
|
|
|
|
def asList(self):
|
|
|
|
return [self.q]+list(self.p)
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
"""Readable string"""
|
2019-02-12 11:02:26 +05:30
|
|
|
return 'Quaternion: (real={q:+.6f}, imag=<{p[0]:+.6f}, {p[1]:+.6f}, {p[2]:+.6f}>)'.format(q=self.q,p=self.p)
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
|
|
|
|
def __add__(self, other):
|
|
|
|
"""Addition"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
return self.__class__(q=self.q + other.q,
|
|
|
|
p=self.p + other.p)
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __iadd__(self, other):
|
|
|
|
"""In-place addition"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
self.q += other.q
|
|
|
|
self.p += other.p
|
|
|
|
return self
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __pos__(self):
|
|
|
|
"""Unary positive operator"""
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
def __sub__(self, other):
|
|
|
|
"""Subtraction"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
return self.__class__(q=self.q - other.q,
|
|
|
|
p=self.p - other.p)
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __isub__(self, other):
|
|
|
|
"""In-place subtraction"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
self.q -= other.q
|
|
|
|
self.p -= other.p
|
|
|
|
return self
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __neg__(self):
|
|
|
|
"""Unary positive operator"""
|
|
|
|
self.q *= -1.0
|
|
|
|
self.p *= -1.0
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
def __mul__(self, other):
|
|
|
|
"""Multiplication with quaternion or scalar"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
return self.__class__(q=self.q*other.q - np.dot(self.p,other.p),
|
|
|
|
p=self.q*other.p + other.q*self.p + P * np.cross(self.p,other.p))
|
|
|
|
elif isinstance(other, (int, float)):
|
|
|
|
return self.__class__(q=self.q*other,
|
|
|
|
p=self.p*other)
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __imul__(self, other):
|
|
|
|
"""In-place multiplication with quaternion or scalar"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
self.q = self.q*other.q - np.dot(self.p,other.p)
|
|
|
|
self.p = self.q*other.p + other.q*self.p + P * np.cross(self.p,other.p)
|
|
|
|
return self
|
|
|
|
elif isinstance(other, (int, float)):
|
|
|
|
self *= other
|
|
|
|
return self
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
|
|
|
|
def __truediv__(self, other):
|
|
|
|
"""Divsion with quaternion or scalar"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
s = other.conjugate()/abs(other)**2.
|
|
|
|
return self.__class__(q=self.q * s,
|
|
|
|
p=self.p * s)
|
|
|
|
elif isinstance(other, (int, float)):
|
|
|
|
self.q /= other
|
|
|
|
self.p /= other
|
|
|
|
return self
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __itruediv__(self, other):
|
|
|
|
"""In-place divsion with quaternion or scalar"""
|
|
|
|
if isinstance(other, Quaternion2):
|
|
|
|
s = other.conjugate()/abs(other)**2.
|
|
|
|
self *= s
|
|
|
|
return self
|
|
|
|
elif isinstance(other, (int, float)):
|
|
|
|
self.q /= other
|
|
|
|
return self
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
|
|
|
|
def __pow__(self, exponent):
|
|
|
|
"""Power"""
|
|
|
|
if isinstance(exponent, (int, float)):
|
|
|
|
omega = np.acos(self.q)
|
|
|
|
return self.__class__(q= np.cos(exponent*omega),
|
|
|
|
p=self.p * np.sin(exponent*omega)/np.sin(omega))
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
def __ipow__(self, exponent):
|
|
|
|
"""In-place power"""
|
|
|
|
if isinstance(exponent, (int, float)):
|
|
|
|
omega = np.acos(self.q)
|
|
|
|
self.q = np.cos(exponent*omega)
|
|
|
|
self.p *= np.sin(exponent*omega)/np.sin(omega)
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
|
|
|
|
|
|
|
|
def __abs__(self):
|
|
|
|
"""Norm"""
|
|
|
|
return math.sqrt(self.q ** 2 + np.dot(self.p,self.p))
|
|
|
|
|
|
|
|
magnitude = __abs__
|
|
|
|
|
|
|
|
|
|
|
|
def __eq__(self,other):
|
|
|
|
"""Equal (sufficiently close) to each other"""
|
|
|
|
return np.isclose(( self-other).magnitude(),0.0) \
|
|
|
|
or np.isclose((-self-other).magnitude(),0.0)
|
|
|
|
|
|
|
|
def __ne__(self,other):
|
|
|
|
"""Not equal (sufficiently close) to each other"""
|
|
|
|
return not self.__eq__(other)
|
|
|
|
|
|
|
|
|
|
|
|
def normalize(self):
|
|
|
|
d = self.magnitude()
|
|
|
|
if d > 0.0:
|
|
|
|
self.q /= d
|
|
|
|
self.p /= d
|
|
|
|
return self
|
|
|
|
|
|
|
|
def normalized(self):
|
|
|
|
return self.copy().normalize()
|
|
|
|
|
|
|
|
|
|
|
|
def conjugate(self):
|
|
|
|
self.p = -self.p
|
|
|
|
return self
|
|
|
|
|
|
|
|
def conjugated(self):
|
|
|
|
return self.copy().conjugate()
|
|
|
|
|
|
|
|
|
|
|
|
def homomorph(self):
|
|
|
|
if self.q < 0.0:
|
|
|
|
self.q = -self.q
|
|
|
|
self.p = -self.p
|
|
|
|
return self
|
|
|
|
|
|
|
|
def homomorphed(self):
|
|
|
|
return self.copy().homomorph()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
####################################################################################################
|
|
|
|
class Rotation:
|
|
|
|
u"""
|
|
|
|
Orientation stored as unit quaternion.
|
|
|
|
|
|
|
|
All methods and naming conventions based on Rowenhorst_etal2015
|
|
|
|
Convention 1: coordinate frames are right-handed
|
|
|
|
Convention 2: a rotation angle ω is taken to be positive for a counterclockwise rotation
|
|
|
|
when viewing from the end point of the rotation axis towards the origin
|
|
|
|
Convention 3: rotations will be interpreted in the passive sense
|
|
|
|
Convention 4: Euler angle triplets are implemented using the Bunge convention,
|
|
|
|
with the angular ranges as [0, 2π],[0, π],[0, 2π]
|
|
|
|
Convention 5: the rotation angle ω is limited to the interval [0, π]
|
|
|
|
Convention 6: P = -1 (as default)
|
|
|
|
|
|
|
|
q is the real part, p = (x, y, z) are the imaginary parts.
|
|
|
|
|
|
|
|
Vector "a" (defined in coordinate system "A") is passively rotated
|
|
|
|
resulting in new coordinates "b" when expressed in system "B".
|
|
|
|
b = Q * a
|
|
|
|
b = np.dot(Q.asMatrix(),a)
|
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ['quaternion']
|
|
|
|
|
|
|
|
def __init__(self,quaternion = np.array([1.0,0.0,0.0,0.0])):
|
2019-02-12 12:25:54 +05:30
|
|
|
"""
|
|
|
|
Initializes to identity unless specified
|
|
|
|
|
|
|
|
If a quaternion is given, it needs to comply with the convection. Use .fromQuaternion
|
|
|
|
to check the input.
|
|
|
|
"""
|
2019-02-21 17:06:27 +05:30
|
|
|
if isinstance(quaternion,Quaternion2):
|
|
|
|
self.quaternion = quaternion.copy()
|
|
|
|
else:
|
|
|
|
self.quaternion = Quaternion2(q=quaternion[0],p=quaternion[1:4])
|
|
|
|
self.quaternion.homomorph() # ToDo: Needed?
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
"""Value in selected representation"""
|
|
|
|
return '\n'.join([
|
2019-02-12 11:02:26 +05:30
|
|
|
'{}'.format(self.quaternion),
|
2019-02-12 04:20:02 +05:30
|
|
|
'Matrix:\n{}'.format( '\n'.join(['\t'.join(list(map(str,self.asMatrix()[i,:]))) for i in range(3)]) ),
|
|
|
|
'Bunge Eulers / deg: {}'.format('\t'.join(list(map(str,self.asEulers(degrees=True)))) ),
|
|
|
|
])
|
2019-02-12 12:25:54 +05:30
|
|
|
|
2019-02-21 17:06:27 +05:30
|
|
|
|
2019-02-12 12:25:54 +05:30
|
|
|
################################################################################################
|
|
|
|
# convert to different orientation representations (numpy arrays)
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
def asQuaternion(self):
|
|
|
|
return self.quaternion.asArray()
|
|
|
|
|
|
|
|
def asEulers(self,
|
|
|
|
degrees = False):
|
2019-02-21 17:06:27 +05:30
|
|
|
|
|
|
|
eu = qu2eu(self.quaternion.asArray())
|
|
|
|
if degrees: eu = np.degrees(eu)
|
|
|
|
|
|
|
|
return eu
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
def asAngleAxis(self,
|
|
|
|
degrees = False):
|
|
|
|
|
|
|
|
ax = qu2ax(self.quaternion.asArray())
|
2019-02-12 15:23:28 +05:30
|
|
|
if degrees: ax[3] = np.degrees(ax[3])
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
return ax
|
|
|
|
|
|
|
|
def asMatrix(self):
|
|
|
|
return qu2om(self.quaternion.asArray())
|
|
|
|
|
|
|
|
def asRodrigues(self):
|
|
|
|
return qu2ro(self.quaternion.asArray())
|
|
|
|
|
|
|
|
def asHomochoric(self):
|
|
|
|
return qu2ho(self.quaternion.asArray())
|
|
|
|
|
|
|
|
def asCubochoric(self):
|
|
|
|
return qu2cu(self.quaternion.asArray())
|
|
|
|
|
2019-02-12 12:25:54 +05:30
|
|
|
|
|
|
|
################################################################################################
|
|
|
|
# static constructors. The input data needs to follow the convention, options allow to
|
|
|
|
# relax these convections
|
2019-02-12 04:20:02 +05:30
|
|
|
@classmethod
|
|
|
|
def fromQuaternion(cls,
|
2019-02-12 12:25:54 +05:30
|
|
|
quaternion,
|
|
|
|
P = -1):
|
2019-02-12 04:20:02 +05:30
|
|
|
|
2019-02-12 12:25:54 +05:30
|
|
|
qu = quaternion if isinstance(quaternion, np.ndarray) else np.array(quaternion)
|
2019-02-12 12:12:46 +05:30
|
|
|
if P > 0: qu[1:4] *= -1 # convert from P=1 to P=-1
|
2019-02-12 04:20:02 +05:30
|
|
|
if qu[0] < 0.0:
|
|
|
|
raise ValueError('Quaternion has negative first component.\n{}'.format(qu[0]))
|
|
|
|
if not np.isclose(np.linalg.norm(qu), 1.0):
|
|
|
|
raise ValueError('Quaternion is not of unit length.\n{} {} {} {}'.format(*qu))
|
|
|
|
|
|
|
|
return cls(qu)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromEulers(cls,
|
|
|
|
eulers,
|
|
|
|
degrees = False):
|
2019-02-12 12:25:54 +05:30
|
|
|
|
|
|
|
eu = eulers if isinstance(eulers, np.ndarray) else np.array(eulers)
|
|
|
|
eu = np.radians(eu) if degrees else eu
|
2019-02-12 04:20:02 +05:30
|
|
|
if np.any(eu < 0.0) or np.any(eu > 2.0*np.pi) or eu[1] > np.pi:
|
|
|
|
raise ValueError('Euler angles outside of [0..2π],[0..π],[0..2π].\n{} {} {}.'.format(*eu))
|
|
|
|
|
|
|
|
return cls(eu2qu(eu))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromAngleAxis(cls,
|
|
|
|
angleAxis,
|
|
|
|
degrees = False,
|
2019-02-12 12:12:46 +05:30
|
|
|
normalise = False,
|
2019-02-12 04:20:02 +05:30
|
|
|
P = -1):
|
2019-02-12 12:25:54 +05:30
|
|
|
|
|
|
|
ax = angleAxis if isinstance(angleAxis, np.ndarray) else np.array(angleAxis)
|
2019-02-12 15:23:28 +05:30
|
|
|
if P > 0: ax[0:3] *= -1 # convert from P=1 to P=-1
|
|
|
|
if degrees: ax[3] = np.radians(ax[3])
|
|
|
|
if normalise: ax[0:3] /=np.linalg.norm(ax[0:3])
|
|
|
|
if ax[3] < 0.0 or ax[3] > np.pi:
|
|
|
|
raise ValueError('Axis angle rotation angle outside of [0..π].\n'.format(ax[3]))
|
|
|
|
if not np.isclose(np.linalg.norm(ax[0:3]), 1.0):
|
|
|
|
raise ValueError('Axis angle rotation axis is not of unit length.\n{} {} {}'.format(*ax[0:3]))
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
return cls(ax2qu(ax))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromMatrix(cls,
|
2019-02-12 12:25:54 +05:30
|
|
|
matrix,
|
|
|
|
containsStretch = False): #ToDo: better name?
|
2019-02-12 04:20:02 +05:30
|
|
|
|
2019-02-12 13:28:23 +05:30
|
|
|
om = matrix if isinstance(matrix, np.ndarray) else np.array(matrix).reshape((3,3)) # ToDo: Reshape here or require explicit?
|
2019-02-12 12:25:54 +05:30
|
|
|
if containsStretch:
|
|
|
|
(U,S,Vh) = np.linalg.svd(om) # singular value decomposition
|
|
|
|
om = np.dot(U,Vh)
|
2019-02-12 04:20:02 +05:30
|
|
|
if not np.isclose(np.linalg.det(om),1.0):
|
|
|
|
raise ValueError('matrix is not a proper rotation.\n{}'.format(om))
|
|
|
|
if not np.isclose(np.dot(om[0],om[1]), 0.0) \
|
|
|
|
or not np.isclose(np.dot(om[1],om[2]), 0.0) \
|
|
|
|
or not np.isclose(np.dot(om[2],om[0]), 0.0):
|
|
|
|
raise ValueError('matrix is not orthogonal.\n{}'.format(om))
|
|
|
|
|
|
|
|
return cls(om2qu(om))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromRodrigues(cls,
|
|
|
|
rodrigues,
|
2019-02-12 12:12:46 +05:30
|
|
|
normalise = False,
|
2019-02-12 04:20:02 +05:30
|
|
|
P = -1):
|
|
|
|
|
2019-02-12 12:25:54 +05:30
|
|
|
ro = rodrigues if isinstance(rodrigues, np.ndarray) else np.array(rodrigues)
|
2019-02-12 13:28:23 +05:30
|
|
|
if P > 0: ro[0:3] *= -1 # convert from P=1 to P=-1
|
|
|
|
if normalise: ro[0:3] /=np.linalg.norm(ro[0:3])
|
|
|
|
if not np.isclose(np.linalg.norm(ro[0:3]), 1.0):
|
|
|
|
raise ValueError('Rodrigues rotation axis is not of unit length.\n{} {} {}'.format(*ro[0:3]))
|
|
|
|
if ro[3] < 0.0:
|
|
|
|
raise ValueError('Rodriques rotation angle not positive.\n'.format(ro[3]))
|
2019-02-12 04:20:02 +05:30
|
|
|
|
|
|
|
return cls(ro2qu(ro))
|
|
|
|
|
|
|
|
|
2019-02-12 04:41:22 +05:30
|
|
|
def __mul__(self, other):
|
|
|
|
"""
|
|
|
|
Multiplication
|
|
|
|
|
2019-02-21 17:06:27 +05:30
|
|
|
Rotation: Details needed (active/passive), rotation of (3,3,3,3)-matrix should be considered
|
2019-02-12 04:41:22 +05:30
|
|
|
"""
|
2019-02-12 12:12:46 +05:30
|
|
|
if isinstance(other, Rotation): # rotate a rotation
|
2019-02-12 04:41:22 +05:30
|
|
|
return self.__class__((self.quaternion * other.quaternion).asArray())
|
|
|
|
elif isinstance(other, np.ndarray):
|
2019-02-12 12:12:46 +05:30
|
|
|
if other.shape == (3,): # rotate a single (3)-vector
|
2019-02-12 04:41:22 +05:30
|
|
|
( x, y, z) = self.quaternion.p
|
|
|
|
(Vx,Vy,Vz) = other[0:3]
|
|
|
|
A = self.quaternion.q*self.quaternion.q - np.dot(self.quaternion.p,self.quaternion.p)
|
|
|
|
B = 2.0 * (x*Vx + y*Vy + z*Vz)
|
|
|
|
C = 2.0 * P*self.quaternion.q
|
|
|
|
|
|
|
|
return np.array([
|
|
|
|
A*Vx + B*x + C*(y*Vz - z*Vy),
|
|
|
|
A*Vy + B*y + C*(z*Vx - x*Vz),
|
|
|
|
A*Vz + B*z + C*(x*Vy - y*Vx),
|
|
|
|
])
|
2019-02-12 12:12:46 +05:30
|
|
|
elif other.shape == (3,3,): # rotate a single (3x3)-matrix
|
2019-02-12 11:02:26 +05:30
|
|
|
return np.dot(self.asMatrix(),np.dot(other,self.asMatrix().T))
|
2019-02-12 04:41:22 +05:30
|
|
|
elif other.shape == (3,3,3,3):
|
|
|
|
raise NotImplementedError
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
2019-02-12 12:12:46 +05:30
|
|
|
elif isinstance(other, tuple): # used to rotate a meshgrid-tuple
|
|
|
|
( x, y, z) = self.quaternion.p
|
|
|
|
(Vx,Vy,Vz) = other[0:3]
|
|
|
|
A = self.quaternion.q*self.quaternion.q - np.dot(self.quaternion.p,self.quaternion.p)
|
|
|
|
B = 2.0 * (x*Vx + y*Vy + z*Vz)
|
|
|
|
C = 2.0 * P*self.quaternion.q
|
|
|
|
|
|
|
|
return np.array([
|
|
|
|
A*Vx + B*x + C*(y*Vz - z*Vy),
|
|
|
|
A*Vy + B*y + C*(z*Vx - x*Vz),
|
|
|
|
A*Vz + B*z + C*(x*Vy - y*Vx),
|
|
|
|
])
|
2019-02-12 04:41:22 +05:30
|
|
|
else:
|
|
|
|
return NotImplemented
|
2019-02-12 12:12:46 +05:30
|
|
|
|
|
|
|
|
|
|
|
def inverse(self):
|
|
|
|
"""Inverse rotation/backward rotation"""
|
|
|
|
self.quaternion.conjugate()
|
|
|
|
return self
|
|
|
|
|
|
|
|
def inversed(self):
|
|
|
|
"""In-place inverse rotation/backward rotation"""
|
2019-02-21 17:06:27 +05:30
|
|
|
return self.__class__(self.quaternion.conjugated())
|
|
|
|
|
|
|
|
|
|
|
|
def misorientation(self,other):
|
|
|
|
"""Misorientation"""
|
|
|
|
return self.__class__(other.quaternion*self.quaternion.conjugated())
|
2019-02-12 12:12:46 +05:30
|
|
|
|
2019-02-12 04:41:22 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
# ******************************************************************************************
|
|
|
|
class Quaternion:
|
2018-11-22 04:21:38 +05:30
|
|
|
u"""
|
2016-10-31 20:10:58 +05:30
|
|
|
Orientation represented as unit quaternion.
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2018-11-22 04:21:38 +05:30
|
|
|
All methods and naming conventions based on Rowenhorst_etal2015
|
|
|
|
Convention 1: coordinate frames are right-handed
|
|
|
|
Convention 2: a rotation angle ω is taken to be positive for a counterclockwise rotation
|
2018-12-05 03:35:35 +05:30
|
|
|
when viewing from the end point of the rotation axis towards the origin
|
2018-11-22 04:21:38 +05:30
|
|
|
Convention 3: rotations will be interpreted in the passive sense
|
|
|
|
Convention 4: Euler angle triplets are implemented using the Bunge convention,
|
|
|
|
with the angular ranges as [0, 2π],[0, π],[0, 2π]
|
|
|
|
Convention 5: the rotation angle ω is limited to the interval [0, π]
|
2019-02-01 18:34:55 +05:30
|
|
|
Convention 6: P = -1 (as default)
|
2019-02-01 14:47:20 +05:30
|
|
|
|
2016-10-31 20:10:58 +05:30
|
|
|
w is the real part, (x, y, z) are the imaginary parts.
|
2018-11-22 04:21:38 +05:30
|
|
|
|
|
|
|
Vector "a" (defined in coordinate system "A") is passively rotated
|
|
|
|
resulting in new coordinates "b" when expressed in system "B".
|
2016-03-04 23:20:13 +05:30
|
|
|
b = Q * a
|
|
|
|
b = np.dot(Q.asMatrix(),a)
|
|
|
|
"""
|
2015-08-24 19:09:09 +05:30
|
|
|
|
|
|
|
def __init__(self,
|
2018-12-05 05:50:24 +05:30
|
|
|
quat = None,
|
|
|
|
q = 1.0,
|
|
|
|
p = np.zeros(3,dtype=float)):
|
2018-12-05 03:35:35 +05:30
|
|
|
"""Initializes to identity unless specified"""
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q = quat[0] if quat is not None else q
|
|
|
|
self.p = np.array(quat[1:4]) if quat is not None else p
|
2015-08-24 19:09:09 +05:30
|
|
|
self.homomorph()
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __iter__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Components"""
|
2018-12-05 05:50:24 +05:30
|
|
|
return iter(self.asList())
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
def __copy__(self):
|
2018-12-05 03:35:35 +05:30
|
|
|
"""Copy"""
|
2018-12-05 19:25:26 +05:30
|
|
|
return self.__class__(q=self.q,p=self.p.copy())
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
copy = __copy__
|
|
|
|
|
|
|
|
def __repr__(self):
|
2018-12-05 03:35:35 +05:30
|
|
|
"""Readable string"""
|
2018-12-05 05:50:24 +05:30
|
|
|
return 'Quaternion(real={q:+.6f}, imag=<{p[0]:+.6f}, {p[1]:+.6f}, {p[2]:+.6f}>)'.format(q=self.q,p=self.p)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2014-08-22 21:15:03 +05:30
|
|
|
def __pow__(self, exponent):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Power"""
|
2018-12-05 05:50:24 +05:30
|
|
|
omega = math.acos(self.q)
|
2018-12-05 20:50:05 +05:30
|
|
|
return self.__class__(q= math.cos(exponent*omega),
|
|
|
|
p=self.p * math.sin(exponent*omega)/math.sin(omega))
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2014-08-22 21:15:03 +05:30
|
|
|
def __ipow__(self, exponent):
|
2016-10-31 20:10:58 +05:30
|
|
|
"""In-place power"""
|
2018-12-05 20:50:05 +05:30
|
|
|
omega = math.acos(self.q)
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q = math.cos(exponent*omega)
|
|
|
|
self.p *= math.sin(exponent*omega)/math.sin(omega)
|
2014-08-22 21:15:03 +05:30
|
|
|
return self
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
def __mul__(self, other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Multiplication"""
|
2018-12-05 03:35:35 +05:30
|
|
|
# Rowenhorst_etal2015 MSMSE: value of P is selected as -1
|
|
|
|
P = -1.0
|
2018-12-08 22:31:46 +05:30
|
|
|
try: # quaternion
|
2018-12-05 19:25:26 +05:30
|
|
|
return self.__class__(q=self.q*other.q - np.dot(self.p,other.p),
|
|
|
|
p=self.q*other.p + other.q*self.p + P * np.cross(self.p,other.p))
|
2013-12-09 21:19:57 +05:30
|
|
|
except: pass
|
2018-12-08 22:31:46 +05:30
|
|
|
try: # vector (perform passive rotation)
|
2018-12-05 20:50:05 +05:30
|
|
|
( x, y, z) = self.p
|
|
|
|
(Vx,Vy,Vz) = other[0:3]
|
|
|
|
A = self.q*self.q - np.dot(self.p,self.p)
|
|
|
|
B = 2.0 * (x*Vx + y*Vy + z*Vz)
|
|
|
|
C = 2.0 * P*self.q
|
|
|
|
|
|
|
|
return np.array([
|
|
|
|
A*Vx + B*x + C*(y*Vz - z*Vy),
|
|
|
|
A*Vy + B*y + C*(z*Vx - x*Vz),
|
|
|
|
A*Vz + B*z + C*(x*Vy - y*Vx),
|
|
|
|
])
|
2013-12-09 21:19:57 +05:30
|
|
|
except: pass
|
2018-12-08 22:31:46 +05:30
|
|
|
try: # scalar
|
2018-12-05 19:25:26 +05:30
|
|
|
return self.__class__(q=self.q*other,
|
|
|
|
p=self.p*other)
|
2013-12-09 21:19:57 +05:30
|
|
|
except:
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.copy()
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __imul__(self, other):
|
2016-10-31 20:10:58 +05:30
|
|
|
"""In-place multiplication"""
|
2018-12-05 03:35:35 +05:30
|
|
|
# Rowenhorst_etal2015 MSMSE: value of P is selected as -1
|
|
|
|
P = -1.0
|
2018-12-08 22:31:46 +05:30
|
|
|
try: # Quaternion
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q = self.q*other.q - np.dot(self.p,other.p)
|
|
|
|
self.p = self.q*other.p + other.q*self.p + P * np.cross(self.p,other.p)
|
2013-12-09 21:19:57 +05:30
|
|
|
except: pass
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
def __div__(self, other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Division"""
|
2016-09-11 22:33:32 +05:30
|
|
|
if isinstance(other, (int,float)):
|
2018-12-05 19:25:26 +05:30
|
|
|
return self.__class__(q=self.q / other,
|
|
|
|
p=self.p / other)
|
2013-11-26 00:34:39 +05:30
|
|
|
else:
|
|
|
|
return NotImplemented
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __idiv__(self, other):
|
2016-10-31 20:10:58 +05:30
|
|
|
"""In-place division"""
|
2016-09-11 22:33:32 +05:30
|
|
|
if isinstance(other, (int,float)):
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q /= other
|
|
|
|
self.p /= other
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __add__(self, other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Addition"""
|
2013-11-26 00:34:39 +05:30
|
|
|
if isinstance(other, Quaternion):
|
2018-12-05 19:25:26 +05:30
|
|
|
return self.__class__(q=self.q + other.q,
|
|
|
|
p=self.p + other.p)
|
2013-11-26 00:34:39 +05:30
|
|
|
else:
|
|
|
|
return NotImplemented
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __iadd__(self, other):
|
2016-10-31 20:10:58 +05:30
|
|
|
"""In-place addition"""
|
2013-11-26 00:34:39 +05:30
|
|
|
if isinstance(other, Quaternion):
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q += other.q
|
|
|
|
self.p += other.p
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __sub__(self, other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Subtraction"""
|
2013-11-26 00:34:39 +05:30
|
|
|
if isinstance(other, Quaternion):
|
2018-12-05 19:25:26 +05:30
|
|
|
return self.__class__(q=self.q - other.q,
|
|
|
|
p=self.p - other.p)
|
2013-11-26 00:34:39 +05:30
|
|
|
else:
|
2018-12-05 19:25:26 +05:30
|
|
|
return NotImplemented
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __isub__(self, other):
|
2016-10-31 20:10:58 +05:30
|
|
|
"""In-place subtraction"""
|
2013-11-26 00:34:39 +05:30
|
|
|
if isinstance(other, Quaternion):
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q -= other.q
|
|
|
|
self.p -= other.p
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __neg__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Additive inverse"""
|
2018-12-05 05:50:24 +05:30
|
|
|
self.q = -self.q
|
|
|
|
self.p = -self.p
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __abs__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Norm"""
|
2018-12-05 05:50:24 +05:30
|
|
|
return math.sqrt(self.q ** 2 + np.dot(self.p,self.p))
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
magnitude = __abs__
|
|
|
|
|
|
|
|
def __eq__(self,other):
|
2018-12-17 20:25:02 +05:30
|
|
|
"""Equal (sufficiently close) to each other"""
|
2018-12-18 00:34:16 +05:30
|
|
|
return np.isclose(( self-other).magnitude(),0.0) \
|
|
|
|
or np.isclose((-self-other).magnitude(),0.0)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __ne__(self,other):
|
2018-12-17 20:25:02 +05:30
|
|
|
"""Not equal (sufficiently close) to each other"""
|
|
|
|
return not self.__eq__(other)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __cmp__(self,other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Linear ordering"""
|
2018-12-05 19:25:26 +05:30
|
|
|
return (1 if np.linalg.norm(self.asRodrigues()) > np.linalg.norm(other.asRodrigues()) else 0) \
|
|
|
|
- (1 if np.linalg.norm(self.asRodrigues()) < np.linalg.norm(other.asRodrigues()) else 0)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def magnitude_squared(self):
|
2018-12-05 05:50:24 +05:30
|
|
|
return self.q ** 2 + np.dot(self.p,self.p)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def normalize(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
d = self.magnitude()
|
|
|
|
if d > 0.0:
|
2018-12-05 19:25:26 +05:30
|
|
|
self.q /= d
|
|
|
|
self.p /= d
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def conjugate(self):
|
2018-12-05 05:50:24 +05:30
|
|
|
self.p = -self.p
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
|
|
|
|
|
|
|
def homomorph(self):
|
2018-12-05 05:50:24 +05:30
|
|
|
if self.q < 0.0:
|
|
|
|
self.q = -self.q
|
|
|
|
self.p = -self.p
|
2013-11-26 00:34:39 +05:30
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def normalized(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.copy().normalize()
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def conjugated(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.copy().conjugate()
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def homomorphed(self):
|
|
|
|
return self.copy().homomorph()
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def asList(self):
|
2018-12-05 05:50:24 +05:30
|
|
|
return [self.q]+list(self.p)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2018-12-08 22:31:46 +05:30
|
|
|
def asM(self): # to find Averaging Quaternions (see F. Landis Markley et al.)
|
2018-12-05 05:50:24 +05:30
|
|
|
return np.outer(self.asList(),self.asList())
|
2018-12-05 03:35:35 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def asMatrix(self):
|
2018-12-05 03:35:35 +05:30
|
|
|
# Rowenhorst_etal2015 MSMSE: value of P is selected as -1
|
|
|
|
P = -1.0
|
2018-12-05 05:50:24 +05:30
|
|
|
qbarhalf = 0.5*(self.q**2 - np.dot(self.p,self.p))
|
2018-11-22 04:21:38 +05:30
|
|
|
return 2.0*np.array(
|
2018-12-05 05:50:24 +05:30
|
|
|
[[ qbarhalf + self.p[0]**2 ,
|
|
|
|
self.p[0]*self.p[1] -P* self.q*self.p[2],
|
|
|
|
self.p[0]*self.p[2] +P* self.q*self.p[1] ],
|
|
|
|
[ self.p[0]*self.p[1] +P* self.q*self.p[2],
|
|
|
|
qbarhalf + self.p[1]**2 ,
|
|
|
|
self.p[1]*self.p[2] -P* self.q*self.p[0] ],
|
|
|
|
[ self.p[0]*self.p[2] -P* self.q*self.p[1],
|
|
|
|
self.p[1]*self.p[2] +P* self.q*self.p[0],
|
|
|
|
qbarhalf + self.p[2]**2 ],
|
2018-11-22 04:21:38 +05:30
|
|
|
])
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
def asAngleAxis(self,
|
2018-12-08 08:32:30 +05:30
|
|
|
degrees = False,
|
|
|
|
flat = False):
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2018-12-17 20:25:02 +05:30
|
|
|
angle = 2.0*math.acos(self.q)
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2018-12-18 00:34:16 +05:30
|
|
|
if np.isclose(angle,0.0):
|
2018-12-17 20:25:02 +05:30
|
|
|
angle = 0.0
|
|
|
|
axis = np.array([0.0,0.0,1.0])
|
2018-12-18 00:34:16 +05:30
|
|
|
elif np.isclose(self.q,0.0):
|
2018-12-17 20:25:02 +05:30
|
|
|
angle = math.pi
|
|
|
|
axis = self.p
|
2018-12-08 08:32:30 +05:30
|
|
|
else:
|
2018-12-17 20:25:02 +05:30
|
|
|
axis = np.sign(self.q)*self.p/np.linalg.norm(self.p)
|
|
|
|
|
|
|
|
angle = np.degrees(angle) if degrees else angle
|
|
|
|
|
|
|
|
return np.hstack((angle,axis)) if flat else (angle,axis)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
def asRodrigues(self):
|
2018-12-18 00:34:16 +05:30
|
|
|
return np.inf*np.ones(3) if np.isclose(self.q,0.0) else self.p/self.q
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
def asEulers(self,
|
2018-11-22 04:21:38 +05:30
|
|
|
degrees = False):
|
|
|
|
"""Orientation as Bunge-Euler angles."""
|
2018-12-05 03:35:35 +05:30
|
|
|
# Rowenhorst_etal2015 MSMSE: value of P is selected as -1
|
|
|
|
P = -1.0
|
2018-12-05 05:50:24 +05:30
|
|
|
q03 = self.q**2 + self.p[2]**2
|
|
|
|
q12 = self.p[0]**2 + self.p[1]**2
|
2018-11-22 04:21:38 +05:30
|
|
|
chi = np.sqrt(q03*q12)
|
|
|
|
|
2018-12-18 00:34:16 +05:30
|
|
|
if np.isclose(chi,0.0) and np.isclose(q12,0.0):
|
2018-12-05 05:50:24 +05:30
|
|
|
eulers = np.array([math.atan2(-2*P*self.q*self.p[2],self.q**2-self.p[2]**2),0,0])
|
2018-12-18 00:34:16 +05:30
|
|
|
elif np.isclose(chi,0.0) and np.isclose(q03,0.0):
|
2018-12-05 05:50:24 +05:30
|
|
|
eulers = np.array([math.atan2( 2 *self.p[0]*self.p[1],self.p[0]**2-self.p[1]**2),np.pi,0])
|
2018-11-22 04:21:38 +05:30
|
|
|
else:
|
2018-12-05 05:50:24 +05:30
|
|
|
eulers = np.array([math.atan2((self.p[0]*self.p[2]-P*self.q*self.p[1])/chi,(-P*self.q*self.p[0]-self.p[1]*self.p[2])/chi),
|
2018-11-22 04:21:38 +05:30
|
|
|
math.atan2(2*chi,q03-q12),
|
2018-12-05 05:50:24 +05:30
|
|
|
math.atan2((P*self.q*self.p[1]+self.p[0]*self.p[2])/chi,( self.p[1]*self.p[2]-P*self.q*self.p[0])/chi),
|
2018-11-22 04:21:38 +05:30
|
|
|
])
|
|
|
|
|
2018-12-08 22:31:46 +05:30
|
|
|
eulers %= 2.0*math.pi # enforce positive angles
|
2018-11-22 04:21:38 +05:30
|
|
|
return np.degrees(eulers) if degrees else eulers
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
# # Static constructors
|
2013-11-26 00:34:39 +05:30
|
|
|
@classmethod
|
|
|
|
def fromIdentity(cls):
|
2015-08-24 19:09:09 +05:30
|
|
|
return cls()
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
@classmethod
|
2015-08-24 19:09:09 +05:30
|
|
|
def fromRandom(cls,randomSeed = None):
|
2018-12-05 03:35:35 +05:30
|
|
|
import binascii
|
2016-03-04 23:20:13 +05:30
|
|
|
if randomSeed is None:
|
2018-12-05 03:35:35 +05:30
|
|
|
randomSeed = int(binascii.hexlify(os.urandom(4)),16)
|
2015-12-18 02:56:59 +05:30
|
|
|
np.random.seed(randomSeed)
|
|
|
|
r = np.random.random(3)
|
2018-12-07 21:04:45 +05:30
|
|
|
A = math.sqrt(max(0.0,r[2]))
|
|
|
|
B = math.sqrt(max(0.0,1.0-r[2]))
|
|
|
|
w = math.cos(2.0*math.pi*r[0])*A
|
|
|
|
x = math.sin(2.0*math.pi*r[1])*B
|
|
|
|
y = math.cos(2.0*math.pi*r[1])*B
|
|
|
|
z = math.sin(2.0*math.pi*r[0])*A
|
2018-12-05 05:50:24 +05:30
|
|
|
return cls(quat=[w,x,y,z])
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
@classmethod
|
|
|
|
def fromRodrigues(cls, rodrigues):
|
2015-08-24 19:09:09 +05:30
|
|
|
if not isinstance(rodrigues, np.ndarray): rodrigues = np.array(rodrigues)
|
2018-12-05 19:25:26 +05:30
|
|
|
norm = np.linalg.norm(rodrigues)
|
|
|
|
halfangle = math.atan(norm)
|
|
|
|
s = math.sin(halfangle)
|
2015-08-24 19:09:09 +05:30
|
|
|
c = math.cos(halfangle)
|
2018-12-05 19:25:26 +05:30
|
|
|
return cls(q=c,p=s*rodrigues/norm)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
@classmethod
|
2016-08-01 05:03:26 +05:30
|
|
|
def fromAngleAxis(cls,
|
|
|
|
angle,
|
|
|
|
axis,
|
|
|
|
degrees = False):
|
2018-12-05 05:50:24 +05:30
|
|
|
if not isinstance(axis, np.ndarray): axis = np.array(axis,dtype=float)
|
2015-08-24 19:09:09 +05:30
|
|
|
axis = axis.astype(float)/np.linalg.norm(axis)
|
2016-08-01 05:03:26 +05:30
|
|
|
angle = np.radians(angle) if degrees else angle
|
|
|
|
s = math.sin(0.5 * angle)
|
2018-12-05 05:50:24 +05:30
|
|
|
c = math.cos(0.5 * angle)
|
|
|
|
return cls(q=c,p=axis*s)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
@classmethod
|
2016-08-01 05:03:26 +05:30
|
|
|
def fromEulers(cls,
|
|
|
|
eulers,
|
|
|
|
degrees = False):
|
2018-12-05 05:50:24 +05:30
|
|
|
if not isinstance(eulers, np.ndarray): eulers = np.array(eulers,dtype=float)
|
2016-08-01 05:03:26 +05:30
|
|
|
eulers = np.radians(eulers) if degrees else eulers
|
2015-06-21 17:35:17 +05:30
|
|
|
|
2018-11-22 04:21:38 +05:30
|
|
|
sigma = 0.5*(eulers[0]+eulers[2])
|
|
|
|
delta = 0.5*(eulers[0]-eulers[2])
|
|
|
|
c = np.cos(0.5*eulers[1])
|
|
|
|
s = np.sin(0.5*eulers[1])
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2018-12-05 03:35:35 +05:30
|
|
|
# Rowenhorst_etal2015 MSMSE: value of P is selected as -1
|
|
|
|
P = -1.0
|
|
|
|
w = c * np.cos(sigma)
|
|
|
|
x = -P * s * np.cos(delta)
|
|
|
|
y = -P * s * np.sin(delta)
|
|
|
|
z = -P * c * np.sin(sigma)
|
2018-12-05 05:50:24 +05:30
|
|
|
return cls(quat=[w,x,y,z])
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
# Modified Method to calculate Quaternion from Orientation Matrix,
|
|
|
|
# Source: http://www.euclideanspace.com/maths/geometry/rotations/conversions/matrixToQuaternion/
|
2015-05-23 01:34:05 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
@classmethod
|
|
|
|
def fromMatrix(cls, m):
|
2015-05-28 00:26:18 +05:30
|
|
|
if m.shape != (3,3) and np.prod(m.shape) == 9:
|
|
|
|
m = m.reshape(3,3)
|
2015-07-23 03:19:24 +05:30
|
|
|
|
2018-12-05 03:35:35 +05:30
|
|
|
# Rowenhorst_etal2015 MSMSE: value of P is selected as -1
|
|
|
|
P = -1.0
|
2018-12-07 21:04:45 +05:30
|
|
|
w = 0.5*math.sqrt(max(0.0,1.0+m[0,0]+m[1,1]+m[2,2]))
|
|
|
|
x = P*0.5*math.sqrt(max(0.0,1.0+m[0,0]-m[1,1]-m[2,2]))
|
|
|
|
y = P*0.5*math.sqrt(max(0.0,1.0-m[0,0]+m[1,1]-m[2,2]))
|
|
|
|
z = P*0.5*math.sqrt(max(0.0,1.0-m[0,0]-m[1,1]+m[2,2]))
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2018-11-22 04:21:38 +05:30
|
|
|
x *= -1 if m[2,1] < m[1,2] else 1
|
|
|
|
y *= -1 if m[0,2] < m[2,0] else 1
|
|
|
|
z *= -1 if m[1,0] < m[0,1] else 1
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2018-12-05 05:50:24 +05:30
|
|
|
return cls(quat=np.array([w,x,y,z])/math.sqrt(w**2 + x**2 + y**2 + z**2))
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
@classmethod
|
2011-11-03 17:49:26 +05:30
|
|
|
def new_interpolate(cls, q1, q2, t):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2016-10-25 10:21:40 +05:30
|
|
|
Interpolation
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2016-10-31 20:10:58 +05:30
|
|
|
See http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/20070017872_2007014421.pdf
|
|
|
|
for (another?) way to interpolate quaternions.
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2011-11-03 17:49:26 +05:30
|
|
|
assert isinstance(q1, Quaternion) and isinstance(q2, Quaternion)
|
|
|
|
Q = cls()
|
|
|
|
|
2018-12-05 05:50:24 +05:30
|
|
|
costheta = q1.q*q2.q + np.dot(q1.p,q2.p)
|
2011-11-03 17:49:26 +05:30
|
|
|
if costheta < 0.:
|
|
|
|
costheta = -costheta
|
|
|
|
q1 = q1.conjugated()
|
2018-12-05 05:50:24 +05:30
|
|
|
elif costheta > 1.:
|
|
|
|
costheta = 1.
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
theta = math.acos(costheta)
|
|
|
|
if abs(theta) < 0.01:
|
2018-12-05 05:50:24 +05:30
|
|
|
Q.q = q2.q
|
|
|
|
Q.p = q2.p
|
2011-11-03 17:49:26 +05:30
|
|
|
return Q
|
|
|
|
|
|
|
|
sintheta = math.sqrt(1.0 - costheta * costheta)
|
|
|
|
if abs(sintheta) < 0.01:
|
2018-12-05 05:50:24 +05:30
|
|
|
Q.q = (q1.q + q2.q) * 0.5
|
|
|
|
Q.p = (q1.p + q2.p) * 0.5
|
2011-11-03 17:49:26 +05:30
|
|
|
return Q
|
|
|
|
|
2018-12-05 05:50:24 +05:30
|
|
|
ratio1 = math.sin((1.0 - t) * theta) / sintheta
|
|
|
|
ratio2 = math.sin( t * theta) / sintheta
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2018-12-05 05:50:24 +05:30
|
|
|
Q.q = q1.q * ratio1 + q2.q * ratio2
|
|
|
|
Q.p = q1.p * ratio1 + q2.p * ratio2
|
2011-11-03 17:49:26 +05:30
|
|
|
return Q
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************************
|
|
|
|
class Symmetry:
|
2019-02-21 17:06:27 +05:30
|
|
|
"""
|
|
|
|
Symmetry operations for lattice systems
|
|
|
|
|
|
|
|
https://en.wikipedia.org/wiki/Crystal_system
|
|
|
|
"""
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
lattices = [None,'orthorhombic','tetragonal','hexagonal','cubic',]
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def __init__(self, symmetry = None):
|
2016-09-11 22:33:32 +05:30
|
|
|
if isinstance(symmetry, str) and symmetry.lower() in Symmetry.lattices:
|
2013-11-26 00:34:39 +05:30
|
|
|
self.lattice = symmetry.lower()
|
|
|
|
else:
|
|
|
|
self.lattice = None
|
|
|
|
|
|
|
|
|
|
|
|
def __copy__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Copy"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.__class__(self.lattice)
|
|
|
|
|
|
|
|
copy = __copy__
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2018-12-18 02:37:51 +05:30
|
|
|
"""Readable string"""
|
2018-12-05 05:50:24 +05:30
|
|
|
return '{}'.format(self.lattice)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
2018-12-17 20:25:02 +05:30
|
|
|
"""Equal to other"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.lattice == other.lattice
|
|
|
|
|
|
|
|
def __neq__(self, other):
|
2018-12-17 20:25:02 +05:30
|
|
|
"""Not equal to other"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return not self.__eq__(other)
|
|
|
|
|
|
|
|
def __cmp__(self,other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Linear ordering"""
|
2018-12-05 05:50:24 +05:30
|
|
|
myOrder = Symmetry.lattices.index(self.lattice)
|
2016-10-25 10:21:40 +05:30
|
|
|
otherOrder = Symmetry.lattices.index(other.lattice)
|
|
|
|
return (myOrder > otherOrder) - (myOrder < otherOrder)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-11-14 07:16:44 +05:30
|
|
|
def symmetryQuats(self,who = []):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""List of symmetry operations as quaternions."""
|
2013-11-26 00:34:39 +05:30
|
|
|
if self.lattice == 'cubic':
|
|
|
|
symQuats = [
|
2015-08-12 20:45:33 +05:30
|
|
|
[ 1.0, 0.0, 0.0, 0.0 ],
|
|
|
|
[ 0.0, 1.0, 0.0, 0.0 ],
|
|
|
|
[ 0.0, 0.0, 1.0, 0.0 ],
|
|
|
|
[ 0.0, 0.0, 0.0, 1.0 ],
|
|
|
|
[ 0.0, 0.0, 0.5*math.sqrt(2), 0.5*math.sqrt(2) ],
|
|
|
|
[ 0.0, 0.0, 0.5*math.sqrt(2),-0.5*math.sqrt(2) ],
|
|
|
|
[ 0.0, 0.5*math.sqrt(2), 0.0, 0.5*math.sqrt(2) ],
|
|
|
|
[ 0.0, 0.5*math.sqrt(2), 0.0, -0.5*math.sqrt(2) ],
|
|
|
|
[ 0.0, 0.5*math.sqrt(2),-0.5*math.sqrt(2), 0.0 ],
|
|
|
|
[ 0.0, -0.5*math.sqrt(2),-0.5*math.sqrt(2), 0.0 ],
|
|
|
|
[ 0.5, 0.5, 0.5, 0.5 ],
|
|
|
|
[-0.5, 0.5, 0.5, 0.5 ],
|
|
|
|
[-0.5, 0.5, 0.5, -0.5 ],
|
|
|
|
[-0.5, 0.5, -0.5, 0.5 ],
|
|
|
|
[-0.5, -0.5, 0.5, 0.5 ],
|
|
|
|
[-0.5, -0.5, 0.5, -0.5 ],
|
|
|
|
[-0.5, -0.5, -0.5, 0.5 ],
|
|
|
|
[-0.5, 0.5, -0.5, -0.5 ],
|
|
|
|
[-0.5*math.sqrt(2), 0.0, 0.0, 0.5*math.sqrt(2) ],
|
|
|
|
[ 0.5*math.sqrt(2), 0.0, 0.0, 0.5*math.sqrt(2) ],
|
|
|
|
[-0.5*math.sqrt(2), 0.0, 0.5*math.sqrt(2), 0.0 ],
|
|
|
|
[-0.5*math.sqrt(2), 0.0, -0.5*math.sqrt(2), 0.0 ],
|
|
|
|
[-0.5*math.sqrt(2), 0.5*math.sqrt(2), 0.0, 0.0 ],
|
|
|
|
[-0.5*math.sqrt(2),-0.5*math.sqrt(2), 0.0, 0.0 ],
|
2013-11-26 00:34:39 +05:30
|
|
|
]
|
|
|
|
elif self.lattice == 'hexagonal':
|
|
|
|
symQuats = [
|
|
|
|
[ 1.0,0.0,0.0,0.0 ],
|
2015-08-24 19:09:09 +05:30
|
|
|
[-0.5*math.sqrt(3), 0.0, 0.0,-0.5 ],
|
|
|
|
[ 0.5, 0.0, 0.0, 0.5*math.sqrt(3) ],
|
2013-11-26 00:34:39 +05:30
|
|
|
[ 0.0,0.0,0.0,1.0 ],
|
2015-08-24 19:09:09 +05:30
|
|
|
[-0.5, 0.0, 0.0, 0.5*math.sqrt(3) ],
|
2013-11-26 00:34:39 +05:30
|
|
|
[-0.5*math.sqrt(3), 0.0, 0.0, 0.5 ],
|
2015-08-24 19:09:09 +05:30
|
|
|
[ 0.0,1.0,0.0,0.0 ],
|
2013-11-26 00:34:39 +05:30
|
|
|
[ 0.0,-0.5*math.sqrt(3), 0.5, 0.0 ],
|
|
|
|
[ 0.0, 0.5,-0.5*math.sqrt(3), 0.0 ],
|
2015-08-24 19:09:09 +05:30
|
|
|
[ 0.0,0.0,1.0,0.0 ],
|
2013-11-26 00:34:39 +05:30
|
|
|
[ 0.0,-0.5,-0.5*math.sqrt(3), 0.0 ],
|
2015-08-24 19:09:09 +05:30
|
|
|
[ 0.0, 0.5*math.sqrt(3), 0.5, 0.0 ],
|
2013-11-26 00:34:39 +05:30
|
|
|
]
|
|
|
|
elif self.lattice == 'tetragonal':
|
|
|
|
symQuats = [
|
|
|
|
[ 1.0,0.0,0.0,0.0 ],
|
|
|
|
[ 0.0,1.0,0.0,0.0 ],
|
|
|
|
[ 0.0,0.0,1.0,0.0 ],
|
|
|
|
[ 0.0,0.0,0.0,1.0 ],
|
|
|
|
[ 0.0, 0.5*math.sqrt(2), 0.5*math.sqrt(2), 0.0 ],
|
|
|
|
[ 0.0,-0.5*math.sqrt(2), 0.5*math.sqrt(2), 0.0 ],
|
|
|
|
[ 0.5*math.sqrt(2), 0.0, 0.0, 0.5*math.sqrt(2) ],
|
|
|
|
[-0.5*math.sqrt(2), 0.0, 0.0, 0.5*math.sqrt(2) ],
|
|
|
|
]
|
|
|
|
elif self.lattice == 'orthorhombic':
|
|
|
|
symQuats = [
|
|
|
|
[ 1.0,0.0,0.0,0.0 ],
|
|
|
|
[ 0.0,1.0,0.0,0.0 ],
|
|
|
|
[ 0.0,0.0,1.0,0.0 ],
|
|
|
|
[ 0.0,0.0,0.0,1.0 ],
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
symQuats = [
|
|
|
|
[ 1.0,0.0,0.0,0.0 ],
|
|
|
|
]
|
2015-11-14 07:16:44 +05:30
|
|
|
|
2016-09-11 22:33:32 +05:30
|
|
|
return list(map(Quaternion,
|
2018-12-18 02:37:51 +05:30
|
|
|
np.array(symQuats)[np.atleast_1d(np.array(who)) if who != [] else range(len(symQuats))]))
|
2015-08-24 19:09:09 +05:30
|
|
|
|
|
|
|
|
2015-11-14 07:16:44 +05:30
|
|
|
def equivalentQuaternions(self,
|
|
|
|
quaternion,
|
|
|
|
who = []):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""List of symmetrically equivalent quaternions based on own symmetry."""
|
2018-11-22 04:21:38 +05:30
|
|
|
return [q*quaternion for q in self.symmetryQuats(who)]
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
def inFZ(self,R):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""Check whether given Rodrigues vector falls into fundamental zone of own symmetry."""
|
2019-02-22 15:55:39 +05:30
|
|
|
if isinstance(R, Quaternion): R = R.asRodrigues() # translate accidentally passed quaternion
|
2016-03-04 23:20:13 +05:30
|
|
|
# fundamental zone in Rodrigues space is point symmetric around origin
|
2019-02-21 17:06:27 +05:30
|
|
|
|
|
|
|
if R.shape[0]==4: # transition old (length not stored separately) to new
|
|
|
|
Rabs = abs(R[0:3]*R[3])
|
|
|
|
else:
|
|
|
|
Rabs = abs(R)
|
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
if self.lattice == 'cubic':
|
2019-02-21 17:06:27 +05:30
|
|
|
return math.sqrt(2.0)-1.0 >= Rabs[0] \
|
|
|
|
and math.sqrt(2.0)-1.0 >= Rabs[1] \
|
|
|
|
and math.sqrt(2.0)-1.0 >= Rabs[2] \
|
|
|
|
and 1.0 >= Rabs[0] + Rabs[1] + Rabs[2]
|
2013-11-26 00:34:39 +05:30
|
|
|
elif self.lattice == 'hexagonal':
|
2019-02-21 17:06:27 +05:30
|
|
|
return 1.0 >= Rabs[0] and 1.0 >= Rabs[1] and 1.0 >= Rabs[2] \
|
|
|
|
and 2.0 >= math.sqrt(3)*Rabs[0] + Rabs[1] \
|
|
|
|
and 2.0 >= math.sqrt(3)*Rabs[1] + Rabs[0] \
|
|
|
|
and 2.0 >= math.sqrt(3) + Rabs[2]
|
2013-11-26 00:34:39 +05:30
|
|
|
elif self.lattice == 'tetragonal':
|
2019-02-21 17:06:27 +05:30
|
|
|
return 1.0 >= Rabs[0] and 1.0 >= Rabs[1] \
|
|
|
|
and math.sqrt(2.0) >= Rabs[0] + Rabs[1] \
|
|
|
|
and math.sqrt(2.0) >= Rabs[2] + 1.0
|
2015-04-03 00:45:09 +05:30
|
|
|
elif self.lattice == 'orthorhombic':
|
2019-02-21 17:06:27 +05:30
|
|
|
return 1.0 >= Rabs[0] and 1.0 >= Rabs[1] and 1.0 >= Rabs[2]
|
2013-11-26 00:34:39 +05:30
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def inDisorientationSST(self,R):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2013-11-26 00:34:39 +05:30
|
|
|
Check whether given Rodrigues vector (of misorientation) falls into standard stereographic triangle of own symmetry.
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
Determination of disorientations follow the work of A. Heinz and P. Neumann:
|
|
|
|
Representation of Orientation and Disorientation Data for Cubic, Hexagonal, Tetragonal and Orthorhombic Crystals
|
|
|
|
Acta Cryst. (1991). A47, 780-789
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2013-11-26 00:34:39 +05:30
|
|
|
if isinstance(R, Quaternion): R = R.asRodrigues() # translate accidentially passed quaternion
|
|
|
|
|
|
|
|
epsilon = 0.0
|
|
|
|
if self.lattice == 'cubic':
|
2015-08-24 19:09:09 +05:30
|
|
|
return R[0] >= R[1]+epsilon and R[1] >= R[2]+epsilon and R[2] >= epsilon
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
elif self.lattice == 'hexagonal':
|
2015-08-24 19:09:09 +05:30
|
|
|
return R[0] >= math.sqrt(3)*(R[1]-epsilon) and R[1] >= epsilon and R[2] >= epsilon
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
elif self.lattice == 'tetragonal':
|
2015-08-24 19:09:09 +05:30
|
|
|
return R[0] >= R[1]-epsilon and R[1] >= epsilon and R[2] >= epsilon
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
elif self.lattice == 'orthorhombic':
|
2015-08-24 19:09:09 +05:30
|
|
|
return R[0] >= epsilon and R[1] >= epsilon and R[2] >= epsilon
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
def inSST(self,
|
|
|
|
vector,
|
2015-10-24 01:46:01 +05:30
|
|
|
proper = False,
|
2015-08-24 19:09:09 +05:30
|
|
|
color = False):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2013-11-26 00:34:39 +05:30
|
|
|
Check whether given vector falls into standard stereographic triangle of own symmetry.
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2015-10-24 01:46:01 +05:30
|
|
|
proper considers only vectors with z >= 0, hence uses two neighboring SSTs.
|
2013-11-26 00:34:39 +05:30
|
|
|
Return inverse pole figure color if requested.
|
2019-02-04 04:40:49 +05:30
|
|
|
Bases are computed from
|
|
|
|
|
|
|
|
basis = {'cubic' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
[1.,0.,1.]/np.sqrt(2.), # direction of green
|
|
|
|
[1.,1.,1.]/np.sqrt(3.)]).T), # direction of blue
|
|
|
|
'hexagonal' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
[1.,0.,0.], # direction of green
|
|
|
|
[np.sqrt(3.),1.,0.]/np.sqrt(4.)]).T), # direction of blue
|
|
|
|
'tetragonal' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
[1.,0.,0.], # direction of green
|
|
|
|
[1.,1.,0.]/np.sqrt(2.)]).T), # direction of blue
|
|
|
|
'orthorhombic' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
[1.,0.,0.], # direction of green
|
|
|
|
[0.,1.,0.]]).T), # direction of blue
|
|
|
|
}
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2013-11-26 00:34:39 +05:30
|
|
|
if self.lattice == 'cubic':
|
2015-10-24 01:46:01 +05:30
|
|
|
basis = {'improper':np.array([ [-1. , 0. , 1. ],
|
2016-11-16 16:45:01 +05:30
|
|
|
[ np.sqrt(2.) , -np.sqrt(2.) , 0. ],
|
|
|
|
[ 0. , np.sqrt(3.) , 0. ] ]),
|
2016-10-31 20:10:58 +05:30
|
|
|
'proper':np.array([ [ 0. , -1. , 1. ],
|
2016-11-16 16:45:01 +05:30
|
|
|
[-np.sqrt(2.) , np.sqrt(2.) , 0. ],
|
|
|
|
[ np.sqrt(3.) , 0. , 0. ] ]),
|
2015-10-23 02:45:15 +05:30
|
|
|
}
|
2013-11-26 00:34:39 +05:30
|
|
|
elif self.lattice == 'hexagonal':
|
2015-10-24 01:46:01 +05:30
|
|
|
basis = {'improper':np.array([ [ 0. , 0. , 1. ],
|
2016-11-16 16:45:01 +05:30
|
|
|
[ 1. , -np.sqrt(3.) , 0. ],
|
|
|
|
[ 0. , 2. , 0. ] ]),
|
|
|
|
'proper':np.array([ [ 0. , 0. , 1. ],
|
|
|
|
[-1. , np.sqrt(3.) , 0. ],
|
|
|
|
[ np.sqrt(3.) , -1. , 0. ] ]),
|
2015-10-23 02:45:15 +05:30
|
|
|
}
|
2013-11-26 00:34:39 +05:30
|
|
|
elif self.lattice == 'tetragonal':
|
2015-10-24 01:46:01 +05:30
|
|
|
basis = {'improper':np.array([ [ 0. , 0. , 1. ],
|
2016-11-16 16:45:01 +05:30
|
|
|
[ 1. , -1. , 0. ],
|
|
|
|
[ 0. , np.sqrt(2.) , 0. ] ]),
|
|
|
|
'proper':np.array([ [ 0. , 0. , 1. ],
|
|
|
|
[-1. , 1. , 0. ],
|
|
|
|
[ np.sqrt(2.) , 0. , 0. ] ]),
|
2015-10-23 02:45:15 +05:30
|
|
|
}
|
2013-11-26 00:34:39 +05:30
|
|
|
elif self.lattice == 'orthorhombic':
|
2015-10-24 01:46:01 +05:30
|
|
|
basis = {'improper':np.array([ [ 0., 0., 1.],
|
2016-10-31 20:10:58 +05:30
|
|
|
[ 1., 0., 0.],
|
|
|
|
[ 0., 1., 0.] ]),
|
|
|
|
'proper':np.array([ [ 0., 0., 1.],
|
|
|
|
[-1., 0., 0.],
|
|
|
|
[ 0., 1., 0.] ]),
|
2015-10-23 02:45:15 +05:30
|
|
|
}
|
2016-11-16 16:58:38 +05:30
|
|
|
else: # direct exit for unspecified symmetry
|
|
|
|
if color:
|
|
|
|
return (True,np.zeros(3,'d'))
|
|
|
|
else:
|
|
|
|
return True
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2018-12-05 05:50:24 +05:30
|
|
|
v = np.array(vector,dtype=float)
|
2016-11-16 16:58:38 +05:30
|
|
|
if proper: # check both improper ...
|
|
|
|
theComponents = np.dot(basis['improper'],v)
|
2015-10-23 02:45:15 +05:30
|
|
|
inSST = np.all(theComponents >= 0.0)
|
2016-11-16 16:58:38 +05:30
|
|
|
if not inSST: # ... and proper SST
|
|
|
|
theComponents = np.dot(basis['proper'],v)
|
2015-10-23 02:45:15 +05:30
|
|
|
inSST = np.all(theComponents >= 0.0)
|
2016-11-16 16:58:38 +05:30
|
|
|
else:
|
|
|
|
v[2] = abs(v[2]) # z component projects identical
|
|
|
|
theComponents = np.dot(basis['improper'],v) # for positive and negative values
|
|
|
|
inSST = np.all(theComponents >= 0.0)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
if color: # have to return color array
|
2013-11-26 00:34:39 +05:30
|
|
|
if inSST:
|
2015-08-24 19:09:09 +05:30
|
|
|
rgb = np.power(theComponents/np.linalg.norm(theComponents),0.5) # smoothen color ramps
|
2018-12-07 21:04:45 +05:30
|
|
|
rgb = np.minimum(np.ones(3,dtype=float),rgb) # limit to maximum intensity
|
2015-08-24 19:09:09 +05:30
|
|
|
rgb /= max(rgb) # normalize to (HS)V = 1
|
2013-11-26 00:34:39 +05:30
|
|
|
else:
|
2018-12-05 05:50:24 +05:30
|
|
|
rgb = np.zeros(3,dtype=float)
|
2013-11-26 00:34:39 +05:30
|
|
|
return (inSST,rgb)
|
|
|
|
else:
|
|
|
|
return inSST
|
|
|
|
|
2016-11-16 16:45:01 +05:30
|
|
|
# code derived from https://github.com/ezag/pyeuclid
|
2013-11-26 00:34:39 +05:30
|
|
|
# suggested reading: http://web.mit.edu/2.998/www/QuaternionReport1.pdf
|
|
|
|
|
|
|
|
|
2019-02-21 17:06:27 +05:30
|
|
|
# ******************************************************************************************
|
|
|
|
class Lattice:
|
|
|
|
"""
|
|
|
|
Lattice system
|
|
|
|
|
|
|
|
Currently, this contains only a mapping from Bravais lattice to symmetry
|
|
|
|
and orientation relationships. It could include twin and slip systems.
|
|
|
|
https://en.wikipedia.org/wiki/Bravais_lattice
|
|
|
|
"""
|
|
|
|
|
|
|
|
lattices = {
|
|
|
|
'triclinic':{'symmetry':None},
|
|
|
|
'bct':{'symmetry':'tetragonal'},
|
|
|
|
'hex':{'symmetry':'hexagonal'},
|
|
|
|
'fcc':{'symmetry':'cubic','c/a':1.0},
|
|
|
|
'bcc':{'symmetry':'cubic','c/a':1.0},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, lattice):
|
|
|
|
self.lattice = lattice
|
|
|
|
self.symmetry = Symmetry(self.lattices[lattice]['symmetry'])
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
"""Report basic lattice information"""
|
|
|
|
return 'Bravais lattice {} ({} symmetry)'.format(self.lattice,self.symmetry)
|
|
|
|
|
|
|
|
|
|
|
|
# Kurdjomov--Sachs orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from S. Morito et al./Journal of Alloys and Compounds 5775 (2013) S587-S592
|
|
|
|
# also see K. Kitahara et al./Acta Materialia 54 (2006) 1279-1288
|
|
|
|
KS = {'mapping':{'fcc':0,'bcc':1},
|
|
|
|
'planes': np.array([
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]]],dtype='float'),
|
|
|
|
'directions': np.array([
|
|
|
|
[[ -1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ -1, 0, 1],[ -1, 1, -1]],
|
|
|
|
[[ 0, 1, -1],[ -1, -1, 1]],
|
|
|
|
[[ 0, 1, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, -1, 0],[ -1, -1, 1]],
|
|
|
|
[[ 1, -1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 1, 0, -1],[ -1, -1, 1]],
|
|
|
|
[[ 1, 0, -1],[ -1, 1, -1]],
|
|
|
|
[[ -1, -1, 0],[ -1, -1, 1]],
|
|
|
|
[[ -1, -1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, 1, 1],[ -1, -1, 1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, 1],[ -1, -1, 1]],
|
|
|
|
[[ 0, -1, 1],[ -1, 1, -1]],
|
|
|
|
[[ -1, 0, -1],[ -1, -1, 1]],
|
|
|
|
[[ -1, 0, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 1, 0],[ -1, -1, 1]],
|
|
|
|
[[ 1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, -1, 1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, -1],[ -1, -1, 1]],
|
|
|
|
[[ 0, -1, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ 1, 0, 1],[ -1, 1, -1]]],dtype='float')}
|
|
|
|
|
|
|
|
# Greninger--Troiano orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from Y. He et al./Journal of Applied Crystallography (2006). 39, 72-81
|
|
|
|
GT = {'mapping':{'fcc':0,'bcc':1},
|
|
|
|
'planes': np.array([
|
|
|
|
[[ 1, 1, 1],[ 1, 0, 1]],
|
|
|
|
[[ 1, 1, 1],[ 1, 1, 0]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, 0, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, -1, 0]],
|
|
|
|
[[ -1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 0, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 1, 0]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, 0, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, -1, 0]],
|
|
|
|
[[ 1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 1, 1, 0]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 1, 0, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, -1, 0]],
|
|
|
|
[[ -1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, 0, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 1, 0]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 0, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, -1, 0]],
|
|
|
|
[[ 1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, 0, 1]]],dtype='float'),
|
|
|
|
'directions': np.array([
|
|
|
|
[[ -5,-12, 17],[-17, -7, 17]],
|
|
|
|
[[ 17, -5,-12],[ 17,-17, -7]],
|
|
|
|
[[-12, 17, -5],[ -7, 17,-17]],
|
|
|
|
[[ 5, 12, 17],[ 17, 7, 17]],
|
|
|
|
[[-17, 5,-12],[-17, 17, -7]],
|
|
|
|
[[ 12,-17, -5],[ 7,-17,-17]],
|
|
|
|
[[ -5, 12,-17],[-17, 7,-17]],
|
|
|
|
[[ 17, 5, 12],[ 17, 17, 7]],
|
|
|
|
[[-12,-17, 5],[ -7,-17, 17]],
|
|
|
|
[[ 5,-12,-17],[ 17, -7,-17]],
|
|
|
|
[[-17, -5, 12],[-17,-17, 7]],
|
|
|
|
[[ 12, 17, 5],[ 7, 17, 17]],
|
|
|
|
[[ -5, 17,-12],[-17, 17, -7]],
|
|
|
|
[[-12, -5, 17],[ -7,-17, 17]],
|
|
|
|
[[ 17,-12, -5],[ 17, -7,-17]],
|
|
|
|
[[ 5,-17,-12],[ 17,-17, -7]],
|
|
|
|
[[ 12, 5, 17],[ 7, 17, 17]],
|
|
|
|
[[-17, 12, -5],[-17, 7,-17]],
|
|
|
|
[[ -5,-17, 12],[-17,-17, 7]],
|
|
|
|
[[-12, 5,-17],[ -7, 17,-17]],
|
|
|
|
[[ 17, 12, 5],[ 17, 7, 17]],
|
|
|
|
[[ 5, 17, 12],[ 17, 17, 7]],
|
|
|
|
[[ 12, -5,-17],[ 7,-17,-17]],
|
|
|
|
[[-17,-12, 5],[-17, 7, 17]]],dtype='float')}
|
|
|
|
|
|
|
|
# Greninger--Troiano' orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from Y. He et al./Journal of Applied Crystallography (2006). 39, 72-81
|
|
|
|
GTdash = {'mapping':{'fcc':0,'bcc':1},
|
|
|
|
'planes': np.array([
|
|
|
|
[[ 7, 17, 17],[ 12, 5, 17]],
|
|
|
|
[[ 17, 7, 17],[ 17, 12, 5]],
|
|
|
|
[[ 17, 17, 7],[ 5, 17, 12]],
|
|
|
|
[[ -7,-17, 17],[-12, -5, 17]],
|
|
|
|
[[-17, -7, 17],[-17,-12, 5]],
|
|
|
|
[[-17,-17, 7],[ -5,-17, 12]],
|
|
|
|
[[ 7,-17,-17],[ 12, -5,-17]],
|
|
|
|
[[ 17, -7,-17],[ 17,-12, -5]],
|
|
|
|
[[ 17,-17, -7],[ 5,-17,-12]],
|
|
|
|
[[ -7, 17,-17],[-12, 5,-17]],
|
|
|
|
[[-17, 7,-17],[-17, 12, -5]],
|
|
|
|
[[-17, 17, -7],[ -5, 17,-12]],
|
|
|
|
[[ 7, 17, 17],[ 12, 17, 5]],
|
|
|
|
[[ 17, 7, 17],[ 5, 12, 17]],
|
|
|
|
[[ 17, 17, 7],[ 17, 5, 12]],
|
|
|
|
[[ -7,-17, 17],[-12,-17, 5]],
|
|
|
|
[[-17, -7, 17],[ -5,-12, 17]],
|
|
|
|
[[-17,-17, 7],[-17, -5, 12]],
|
|
|
|
[[ 7,-17,-17],[ 12,-17, -5]],
|
|
|
|
[[ 17, -7,-17],[ 5, -12,-17]],
|
|
|
|
[[ 17,-17, 7],[ 17, -5,-12]],
|
|
|
|
[[ -7, 17,-17],[-12, 17, -5]],
|
|
|
|
[[-17, 7,-17],[ -5, 12,-17]],
|
|
|
|
[[-17, 17, -7],[-17, 5,-12]]],dtype='float'),
|
|
|
|
'directions': np.array([
|
|
|
|
[[ 0, 1, -1],[ 1, 1, -1]],
|
|
|
|
[[ -1, 0, 1],[ -1, 1, 1]],
|
|
|
|
[[ 1, -1, 0],[ 1, -1, 1]],
|
|
|
|
[[ 0, -1, -1],[ -1, -1, -1]],
|
|
|
|
[[ 1, 0, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, -1, 0],[ 1, -1, -1]],
|
|
|
|
[[ 0, 1, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 0, 1],[ 1, 1, 1]],
|
|
|
|
[[ -1, -1, 0],[ -1, -1, 1]],
|
|
|
|
[[ 0, -1, -1],[ 1, -1, -1]],
|
|
|
|
[[ -1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ -1, -1, 0],[ -1, -1, -1]],
|
|
|
|
[[ 0, -1, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, 0, -1],[ 1, 1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, 1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, 1]],
|
|
|
|
[[ -1, 0, -1],[ -1, -1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, 1],[ -1, -1, 1]],
|
|
|
|
[[ -1, 0, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 1, 0],[ 1, 1, 1]],
|
|
|
|
[[ 0, 1, 1],[ 1, 1, 1]],
|
|
|
|
[[ 1, 0, -1],[ 1, -1, -1]],
|
|
|
|
[[ 1, 1, 0],[ 1, 1, -1]]],dtype='float')}
|
|
|
|
|
|
|
|
# Nishiyama--Wassermann orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from H. Kitahara et al./Materials Characterization 54 (2005) 378-386
|
|
|
|
NW = {'mapping':{'fcc':0,'bcc':1},
|
|
|
|
'planes': np.array([
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ 0, 1, 1]]],dtype='float'),
|
|
|
|
'directions': np.array([
|
|
|
|
[[ 2, -1, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 2, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -1, 2],[ 0, -1, 1]],
|
|
|
|
[[ -2, -1, -1],[ 0, -1, 1]],
|
|
|
|
[[ 1, 2, -1],[ 0, -1, 1]],
|
|
|
|
[[ 1, -1, 2],[ 0, -1, 1]],
|
|
|
|
[[ 2, 1, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -2, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 1, 2],[ 0, -1, 1]],
|
|
|
|
[[ -1, 2, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 2, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -1, -2],[ 0, -1, 1]]],dtype='float')}
|
|
|
|
|
|
|
|
# Pitsch orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from Y. He et al./Acta Materialia 53 (2005) 1179-1190
|
|
|
|
Pitsch = {'mapping':{'fcc':0,'bcc':1},
|
|
|
|
'planes': np.array([
|
|
|
|
[[ 0, 1, 0],[ -1, 0, 1]],
|
|
|
|
[[ 0, 0, 1],[ 1, -1, 0]],
|
|
|
|
[[ 1, 0, 0],[ 0, 1, -1]],
|
|
|
|
[[ 1, 0, 0],[ 0, -1, -1]],
|
|
|
|
[[ 0, 1, 0],[ -1, 0, -1]],
|
|
|
|
[[ 0, 0, 1],[ -1, -1, 0]],
|
|
|
|
[[ 0, 1, 0],[ -1, 0, -1]],
|
|
|
|
[[ 0, 0, 1],[ -1, -1, 0]],
|
|
|
|
[[ 1, 0, 0],[ 0, -1, -1]],
|
|
|
|
[[ 1, 0, 0],[ 0, -1, 1]],
|
|
|
|
[[ 0, 1, 0],[ 1, 0, -1]],
|
|
|
|
[[ 0, 0, 1],[ -1, 1, 0]]],dtype='float'),
|
|
|
|
'directions': np.array([
|
|
|
|
[[ 1, 0, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, 1, 0],[ 1, 1, -1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, 1]],
|
|
|
|
[[ 0, 1, -1],[ -1, 1, -1]],
|
|
|
|
[[ -1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ 1, -1, 0],[ 1, -1, -1]],
|
|
|
|
[[ 1, 0, -1],[ 1, -1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, 1],[ -1, -1, 1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, 1]],
|
|
|
|
[[ 1, 0, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, 1, 0],[ 1, 1, -1]]],dtype='float')}
|
|
|
|
|
|
|
|
# Bain orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from Y. He et al./Journal of Applied Crystallography (2006). 39, 72-81
|
|
|
|
Bain = {'mapping':{'fcc':0,'bcc':1},
|
|
|
|
'planes': np.array([
|
|
|
|
[[ 1, 0, 0],[ 1, 0, 0]],
|
|
|
|
[[ 0, 1, 0],[ 0, 1, 0]],
|
|
|
|
[[ 0, 0, 1],[ 0, 0, 1]]],dtype='float'),
|
|
|
|
'directions': np.array([
|
|
|
|
[[ 0, 1, 0],[ 0, 1, 1]],
|
|
|
|
[[ 0, 0, 1],[ 1, 0, 1]],
|
|
|
|
[[ 1, 0, 0],[ 1, 1, 0]]],dtype='float')}
|
|
|
|
|
|
|
|
def relationOperations(self,model):
|
|
|
|
|
|
|
|
models={'KS':self.KS, 'GT':self.GT, "GT'":self.GTdash,
|
|
|
|
'NW':self.NW, 'Pitsch': self.Pitsch, 'Bain':self.Bain}
|
|
|
|
|
|
|
|
relationship = models[model]
|
|
|
|
|
|
|
|
r = {'lattice':Lattice((set(relationship['mapping'])-{self.lattice}).pop()),
|
|
|
|
'rotations':[] }
|
|
|
|
|
|
|
|
myPlane_id = relationship['mapping'][self.lattice]
|
|
|
|
otherPlane_id = (myPlane_id+1)%2
|
|
|
|
myDir_id = myPlane_id +2
|
|
|
|
otherDir_id = otherPlane_id +2
|
|
|
|
for miller in np.hstack((relationship['planes'],relationship['directions'])):
|
|
|
|
myPlane = miller[myPlane_id]/ np.linalg.norm(miller[myPlane_id])
|
|
|
|
myDir = miller[myDir_id]/ np.linalg.norm(miller[myDir_id])
|
|
|
|
otherPlane = miller[otherPlane_id]/ np.linalg.norm(miller[otherPlane_id])
|
|
|
|
otherDir = miller[otherDir_id]/ np.linalg.norm(miller[otherDir_id])
|
|
|
|
|
|
|
|
myMatrix = np.array([myDir,np.cross(myPlane,myDir),myPlane]).T
|
|
|
|
otherMatrix = np.array([otherDir,np.cross(otherPlane,otherDir),otherPlane]).T
|
|
|
|
r['rotations'].append(Rotation.fromMatrix(np.dot(otherMatrix,myMatrix.T)))
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Orientation2:
|
|
|
|
"""
|
|
|
|
Crystallographic orientation
|
|
|
|
|
|
|
|
A crystallographic orientation contains a rotation and a lattice
|
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ['rotation','lattice']
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
"""Report lattice type and orientation"""
|
|
|
|
return self.lattice.__repr__()+'\n'+self.rotation.__repr__()
|
|
|
|
|
|
|
|
def __init__(self, rotation, lattice):
|
|
|
|
|
|
|
|
if isinstance(lattice, Lattice):
|
|
|
|
self.lattice = lattice
|
|
|
|
else:
|
|
|
|
self.lattice = Lattice(lattice) # assume string
|
|
|
|
|
|
|
|
if isinstance(rotation, Rotation):
|
|
|
|
self.rotation = rotation
|
|
|
|
else:
|
|
|
|
self.rotation = Rotation(rotation) # assume quaternion
|
|
|
|
|
|
|
|
def disorientation(self,
|
|
|
|
other,
|
|
|
|
SST = True):
|
|
|
|
"""
|
|
|
|
Disorientation between myself and given other orientation.
|
|
|
|
|
|
|
|
Rotation axis falls into SST if SST == True.
|
|
|
|
(Currently requires same symmetry for both orientations.
|
|
|
|
Look into A. Heinz and P. Neumann 1991 for cases with differing sym.)
|
|
|
|
"""
|
|
|
|
#if self.lattice.symmetry != other.lattice.symmetry:
|
|
|
|
# raise NotImplementedError('disorientation between different symmetry classes not supported yet.')
|
|
|
|
|
|
|
|
mis = other.rotation*self.rotation.inversed()
|
|
|
|
mySymEqs = self.equivalentOrientations() if SST else self.equivalentOrientations()[:1] # take all or only first sym operation
|
|
|
|
otherSymEqs = other.equivalentOrientations()
|
|
|
|
|
|
|
|
for i,sA in enumerate(mySymEqs):
|
|
|
|
for j,sB in enumerate(otherSymEqs):
|
|
|
|
theQ = sB.rotation*mis*sA.rotation.inversed()
|
|
|
|
for k in range(2):
|
|
|
|
theQ.inversed()
|
|
|
|
breaker = self.lattice.symmetry.inFZ(theQ.asRodriques()) #and (not SST or other.symmetry.inDisorientationSST(theQ))
|
|
|
|
if breaker: break
|
|
|
|
if breaker: break
|
|
|
|
if breaker: break
|
|
|
|
|
|
|
|
# disorientation, own sym, other sym, self-->other: True, self<--other: False
|
|
|
|
return theQ
|
|
|
|
|
|
|
|
def inFZ(self):
|
|
|
|
return self.lattice.symmetry.inFZ(self.rotation.asRodrigues())
|
|
|
|
|
|
|
|
def equivalentOrientations(self):
|
|
|
|
"""List of orientations which are symmetrically equivalent"""
|
|
|
|
q = self.lattice.symmetry.symmetryQuats()
|
|
|
|
q2 = [Quaternion2(q=a.asList()[0],p=a.asList()[1:4]) for a in q] # convert Quaternion to Quaternion2
|
|
|
|
x = [self.__class__(q3*self.rotation.quaternion,self.lattice) for q3 in q2]
|
|
|
|
return x
|
|
|
|
|
|
|
|
def relatedOrientations(self,model):
|
|
|
|
"""List of orientations related by the given orientation relationship"""
|
|
|
|
r = self.lattice.relationOperations(model)
|
|
|
|
return [self.__class__(self.rotation*o,r['lattice']) for o in r['rotations']]
|
|
|
|
|
|
|
|
def reduced(self):
|
|
|
|
"""Transform orientation to fall into fundamental zone according to symmetry"""
|
|
|
|
for me in self.equivalentOrientations():
|
|
|
|
if self.lattice.symmetry.inFZ(me.rotation.asRodrigues()): break
|
|
|
|
|
|
|
|
return self.__class__(me.rotation,self.lattice)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
# ******************************************************************************************
|
|
|
|
class Orientation:
|
|
|
|
|
|
|
|
__slots__ = ['quaternion','symmetry']
|
2015-04-03 00:45:09 +05:30
|
|
|
|
|
|
|
def __init__(self,
|
2013-11-26 00:34:39 +05:30
|
|
|
quaternion = Quaternion.fromIdentity(),
|
|
|
|
Rodrigues = None,
|
|
|
|
angleAxis = None,
|
|
|
|
matrix = None,
|
|
|
|
Eulers = None,
|
2016-03-04 23:20:13 +05:30
|
|
|
random = False, # integer to have a fixed seed or True for real random
|
2013-11-26 00:34:39 +05:30
|
|
|
symmetry = None,
|
2016-08-01 05:03:26 +05:30
|
|
|
degrees = False,
|
2013-11-26 00:34:39 +05:30
|
|
|
):
|
2015-08-24 19:09:09 +05:30
|
|
|
if random: # produce random orientation
|
2015-06-26 12:02:25 +05:30
|
|
|
if isinstance(random, bool ):
|
|
|
|
self.quaternion = Quaternion.fromRandom()
|
|
|
|
else:
|
|
|
|
self.quaternion = Quaternion.fromRandom(randomSeed=random)
|
2015-08-24 19:09:09 +05:30
|
|
|
elif isinstance(Eulers, np.ndarray) and Eulers.shape == (3,): # based on given Euler angles
|
2018-11-22 04:21:38 +05:30
|
|
|
self.quaternion = Quaternion.fromEulers(Eulers,degrees=degrees)
|
2015-08-24 19:09:09 +05:30
|
|
|
elif isinstance(matrix, np.ndarray) : # based on given rotation matrix
|
2013-11-26 00:34:39 +05:30
|
|
|
self.quaternion = Quaternion.fromMatrix(matrix)
|
2015-08-24 19:09:09 +05:30
|
|
|
elif isinstance(angleAxis, np.ndarray) and angleAxis.shape == (4,): # based on given angle and rotation axis
|
2016-08-01 05:03:26 +05:30
|
|
|
self.quaternion = Quaternion.fromAngleAxis(angleAxis[0],angleAxis[1:4],degrees=degrees)
|
2015-08-24 19:09:09 +05:30
|
|
|
elif isinstance(Rodrigues, np.ndarray) and Rodrigues.shape == (3,): # based on given Rodrigues vector
|
2013-11-26 00:34:39 +05:30
|
|
|
self.quaternion = Quaternion.fromRodrigues(Rodrigues)
|
2015-08-24 19:09:09 +05:30
|
|
|
elif isinstance(quaternion, Quaternion): # based on given quaternion
|
2013-11-26 00:34:39 +05:30
|
|
|
self.quaternion = quaternion.homomorphed()
|
2018-12-05 05:50:24 +05:30
|
|
|
elif (isinstance(quaternion, np.ndarray) and quaternion.shape == (4,)) or \
|
|
|
|
(isinstance(quaternion, list) and len(quaternion) == 4 ): # based on given quaternion-like array
|
|
|
|
self.quaternion = Quaternion(quat=quaternion).homomorphed()
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
self.symmetry = Symmetry(symmetry)
|
|
|
|
|
|
|
|
def __copy__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Copy"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.__class__(quaternion=self.quaternion,symmetry=self.symmetry.lattice)
|
|
|
|
|
|
|
|
copy = __copy__
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Value as all implemented representations"""
|
2018-12-05 05:50:24 +05:30
|
|
|
return '\n'.join([
|
|
|
|
'Symmetry: {}'.format(self.symmetry),
|
|
|
|
'Quaternion: {}'.format(self.quaternion),
|
|
|
|
'Matrix:\n{}'.format( '\n'.join(['\t'.join(list(map(str,self.asMatrix()[i,:]))) for i in range(3)]) ),
|
|
|
|
'Bunge Eulers / deg: {}'.format('\t'.join(list(map(str,self.asEulers(degrees=True)))) ),
|
|
|
|
])
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
def asQuaternion(self):
|
|
|
|
return self.quaternion.asList()
|
|
|
|
|
2015-09-10 04:07:18 +05:30
|
|
|
def asEulers(self,
|
|
|
|
degrees = False,
|
2018-11-22 04:21:38 +05:30
|
|
|
):
|
|
|
|
return self.quaternion.asEulers(degrees)
|
2015-08-05 02:08:06 +05:30
|
|
|
eulers = property(asEulers)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
def asRodrigues(self):
|
|
|
|
return self.quaternion.asRodrigues()
|
2015-08-05 02:08:06 +05:30
|
|
|
rodrigues = property(asRodrigues)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
def asAngleAxis(self,
|
2018-12-08 08:32:30 +05:30
|
|
|
degrees = False,
|
|
|
|
flat = False):
|
|
|
|
return self.quaternion.asAngleAxis(degrees,flat)
|
2015-08-05 02:08:06 +05:30
|
|
|
angleAxis = property(asAngleAxis)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
def asMatrix(self):
|
|
|
|
return self.quaternion.asMatrix()
|
2015-08-05 02:08:06 +05:30
|
|
|
matrix = property(asMatrix)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-06-21 17:35:17 +05:30
|
|
|
def inFZ(self):
|
|
|
|
return self.symmetry.inFZ(self.quaternion.asRodrigues())
|
2015-08-05 02:08:06 +05:30
|
|
|
infz = property(inFZ)
|
2015-06-21 17:35:17 +05:30
|
|
|
|
2015-11-14 07:16:44 +05:30
|
|
|
def equivalentQuaternions(self,
|
|
|
|
who = []):
|
|
|
|
return self.symmetry.equivalentQuaternions(self.quaternion,who)
|
2015-06-21 17:35:17 +05:30
|
|
|
|
2015-11-14 07:16:44 +05:30
|
|
|
def equivalentOrientations(self,
|
|
|
|
who = []):
|
2016-09-11 22:33:32 +05:30
|
|
|
return [Orientation(quaternion = q, symmetry = self.symmetry.lattice) for q in self.equivalentQuaternions(who)]
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
def reduced(self):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""Transform orientation to fall into fundamental zone according to symmetry"""
|
2013-11-26 00:34:39 +05:30
|
|
|
for me in self.symmetry.equivalentQuaternions(self.quaternion):
|
|
|
|
if self.symmetry.inFZ(me.asRodrigues()): break
|
|
|
|
|
|
|
|
return Orientation(quaternion=me,symmetry=self.symmetry.lattice)
|
|
|
|
|
|
|
|
|
2015-09-16 22:37:02 +05:30
|
|
|
def disorientation(self,
|
|
|
|
other,
|
2015-10-09 18:33:10 +05:30
|
|
|
SST = True):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2015-10-09 18:33:10 +05:30
|
|
|
Disorientation between myself and given other orientation.
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2015-10-09 18:33:10 +05:30
|
|
|
Rotation axis falls into SST if SST == True.
|
|
|
|
(Currently requires same symmetry for both orientations.
|
|
|
|
Look into A. Heinz and P. Neumann 1991 for cases with differing sym.)
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2019-02-21 17:06:27 +05:30
|
|
|
if self.symmetry != other.symmetry:
|
|
|
|
raise NotImplementedError('disorientation between different symmetry classes not supported yet.')
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2018-11-22 04:21:38 +05:30
|
|
|
misQ = other.quaternion*self.quaternion.conjugated()
|
2015-10-09 18:33:10 +05:30
|
|
|
mySymQs = self.symmetry.symmetryQuats() if SST else self.symmetry.symmetryQuats()[:1] # take all or only first sym operation
|
2015-09-16 22:37:02 +05:30
|
|
|
otherSymQs = other.symmetry.symmetryQuats()
|
|
|
|
|
|
|
|
for i,sA in enumerate(mySymQs):
|
|
|
|
for j,sB in enumerate(otherSymQs):
|
2018-11-22 04:21:38 +05:30
|
|
|
theQ = sB*misQ*sA.conjugated()
|
2016-09-11 22:33:32 +05:30
|
|
|
for k in range(2):
|
2015-08-24 19:09:09 +05:30
|
|
|
theQ.conjugate()
|
2015-11-14 07:16:44 +05:30
|
|
|
breaker = self.symmetry.inFZ(theQ) \
|
|
|
|
and (not SST or other.symmetry.inDisorientationSST(theQ))
|
2015-08-24 19:09:09 +05:30
|
|
|
if breaker: break
|
2014-08-22 21:15:03 +05:30
|
|
|
if breaker: break
|
2013-11-26 00:34:39 +05:30
|
|
|
if breaker: break
|
2014-08-22 21:15:03 +05:30
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
# disorientation, own sym, other sym, self-->other: True, self<--other: False
|
2015-10-09 18:33:10 +05:30
|
|
|
return (Orientation(quaternion = theQ,symmetry = self.symmetry.lattice),
|
2018-11-20 19:41:18 +05:30
|
|
|
i,j, k == 1)
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
|
2015-10-09 18:33:10 +05:30
|
|
|
def inversePole(self,
|
|
|
|
axis,
|
2015-10-24 01:46:01 +05:30
|
|
|
proper = False,
|
2015-10-09 18:33:10 +05:30
|
|
|
SST = True):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Axis rotated according to orientation (using crystal symmetry to ensure location falls into SST)"""
|
2015-08-24 19:09:09 +05:30
|
|
|
if SST: # pole requested to be within SST
|
|
|
|
for i,q in enumerate(self.symmetry.equivalentQuaternions(self.quaternion)): # test all symmetric equivalent quaternions
|
2018-11-22 04:21:38 +05:30
|
|
|
pole = q*axis # align crystal direction to axis
|
2016-03-04 23:20:13 +05:30
|
|
|
if self.symmetry.inSST(pole,proper): break # found SST version
|
2015-06-13 17:21:10 +05:30
|
|
|
else:
|
2018-11-22 04:21:38 +05:30
|
|
|
pole = self.quaternion*axis # align crystal direction to axis
|
2015-03-28 13:13:49 +05:30
|
|
|
|
2015-10-23 02:45:15 +05:30
|
|
|
return (pole,i if SST else 0)
|
2015-03-28 13:13:49 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def IPFcolor(self,axis):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""TSL color of inverse pole figure for given axis"""
|
2015-05-08 19:44:44 +05:30
|
|
|
color = np.zeros(3,'d')
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-06-13 17:21:10 +05:30
|
|
|
for q in self.symmetry.equivalentQuaternions(self.quaternion):
|
2018-11-22 04:21:38 +05:30
|
|
|
pole = q*axis # align crystal direction to axis
|
2013-11-26 00:34:39 +05:30
|
|
|
inSST,color = self.symmetry.inSST(pole,color=True)
|
|
|
|
if inSST: break
|
|
|
|
|
|
|
|
return color
|
2015-04-03 00:45:09 +05:30
|
|
|
|
|
|
|
@classmethod
|
2015-11-14 07:16:44 +05:30
|
|
|
def average(cls,
|
|
|
|
orientations,
|
|
|
|
multiplicity = []):
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2016-10-25 10:21:40 +05:30
|
|
|
Average orientation
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2015-04-03 00:45:09 +05:30
|
|
|
ref: F. Landis Markley, Yang Cheng, John Lucas Crassidis, and Yaakov Oshman.
|
|
|
|
Averaging Quaternions,
|
|
|
|
Journal of Guidance, Control, and Dynamics, Vol. 30, No. 4 (2007), pp. 1193-1197.
|
|
|
|
doi: 10.2514/1.28949
|
|
|
|
usage:
|
|
|
|
a = Orientation(Eulers=np.radians([10, 10, 0]), symmetry='hexagonal')
|
2015-06-21 17:35:17 +05:30
|
|
|
b = Orientation(Eulers=np.radians([20, 0, 0]), symmetry='hexagonal')
|
2015-11-14 07:16:44 +05:30
|
|
|
avg = Orientation.average([a,b])
|
2015-06-13 17:21:10 +05:30
|
|
|
"""
|
2015-11-14 07:16:44 +05:30
|
|
|
if not all(isinstance(item, Orientation) for item in orientations):
|
2015-06-13 17:21:10 +05:30
|
|
|
raise TypeError("Only instances of Orientation can be averaged.")
|
|
|
|
|
2015-11-14 07:16:44 +05:30
|
|
|
N = len(orientations)
|
|
|
|
if multiplicity == [] or not multiplicity:
|
|
|
|
multiplicity = np.ones(N,dtype='i')
|
|
|
|
|
|
|
|
reference = orientations[0] # take first as reference
|
|
|
|
for i,(o,n) in enumerate(zip(orientations,multiplicity)):
|
|
|
|
closest = o.equivalentOrientations(reference.disorientation(o,SST = False)[2])[0] # select sym orientation with lowest misorientation
|
2016-03-04 23:20:13 +05:30
|
|
|
M = closest.quaternion.asM() * n if i == 0 else M + closest.quaternion.asM() * n # noqa add (multiples) of this orientation to average noqa
|
2015-06-21 17:35:17 +05:30
|
|
|
eig, vec = np.linalg.eig(M/N)
|
2015-06-13 17:21:10 +05:30
|
|
|
|
2018-12-05 19:37:29 +05:30
|
|
|
return Orientation(quaternion = Quaternion(quat = np.real(vec.T[eig.argmax()])),
|
2015-11-14 10:06:46 +05:30
|
|
|
symmetry = reference.symmetry.lattice)
|
2015-05-08 19:44:44 +05:30
|
|
|
|
|
|
|
|
2015-10-09 18:33:10 +05:30
|
|
|
def related(self,
|
|
|
|
relationModel,
|
|
|
|
direction,
|
2016-11-22 01:36:52 +05:30
|
|
|
targetSymmetry = 'cubic'):
|
2016-09-02 21:49:01 +05:30
|
|
|
"""
|
2016-10-25 10:21:40 +05:30
|
|
|
Orientation relationship
|
2016-09-02 21:49:01 +05:30
|
|
|
|
|
|
|
positive number: fcc --> bcc
|
|
|
|
negative number: bcc --> fcc
|
|
|
|
"""
|
2015-06-29 21:32:56 +05:30
|
|
|
if relationModel not in ['KS','GT','GTdash','NW','Pitsch','Bain']: return None
|
2015-06-25 17:30:08 +05:30
|
|
|
if int(direction) == 0: return None
|
2015-07-23 03:19:24 +05:30
|
|
|
|
2015-06-25 17:30:08 +05:30
|
|
|
variant = int(abs(direction))-1
|
2015-06-13 17:21:10 +05:30
|
|
|
(me,other) = (0,1) if direction > 0 else (1,0)
|
|
|
|
|
2015-05-08 19:44:44 +05:30
|
|
|
planes = {'KS': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ 1, 1, -1],[ 0, 1, 1]]]),
|
|
|
|
'GT': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 1, 1, 1],[ 1, 0, 1]],
|
|
|
|
[[ 1, 1, 1],[ 1, 1, 0]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, 0, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, -1, 0]],
|
|
|
|
[[ -1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 0, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 1, 0]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, 0, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, -1, 0]],
|
|
|
|
[[ 1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 1, 1, 0]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 1, 0, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, -1, 0]],
|
|
|
|
[[ -1, -1, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -1, 1],[ -1, 0, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 1, 0]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ -1, 0, 1]],
|
|
|
|
[[ 1, -1, 1],[ 1, -1, 0]],
|
|
|
|
[[ 1, -1, 1],[ 0, -1, 1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ 1, -1, 1],[ 1, 0, 1]]]),
|
|
|
|
'GTdash': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 7, 17, 17],[ 12, 5, 17]],
|
|
|
|
[[ 17, 7, 17],[ 17, 12, 5]],
|
|
|
|
[[ 17, 17, 7],[ 5, 17, 12]],
|
|
|
|
[[ -7,-17, 17],[-12, -5, 17]],
|
|
|
|
[[-17, -7, 17],[-17,-12, 5]],
|
|
|
|
[[-17,-17, 7],[ -5,-17, 12]],
|
|
|
|
[[ 7,-17,-17],[ 12, -5,-17]],
|
|
|
|
[[ 17, -7,-17],[ 17,-12, -5]],
|
|
|
|
[[ 17,-17, -7],[ 5,-17,-12]],
|
|
|
|
[[ -7, 17,-17],[-12, 5,-17]],
|
|
|
|
[[-17, 7,-17],[-17, 12, -5]],
|
|
|
|
[[-17, 17, -7],[ -5, 17,-12]],
|
|
|
|
[[ 7, 17, 17],[ 12, 17, 5]],
|
|
|
|
[[ 17, 7, 17],[ 5, 12, 17]],
|
|
|
|
[[ 17, 17, 7],[ 17, 5, 12]],
|
|
|
|
[[ -7,-17, 17],[-12,-17, 5]],
|
|
|
|
[[-17, -7, 17],[ -5,-12, 17]],
|
|
|
|
[[-17,-17, 7],[-17, -5, 12]],
|
|
|
|
[[ 7,-17,-17],[ 12,-17, -5]],
|
|
|
|
[[ 17, -7,-17],[ 5, -12,-17]],
|
|
|
|
[[ 17,-17, 7],[ 17, -5,-12]],
|
|
|
|
[[ -7, 17,-17],[-12, 17, -5]],
|
|
|
|
[[-17, 7,-17],[ -5, 12,-17]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[-17, 17, -7],[-17, 5,-12]]]),
|
2015-05-08 19:44:44 +05:30
|
|
|
'NW': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, 1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ 1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ 0, 1, 1]],
|
|
|
|
[[ -1, -1, 1],[ 0, 1, 1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ -1, -1, 1],[ 0, 1, 1]]]),
|
|
|
|
'Pitsch': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 0, 1, 0],[ -1, 0, 1]],
|
|
|
|
[[ 0, 0, 1],[ 1, -1, 0]],
|
|
|
|
[[ 1, 0, 0],[ 0, 1, -1]],
|
|
|
|
[[ 1, 0, 0],[ 0, -1, -1]],
|
|
|
|
[[ 0, 1, 0],[ -1, 0, -1]],
|
|
|
|
[[ 0, 0, 1],[ -1, -1, 0]],
|
|
|
|
[[ 0, 1, 0],[ -1, 0, -1]],
|
|
|
|
[[ 0, 0, 1],[ -1, -1, 0]],
|
|
|
|
[[ 1, 0, 0],[ 0, -1, -1]],
|
|
|
|
[[ 1, 0, 0],[ 0, -1, 1]],
|
|
|
|
[[ 0, 1, 0],[ 1, 0, -1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ 0, 0, 1],[ -1, 1, 0]]]),
|
2015-05-08 19:44:44 +05:30
|
|
|
'Bain': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 1, 0, 0],[ 1, 0, 0]],
|
|
|
|
[[ 0, 1, 0],[ 0, 1, 0]],
|
2015-05-08 19:44:44 +05:30
|
|
|
[[ 0, 0, 1],[ 0, 0, 1]]]),
|
|
|
|
}
|
|
|
|
|
|
|
|
normals = {'KS': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ -1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ -1, 0, 1],[ -1, 1, -1]],
|
|
|
|
[[ 0, 1, -1],[ -1, -1, 1]],
|
|
|
|
[[ 0, 1, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, -1, 0],[ -1, -1, 1]],
|
|
|
|
[[ 1, -1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 1, 0, -1],[ -1, -1, 1]],
|
|
|
|
[[ 1, 0, -1],[ -1, 1, -1]],
|
|
|
|
[[ -1, -1, 0],[ -1, -1, 1]],
|
|
|
|
[[ -1, -1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, 1, 1],[ -1, -1, 1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, 1],[ -1, -1, 1]],
|
|
|
|
[[ 0, -1, 1],[ -1, 1, -1]],
|
|
|
|
[[ -1, 0, -1],[ -1, -1, 1]],
|
|
|
|
[[ -1, 0, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 1, 0],[ -1, -1, 1]],
|
|
|
|
[[ 1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, -1, 1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, -1],[ -1, -1, 1]],
|
|
|
|
[[ 0, -1, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 0, 1],[ -1, -1, 1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ 1, 0, 1],[ -1, 1, -1]]]),
|
2015-05-08 19:44:44 +05:30
|
|
|
'GT': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ -5,-12, 17],[-17, -7, 17]],
|
|
|
|
[[ 17, -5,-12],[ 17,-17, -7]],
|
|
|
|
[[-12, 17, -5],[ -7, 17,-17]],
|
|
|
|
[[ 5, 12, 17],[ 17, 7, 17]],
|
|
|
|
[[-17, 5,-12],[-17, 17, -7]],
|
|
|
|
[[ 12,-17, -5],[ 7,-17,-17]],
|
|
|
|
[[ -5, 12,-17],[-17, 7,-17]],
|
|
|
|
[[ 17, 5, 12],[ 17, 17, 7]],
|
|
|
|
[[-12,-17, 5],[ -7,-17, 17]],
|
|
|
|
[[ 5,-12,-17],[ 17, -7,-17]],
|
|
|
|
[[-17, -5, 12],[-17,-17, 7]],
|
|
|
|
[[ 12, 17, 5],[ 7, 17, 17]],
|
|
|
|
[[ -5, 17,-12],[-17, 17, -7]],
|
|
|
|
[[-12, -5, 17],[ -7,-17, 17]],
|
|
|
|
[[ 17,-12, -5],[ 17, -7,-17]],
|
|
|
|
[[ 5,-17,-12],[ 17,-17, -7]],
|
|
|
|
[[ 12, 5, 17],[ 7, 17, 17]],
|
|
|
|
[[-17, 12, -5],[-17, 7,-17]],
|
|
|
|
[[ -5,-17, 12],[-17,-17, 7]],
|
|
|
|
[[-12, 5,-17],[ -7, 17,-17]],
|
|
|
|
[[ 17, 12, 5],[ 17, 7, 17]],
|
|
|
|
[[ 5, 17, 12],[ 17, 17, 7]],
|
|
|
|
[[ 12, -5,-17],[ 7,-17,-17]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[-17,-12, 5],[-17, 7, 17]]]),
|
|
|
|
'GTdash': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 0, 1, -1],[ 1, 1, -1]],
|
|
|
|
[[ -1, 0, 1],[ -1, 1, 1]],
|
|
|
|
[[ 1, -1, 0],[ 1, -1, 1]],
|
|
|
|
[[ 0, -1, -1],[ -1, -1, -1]],
|
|
|
|
[[ 1, 0, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, -1, 0],[ 1, -1, -1]],
|
|
|
|
[[ 0, 1, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 0, 1],[ 1, 1, 1]],
|
|
|
|
[[ -1, -1, 0],[ -1, -1, 1]],
|
|
|
|
[[ 0, -1, -1],[ 1, -1, -1]],
|
|
|
|
[[ -1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ -1, -1, 0],[ -1, -1, -1]],
|
|
|
|
[[ 0, -1, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, 0, -1],[ 1, 1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, 1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, 1]],
|
|
|
|
[[ -1, 0, -1],[ -1, -1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, 1],[ -1, -1, 1]],
|
|
|
|
[[ -1, 0, -1],[ -1, 1, -1]],
|
|
|
|
[[ 1, 1, 0],[ 1, 1, 1]],
|
|
|
|
[[ 0, 1, 1],[ 1, 1, 1]],
|
|
|
|
[[ 1, 0, -1],[ 1, -1, -1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ 1, 1, 0],[ 1, 1, -1]]]),
|
2015-05-08 19:44:44 +05:30
|
|
|
'NW': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 2, -1, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 2, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -1, 2],[ 0, -1, 1]],
|
|
|
|
[[ -2, -1, -1],[ 0, -1, 1]],
|
|
|
|
[[ 1, 2, -1],[ 0, -1, 1]],
|
|
|
|
[[ 1, -1, 2],[ 0, -1, 1]],
|
|
|
|
[[ 2, 1, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, -2, -1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 1, 2],[ 0, -1, 1]],
|
|
|
|
[[ -1, 2, 1],[ 0, -1, 1]],
|
|
|
|
[[ -1, 2, 1],[ 0, -1, 1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ -1, -1, -2],[ 0, -1, 1]]]),
|
|
|
|
'Pitsch': \
|
2015-10-09 15:54:17 +05:30
|
|
|
np.array([[[ 1, 0, 1],[ 1, -1, 1]],
|
|
|
|
[[ 1, 1, 0],[ 1, 1, -1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, 1]],
|
|
|
|
[[ 0, 1, -1],[ -1, 1, -1]],
|
|
|
|
[[ -1, 0, 1],[ -1, -1, 1]],
|
|
|
|
[[ 1, -1, 0],[ 1, -1, -1]],
|
|
|
|
[[ 1, 0, -1],[ 1, -1, -1]],
|
|
|
|
[[ -1, 1, 0],[ -1, 1, -1]],
|
|
|
|
[[ 0, -1, 1],[ -1, -1, 1]],
|
|
|
|
[[ 0, 1, 1],[ -1, 1, 1]],
|
|
|
|
[[ 1, 0, 1],[ 1, -1, 1]],
|
2015-06-29 21:32:56 +05:30
|
|
|
[[ 1, 1, 0],[ 1, 1, -1]]]),
|
2015-05-08 19:44:44 +05:30
|
|
|
'Bain': \
|
|
|
|
np.array([[[ 0, 1, 0],[ 0, 1, 1]],
|
|
|
|
[[ 0, 0, 1],[ 1, 0, 1]],
|
2015-05-08 20:15:59 +05:30
|
|
|
[[ 1, 0, 0],[ 1, 1, 0]]]),
|
2015-05-08 19:44:44 +05:30
|
|
|
}
|
2015-06-25 17:30:08 +05:30
|
|
|
myPlane = [float(i) for i in planes[relationModel][variant,me]] # map(float, planes[...]) does not work in python 3
|
2015-06-21 17:35:17 +05:30
|
|
|
myPlane /= np.linalg.norm(myPlane)
|
2015-06-25 17:30:08 +05:30
|
|
|
myNormal = [float(i) for i in normals[relationModel][variant,me]] # map(float, planes[...]) does not work in python 3
|
2015-06-21 17:35:17 +05:30
|
|
|
myNormal /= np.linalg.norm(myNormal)
|
2016-09-02 21:49:01 +05:30
|
|
|
myMatrix = np.array([myNormal,np.cross(myPlane,myNormal),myPlane]).T
|
2015-06-21 17:35:17 +05:30
|
|
|
|
2015-06-25 17:30:08 +05:30
|
|
|
otherPlane = [float(i) for i in planes[relationModel][variant,other]] # map(float, planes[...]) does not work in python 3
|
2015-06-21 17:35:17 +05:30
|
|
|
otherPlane /= np.linalg.norm(otherPlane)
|
2015-06-25 17:30:08 +05:30
|
|
|
otherNormal = [float(i) for i in normals[relationModel][variant,other]] # map(float, planes[...]) does not work in python 3
|
2015-06-21 17:35:17 +05:30
|
|
|
otherNormal /= np.linalg.norm(otherNormal)
|
2016-09-02 21:49:01 +05:30
|
|
|
otherMatrix = np.array([otherNormal,np.cross(otherPlane,otherNormal),otherPlane]).T
|
2015-07-23 03:19:24 +05:30
|
|
|
|
2016-09-02 21:49:01 +05:30
|
|
|
rot=np.dot(otherMatrix,myMatrix.T)
|
2015-06-21 17:35:17 +05:30
|
|
|
|
2016-11-22 01:36:52 +05:30
|
|
|
return Orientation(matrix=np.dot(rot,self.asMatrix()),symmetry=targetSymmetry)
|
2019-02-12 03:41:11 +05:30
|
|
|
|
|
|
|
####################################################################################################
|
2019-02-12 10:48:21 +05:30
|
|
|
# Code below available according to the followin conditions on https://github.com/MarDiehl/3Drotations
|
2019-02-12 03:41:11 +05:30
|
|
|
####################################################################################################
|
2019-02-12 10:48:21 +05:30
|
|
|
# Copyright (c) 2017-2019, Martin Diehl/Max-Planck-Institut für Eisenforschung GmbH
|
2019-02-12 03:41:11 +05:30
|
|
|
# Copyright (c) 2013-2014, Marc De Graef/Carnegie Mellon University
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# - Redistributions of source code must retain the above copyright notice, this list
|
|
|
|
# of conditions and the following disclaimer.
|
|
|
|
# - Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
# list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
# other materials provided with the distribution.
|
|
|
|
# - Neither the names of Marc De Graef, Carnegie Mellon University nor the names
|
|
|
|
# of its contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
|
|
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
####################################################################################################
|
|
|
|
|
|
|
|
def isone(a):
|
|
|
|
return np.isclose(a,1.0,atol=1.0e-15,rtol=0.0)
|
|
|
|
|
|
|
|
def iszero(a):
|
|
|
|
return np.isclose(a,0.0,atol=1.0e-300,rtol=0.0)
|
|
|
|
|
|
|
|
|
|
|
|
def eu2om(eu):
|
|
|
|
"""Euler angles to orientation matrix"""
|
|
|
|
c = np.cos(eu)
|
|
|
|
s = np.sin(eu)
|
|
|
|
|
|
|
|
om = np.array([[+c[0]*c[2]-s[0]*s[2]*c[1], +s[0]*c[2]+c[0]*s[2]*c[1], +s[2]*s[1]],
|
|
|
|
[-c[0]*s[2]-s[0]*c[2]*c[1], -s[0]*s[2]+c[0]*c[2]*c[1], +c[2]*s[1]],
|
|
|
|
[+s[0]*s[1], -c[0]*s[1], +c[1] ]])
|
|
|
|
|
|
|
|
om[np.where(iszero(om))] = 0.0
|
|
|
|
return om
|
|
|
|
|
|
|
|
|
|
|
|
def eu2ax(eu):
|
|
|
|
"""Euler angles to axis angle"""
|
|
|
|
t = np.tan(eu[1]*0.5)
|
|
|
|
sigma = 0.5*(eu[0]+eu[2])
|
|
|
|
delta = 0.5*(eu[0]-eu[2])
|
|
|
|
tau = np.linalg.norm([t,np.sin(sigma)])
|
|
|
|
alpha = np.pi if iszero(np.cos(sigma)) else \
|
|
|
|
2.0*np.arctan(tau/np.cos(sigma))
|
|
|
|
|
|
|
|
if iszero(alpha):
|
|
|
|
ax = np.array([ 0.0, 0.0, 1.0, 0.0 ])
|
|
|
|
else:
|
|
|
|
ax = -P/tau * np.array([ t*np.cos(delta), t*np.sin(delta), np.sin(sigma) ]) # passive axis-angle pair so a minus sign in front
|
|
|
|
ax = np.append(ax,alpha)
|
|
|
|
if alpha < 0.0: ax *= -1.0 # ensure alpha is positive
|
|
|
|
|
|
|
|
return ax
|
|
|
|
|
|
|
|
|
|
|
|
def eu2ro(eu):
|
|
|
|
"""Euler angles to Rodrigues vector"""
|
|
|
|
ro = eu2ax(eu) # convert to axis angle representation
|
|
|
|
if ro[3] >= np.pi: # Differs from original implementation. check convention 5
|
|
|
|
ro[3] = np.inf
|
|
|
|
elif iszero(ro[3]):
|
|
|
|
ro = np.array([ 0.0, 0.0, P, 0.0 ])
|
|
|
|
else:
|
|
|
|
ro[3] = np.tan(ro[3]*0.5)
|
|
|
|
|
|
|
|
return ro
|
|
|
|
|
|
|
|
|
|
|
|
def eu2qu(eu):
|
|
|
|
"""Euler angles to quaternion"""
|
|
|
|
ee = 0.5*eu
|
|
|
|
cPhi = np.cos(ee[1])
|
|
|
|
sPhi = np.sin(ee[1])
|
|
|
|
qu = np.array([ cPhi*np.cos(ee[0]+ee[2]),
|
|
|
|
-P*sPhi*np.cos(ee[0]-ee[2]),
|
|
|
|
-P*sPhi*np.sin(ee[0]-ee[2]),
|
|
|
|
-P*cPhi*np.sin(ee[0]+ee[2]) ])
|
|
|
|
#if qu[0] < 0.0: qu.homomorph() !ToDo: Check with original
|
|
|
|
return qu
|
|
|
|
|
|
|
|
|
|
|
|
def om2eu(om):
|
|
|
|
"""Euler angles to orientation matrix"""
|
|
|
|
if isone(om[2,2]**2):
|
|
|
|
eu = np.array([np.arctan2( om[0,1],om[0,0]), np.pi*0.5*(1-om[2,2]),0.0]) # following the paper, not the reference implementation
|
|
|
|
else:
|
|
|
|
zeta = 1.0/np.sqrt(1.0-om[2,2]**2)
|
|
|
|
eu = np.array([np.arctan2(om[2,0]*zeta,-om[2,1]*zeta),
|
|
|
|
np.arccos(om[2,2]),
|
|
|
|
np.arctan2(om[0,2]*zeta, om[1,2]*zeta)])
|
|
|
|
|
|
|
|
# reduce Euler angles to definition range, i.e a lower limit of 0.0
|
|
|
|
eu = np.where(eu<0, (eu+2.0*np.pi)%np.array([2.0*np.pi,np.pi,2.0*np.pi]),eu)
|
|
|
|
return eu
|
|
|
|
|
|
|
|
|
|
|
|
def ax2om(ax):
|
|
|
|
"""Axis angle to orientation matrix"""
|
|
|
|
c = np.cos(ax[3])
|
|
|
|
s = np.sin(ax[3])
|
|
|
|
omc = 1.0-c
|
|
|
|
om=np.diag(ax[0:3]**2*omc + c)
|
|
|
|
|
|
|
|
for idx in [[0,1,2],[1,2,0],[2,0,1]]:
|
|
|
|
q = omc*ax[idx[0]] * ax[idx[1]]
|
|
|
|
om[idx[0],idx[1]] = q + s*ax[idx[2]]
|
|
|
|
om[idx[1],idx[0]] = q - s*ax[idx[2]]
|
|
|
|
|
|
|
|
return om if P < 0.0 else om.T
|
|
|
|
|
|
|
|
|
|
|
|
def qu2eu(qu):
|
|
|
|
"""Quaternion to Euler angles"""
|
|
|
|
q03 = qu[0]**2+qu[3]**2
|
|
|
|
q12 = qu[1]**2+qu[2]**2
|
|
|
|
chi = np.sqrt(q03*q12)
|
|
|
|
|
|
|
|
if iszero(chi):
|
|
|
|
eu = np.array([np.arctan2(-P*2.0*qu[0]*qu[3],qu[0]**2-qu[3]**2), 0.0, 0.0]) if iszero(q12) else \
|
|
|
|
np.array([np.arctan2(2.0*qu[1]*qu[2],qu[1]**2-qu[2]**2), np.pi, 0.0])
|
|
|
|
else:
|
|
|
|
#chiInv = 1.0/chi ToDo: needed for what?
|
|
|
|
eu = np.array([np.arctan2((-P*qu[0]*qu[2]+qu[1]*qu[3])*chi, (-P*qu[0]*qu[1]-qu[2]*qu[3])*chi ),
|
|
|
|
np.arctan2( 2.0*chi, q03-q12 ),
|
|
|
|
np.arctan2(( P*qu[0]*qu[2]+qu[1]*qu[3])*chi, (-P*qu[0]*qu[1]+qu[2]*qu[3])*chi )])
|
|
|
|
|
|
|
|
# reduce Euler angles to definition range, i.e a lower limit of 0.0
|
|
|
|
eu = np.where(eu<0, (eu+2.0*np.pi)%np.array([2.0*np.pi,np.pi,2.0*np.pi]),eu)
|
|
|
|
return eu
|
|
|
|
|
|
|
|
|
|
|
|
def ax2ho(ax):
|
|
|
|
"""Axis angle to homochoric"""
|
|
|
|
f = (0.75 * ( ax[3] - np.sin(ax[3]) ))**(1.0/3.0)
|
|
|
|
ho = ax[0:3] * f
|
|
|
|
return ho
|
|
|
|
|
|
|
|
|
|
|
|
def ho2ax(ho):
|
|
|
|
"""Homochoric to axis angle"""
|
|
|
|
tfit = np.array([+1.0000000000018852, -0.5000000002194847,
|
|
|
|
-0.024999992127593126, -0.003928701544781374,
|
|
|
|
-0.0008152701535450438, -0.0002009500426119712,
|
|
|
|
-0.00002397986776071756, -0.00008202868926605841,
|
|
|
|
+0.00012448715042090092, -0.0001749114214822577,
|
|
|
|
+0.0001703481934140054, -0.00012062065004116828,
|
|
|
|
+0.000059719705868660826, -0.00001980756723965647,
|
|
|
|
+0.000003953714684212874, -0.00000036555001439719544])
|
|
|
|
# normalize h and store the magnitude
|
|
|
|
hmag_squared = np.sum(ho**2.)
|
|
|
|
if iszero(hmag_squared):
|
|
|
|
ax = np.array([ 0.0, 0.0, 1.0, 0.0 ])
|
|
|
|
else:
|
|
|
|
hm = hmag_squared
|
|
|
|
|
|
|
|
# convert the magnitude to the rotation angle
|
|
|
|
s = tfit[0] + tfit[1] * hmag_squared
|
|
|
|
for i in range(2,16):
|
|
|
|
hm *= hmag_squared
|
|
|
|
s += tfit[i] * hm
|
|
|
|
ax = np.append(ho/np.sqrt(hmag_squared),2.0*np.arccos(s)) # ToDo: Check sanity check in reference implementation
|
|
|
|
|
|
|
|
return ax
|
|
|
|
|
|
|
|
|
|
|
|
def om2ax(om):
|
|
|
|
"""Orientation matrix to axis angle"""
|
|
|
|
ax=np.empty(4)
|
|
|
|
|
|
|
|
# first get the rotation angle
|
|
|
|
t = 0.5*(om.trace() -1.0)
|
|
|
|
ax[3] = np.arccos(np.clip(t,-1.0,1.0))
|
|
|
|
|
|
|
|
if iszero(ax[3]):
|
|
|
|
ax = [ 0.0, 0.0, 1.0, 0.0]
|
|
|
|
else:
|
|
|
|
w,vr = np.linalg.eig(om)
|
|
|
|
# next, find the eigenvalue (1,0j)
|
|
|
|
i = np.where(np.isclose(w,1.0+0.0j))[0][0]
|
|
|
|
ax[0:3] = np.real(vr[0:3,i])
|
|
|
|
diagDelta = np.array([om[1,2]-om[2,1],om[2,0]-om[0,2],om[0,1]-om[1,0]])
|
|
|
|
ax[0:3] = np.where(iszero(diagDelta), ax[0:3],np.abs(ax[0:3])*np.sign(-P*diagDelta))
|
|
|
|
|
|
|
|
return np.array(ax)
|
|
|
|
|
|
|
|
|
|
|
|
def ro2ax(ro):
|
|
|
|
"""Rodrigues vector to axis angle"""
|
|
|
|
ta = ro[3]
|
|
|
|
|
|
|
|
if iszero(ta):
|
|
|
|
ax = [ 0.0, 0.0, 1.0, 0.0 ]
|
|
|
|
elif not np.isfinite(ta):
|
|
|
|
ax = [ ro[0], ro[1], ro[2], np.pi ]
|
|
|
|
else:
|
|
|
|
angle = 2.0*np.arctan(ta)
|
|
|
|
ta = 1.0/np.linalg.norm(ro[0:3])
|
|
|
|
ax = [ ro[0]/ta, ro[1]/ta, ro[2]/ta, angle ]
|
|
|
|
|
|
|
|
return np.array(ax)
|
|
|
|
|
|
|
|
|
|
|
|
def ax2ro(ax):
|
|
|
|
"""Axis angle to Rodrigues vector"""
|
|
|
|
if iszero(ax[3]):
|
|
|
|
ro = [ 0.0, 0.0, P, 0.0 ]
|
|
|
|
else:
|
|
|
|
ro = [ax[0], ax[1], ax[2]]
|
|
|
|
# 180 degree case
|
|
|
|
ro += [np.inf] if np.isclose(ax[3],np.pi,atol=1.0e-15,rtol=0.0) else \
|
|
|
|
[np.tan(ax[3]*0.5)]
|
|
|
|
|
|
|
|
return np.array(ro)
|
|
|
|
|
|
|
|
|
|
|
|
def ax2qu(ax):
|
|
|
|
"""Axis angle to quaternion"""
|
|
|
|
if iszero(ax[3]):
|
|
|
|
qu = np.array([ 1.0, 0.0, 0.0, 0.0 ])
|
|
|
|
else:
|
|
|
|
c = np.cos(ax[3]*0.5)
|
|
|
|
s = np.sin(ax[3]*0.5)
|
|
|
|
qu = np.array([ c, ax[0]*s, ax[1]*s, ax[2]*s ])
|
|
|
|
|
|
|
|
return qu
|
|
|
|
|
|
|
|
|
|
|
|
def ro2ho(ro):
|
|
|
|
"""Rodrigues vector to homochoric"""
|
|
|
|
if iszero(np.sum(ro[0:3]**2.0)):
|
|
|
|
ho = [ 0.0, 0.0, 0.0 ]
|
|
|
|
else:
|
|
|
|
f = 2.0*np.arctan(ro[3]) -np.sin(2.0*np.arctan(ro[3])) if np.isfinite(ro[3]) else np.pi
|
|
|
|
ho = ro[0:3] * (0.75*f)**(1.0/3.0)
|
|
|
|
|
|
|
|
return np.array(ho)
|
|
|
|
|
|
|
|
|
|
|
|
def qu2om(qu):
|
|
|
|
"""Quaternion to orientation matrix"""
|
|
|
|
qq = qu[0]**2-(qu[1]**2 + qu[2]**2 + qu[3]**2)
|
|
|
|
om = np.diag(qq + 2.0*np.array([qu[1],qu[2],qu[3]])**2)
|
|
|
|
|
|
|
|
om[1,0] = 2.0*(qu[2]*qu[1]+qu[0]*qu[3])
|
|
|
|
om[0,1] = 2.0*(qu[1]*qu[2]-qu[0]*qu[3])
|
|
|
|
om[2,1] = 2.0*(qu[3]*qu[2]+qu[0]*qu[1])
|
|
|
|
om[1,2] = 2.0*(qu[2]*qu[3]-qu[0]*qu[1])
|
|
|
|
om[0,2] = 2.0*(qu[1]*qu[3]+qu[0]*qu[2])
|
|
|
|
om[2,0] = 2.0*(qu[3]*qu[1]-qu[0]*qu[2])
|
|
|
|
return om if P > 0.0 else om.T
|
|
|
|
|
|
|
|
|
|
|
|
def om2qu(om):
|
|
|
|
"""Orientation matrix to quaternion"""
|
|
|
|
s = [+om[0,0] +om[1,1] +om[2,2] +1.0,
|
|
|
|
+om[0,0] -om[1,1] -om[2,2] +1.0,
|
|
|
|
-om[0,0] +om[1,1] -om[2,2] +1.0,
|
|
|
|
-om[0,0] -om[1,1] +om[2,2] +1.0]
|
|
|
|
s = np.maximum(np.zeros(4),s)
|
|
|
|
qu = np.sqrt(s)*0.5*np.array([1.0,P,P,P])
|
|
|
|
# verify the signs (q0 always positive)
|
|
|
|
#ToDo: Here I donot understand the original shortcut from paper to implementation
|
|
|
|
|
|
|
|
qu /= np.linalg.norm(qu)
|
|
|
|
if any(isone(abs(qu))): qu[np.where(np.logical_not(isone(qu)))] = 0.0
|
|
|
|
if om[2,1] < om[1,2]: qu[1] *= -1.0
|
|
|
|
if om[0,2] < om[2,0]: qu[2] *= -1.0
|
|
|
|
if om[1,0] < om[0,1]: qu[3] *= -1.0
|
2019-02-21 17:06:27 +05:30
|
|
|
if any(om2ax(om)[0:3]*qu[1:4] < 0.0): print('sign problem',om2ax(om),qu) # something is wrong here
|
2019-02-12 03:41:11 +05:30
|
|
|
return qu
|
|
|
|
|
2019-02-12 04:20:02 +05:30
|
|
|
|
2019-02-12 03:41:11 +05:30
|
|
|
def qu2ax(qu):
|
|
|
|
"""Quaternion to axis angle"""
|
|
|
|
omega = 2.0 * np.arccos(qu[0])
|
|
|
|
if iszero(omega): # return axis as [001] if the angle is zero
|
|
|
|
ax = [ 0.0, 0.0, 1.0, 0.0 ]
|
|
|
|
elif not iszero(qu[0]):
|
|
|
|
s = np.sign(qu[0])/np.sqrt(qu[1]**2+qu[2]**2+qu[3]**2)
|
|
|
|
ax = [ qu[1]*s, qu[2]*s, qu[3]*s, omega ]
|
|
|
|
else:
|
|
|
|
ax = [ qu[1], qu[2], qu[3], np.pi]
|
|
|
|
|
|
|
|
return np.array(ax)
|
|
|
|
|
|
|
|
|
|
|
|
def qu2ro(qu):
|
|
|
|
"""Quaternion to Rodrigues vector"""
|
|
|
|
if iszero(qu[0]):
|
|
|
|
ro = [qu[1], qu[2], qu[3], np.inf]
|
|
|
|
else:
|
|
|
|
s = np.linalg.norm([qu[1],qu[2],qu[3]])
|
|
|
|
ro = [0.0,0.0,P,0.0] if iszero(s) else \
|
|
|
|
[ qu[1]/s, qu[2]/s, qu[3]/s, np.tan(np.arccos(qu[0]))]
|
|
|
|
|
|
|
|
return np.array(ro)
|
|
|
|
|
|
|
|
|
|
|
|
def qu2ho(qu):
|
|
|
|
"""Quaternion to homochoric"""
|
|
|
|
omega = 2.0 * np.arccos(qu[0])
|
|
|
|
|
|
|
|
if iszero(omega):
|
|
|
|
ho = np.array([ 0.0, 0.0, 0.0 ])
|
|
|
|
else:
|
|
|
|
ho = np.array([qu[1], qu[2], qu[3]])
|
|
|
|
f = 0.75 * ( omega - np.sin(omega) )
|
|
|
|
ho = ho/np.linalg.norm(ho) * f**(1./3.)
|
|
|
|
|
|
|
|
return ho
|
|
|
|
|
|
|
|
|
|
|
|
def ho2cu(ho):
|
|
|
|
"""Homochoric to cubochoric"""
|
|
|
|
return Lambert.BallToCube(ho)
|
|
|
|
|
|
|
|
|
|
|
|
def cu2ho(cu):
|
|
|
|
"""Cubochoric to homochoric"""
|
|
|
|
return Lambert.CubeToBall(cu)
|
|
|
|
|
|
|
|
|
|
|
|
def ro2eu(ro):
|
|
|
|
"""Rodrigues vector to orientation matrix"""
|
|
|
|
return om2eu(ro2om(ro))
|
|
|
|
|
|
|
|
|
|
|
|
def eu2ho(eu):
|
|
|
|
"""Euler angles to homochoric"""
|
|
|
|
return ax2ho(eu2ax(eu))
|
|
|
|
|
|
|
|
|
|
|
|
def om2ro(om):
|
|
|
|
"""Orientation matrix to Rodriques vector"""
|
|
|
|
return eu2ro(om2eu(om))
|
|
|
|
|
|
|
|
|
|
|
|
def om2ho(om):
|
|
|
|
"""Orientation matrix to homochoric"""
|
|
|
|
return ax2ho(om2ax(om))
|
|
|
|
|
|
|
|
|
|
|
|
def ax2eu(ax):
|
|
|
|
"""Orientation matrix to Euler angles"""
|
|
|
|
return om2eu(ax2om(ax))
|
|
|
|
|
|
|
|
|
|
|
|
def ro2om(ro):
|
|
|
|
"""Rodgrigues vector to orientation matrix"""
|
|
|
|
return ax2om(ro2ax(ro))
|
|
|
|
|
|
|
|
|
|
|
|
def ro2qu(ro):
|
|
|
|
"""Rodrigues vector to quaternion"""
|
|
|
|
return ax2qu(ro2ax(ro))
|
|
|
|
|
|
|
|
|
|
|
|
def ho2eu(ho):
|
|
|
|
"""Homochoric to Euler angles"""
|
|
|
|
return ax2eu(ho2ax(ho))
|
|
|
|
|
|
|
|
|
|
|
|
def ho2om(ho):
|
|
|
|
"""Homochoric to orientation matrix"""
|
|
|
|
return ax2om(ho2ax(ho))
|
|
|
|
|
|
|
|
|
|
|
|
def ho2ro(ho):
|
|
|
|
"""Axis angle to Rodriques vector"""
|
|
|
|
return ax2ro(ho2ax(ho))
|
|
|
|
|
|
|
|
|
|
|
|
def ho2qu(ho):
|
|
|
|
"""Homochoric to quaternion"""
|
|
|
|
return ax2qu(ho2ax(ho))
|
|
|
|
|
|
|
|
|
|
|
|
def eu2cu(eu):
|
|
|
|
"""Euler angles to cubochoric"""
|
|
|
|
return ho2cu(eu2ho(eu))
|
|
|
|
|
|
|
|
|
|
|
|
def om2cu(om):
|
|
|
|
"""Orientation matrix to cubochoric"""
|
|
|
|
return ho2cu(om2ho(om))
|
|
|
|
|
|
|
|
|
|
|
|
def ax2cu(ax):
|
|
|
|
"""Axis angle to cubochoric"""
|
|
|
|
return ho2cu(ax2ho(ax))
|
|
|
|
|
|
|
|
|
|
|
|
def ro2cu(ro):
|
|
|
|
"""Rodrigues vector to cubochoric"""
|
|
|
|
return ho2cu(ro2ho(ro))
|
|
|
|
|
|
|
|
|
|
|
|
def qu2cu(qu):
|
|
|
|
"""Quaternion to cubochoric"""
|
|
|
|
return ho2cu(qu2ho(qu))
|
|
|
|
|
|
|
|
|
|
|
|
def cu2eu(cu):
|
|
|
|
"""Cubochoric to Euler angles"""
|
|
|
|
return ho2eu(cu2ho(cu))
|
|
|
|
|
|
|
|
|
|
|
|
def cu2om(cu):
|
|
|
|
"""Cubochoric to orientation matrix"""
|
|
|
|
return ho2om(cu2ho(cu))
|
|
|
|
|
|
|
|
|
|
|
|
def cu2ax(cu):
|
|
|
|
"""Cubochoric to axis angle"""
|
|
|
|
return ho2ax(cu2ho(cu))
|
|
|
|
|
|
|
|
|
|
|
|
def cu2ro(cu):
|
|
|
|
"""Cubochoric to Rodrigues vector"""
|
|
|
|
return ho2ro(cu2ho(cu))
|
|
|
|
|
|
|
|
|
|
|
|
def cu2qu(cu):
|
|
|
|
"""Cubochoric to quaternion"""
|
|
|
|
return ho2qu(cu2ho(cu))
|