2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2015-04-03 00:45:09 +05:30
|
|
|
###################################################
|
2015-05-08 19:44:44 +05:30
|
|
|
# NOTE: everything here needs to be a np array #
|
2015-04-03 00:45:09 +05:30
|
|
|
###################################################
|
|
|
|
|
2015-12-18 02:56:59 +05:30
|
|
|
import math,os
|
2015-05-08 19:44:44 +05:30
|
|
|
import numpy as np
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
# ******************************************************************************************
|
2013-11-26 00:34:39 +05:30
|
|
|
class Rodrigues:
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2015-05-08 19:44:44 +05:30
|
|
|
def __init__(self, vector = np.zeros(3)):
|
2013-11-26 00:34:39 +05:30
|
|
|
self.vector = vector
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def asQuaternion(self):
|
2015-05-08 19:44:44 +05:30
|
|
|
norm = np.linalg.norm(self.vector)
|
|
|
|
halfAngle = np.arctan(norm)
|
|
|
|
return Quaternion(np.cos(halfAngle),np.sin(halfAngle)*self.vector/norm)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def asAngleAxis(self):
|
2015-05-08 19:44:44 +05:30
|
|
|
norm = np.linalg.norm(self.vector)
|
|
|
|
halfAngle = np.arctan(norm)
|
2013-11-26 00:34:39 +05:30
|
|
|
return (2.0*halfAngle,self.vector/norm)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************************
|
|
|
|
class Quaternion:
|
2018-09-11 05:40:55 +05:30
|
|
|
"""
|
2016-10-31 20:10:58 +05:30
|
|
|
Orientation represented as unit quaternion.
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2018-09-11 05:40:55 +05:30
|
|
|
All methods and naming conventions based on http://www.euclideanspace.com/maths/algebra/realNormedAlgebra/quaternions.
|
2016-03-04 23:20:13 +05:30
|
|
|
|
2016-10-31 20:10:58 +05:30
|
|
|
w is the real part, (x, y, z) are the imaginary parts.
|
2018-09-11 05:40:55 +05:30
|
|
|
Representation of rotation is in ACTIVE form!
|
|
|
|
(Derived directly or through angleAxis, Euler angles, or active matrix)
|
|
|
|
Vector "a" (defined in coordinate system "A") is actively rotated to new coordinates "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,
|
|
|
|
quatArray = [1.0,0.0,0.0,0.0]):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Initializes to identity if not given"""
|
2013-11-26 00:34:39 +05:30
|
|
|
self.w, \
|
|
|
|
self.x, \
|
|
|
|
self.y, \
|
|
|
|
self.z = quatArray
|
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"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return iter([self.w,self.x,self.y,self.z])
|
|
|
|
|
2011-11-03 17:49:26 +05:30
|
|
|
def __copy__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Create copy"""
|
2013-11-26 00:34:39 +05:30
|
|
|
Q = Quaternion([self.w,self.x,self.y,self.z])
|
|
|
|
return Q
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
copy = __copy__
|
|
|
|
|
|
|
|
def __repr__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Readbable string"""
|
2015-08-24 19:09:09 +05:30
|
|
|
return 'Quaternion(real=%+.6f, imag=<%+.6f, %+.6f, %+.6f>)' % \
|
2013-11-26 00:34:39 +05:30
|
|
|
(self.w, self.x, self.y, self.z)
|
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"""
|
2014-08-22 21:15:03 +05:30
|
|
|
omega = math.acos(self.w)
|
|
|
|
vRescale = math.sin(exponent*omega)/math.sin(omega)
|
|
|
|
Q = Quaternion()
|
2015-06-21 17:35:17 +05:30
|
|
|
Q.w = math.cos(exponent*omega)
|
2014-08-22 21:15:03 +05:30
|
|
|
Q.x = self.x * vRescale
|
|
|
|
Q.y = self.y * vRescale
|
|
|
|
Q.z = self.z * vRescale
|
|
|
|
return Q
|
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"""
|
2015-06-21 17:35:17 +05:30
|
|
|
omega = math.acos(self.w)
|
2014-08-22 21:15:03 +05:30
|
|
|
vRescale = math.sin(exponent*omega)/math.sin(omega)
|
2015-06-21 17:35:17 +05:30
|
|
|
self.w = np.cos(exponent*omega)
|
2014-08-22 21:15:03 +05:30
|
|
|
self.x *= vRescale
|
|
|
|
self.y *= vRescale
|
|
|
|
self.z *= vRescale
|
|
|
|
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"""
|
2013-12-09 21:19:57 +05:30
|
|
|
try: # quaternion
|
2015-06-21 17:35:17 +05:30
|
|
|
Aw = self.w
|
2013-11-26 00:34:39 +05:30
|
|
|
Ax = self.x
|
|
|
|
Ay = self.y
|
|
|
|
Az = self.z
|
2015-06-21 17:35:17 +05:30
|
|
|
Bw = other.w
|
2013-11-26 00:34:39 +05:30
|
|
|
Bx = other.x
|
|
|
|
By = other.y
|
|
|
|
Bz = other.z
|
|
|
|
Q = Quaternion()
|
2015-06-21 17:35:17 +05:30
|
|
|
Q.w = - Ax * Bx - Ay * By - Az * Bz + Aw * Bw
|
2013-12-09 21:19:57 +05:30
|
|
|
Q.x = + Ax * Bw + Ay * Bz - Az * By + Aw * Bx
|
2013-11-26 00:34:39 +05:30
|
|
|
Q.y = - Ax * Bz + Ay * Bw + Az * Bx + Aw * By
|
|
|
|
Q.z = + Ax * By - Ay * Bx + Az * Bw + Aw * Bz
|
|
|
|
return Q
|
2013-12-09 21:19:57 +05:30
|
|
|
except: pass
|
|
|
|
try: # vector (perform active rotation, i.e. q*v*q.conjugated)
|
2013-11-26 00:34:39 +05:30
|
|
|
w = self.w
|
|
|
|
x = self.x
|
|
|
|
y = self.y
|
|
|
|
z = self.z
|
|
|
|
Vx = other[0]
|
|
|
|
Vy = other[1]
|
|
|
|
Vz = other[2]
|
|
|
|
|
2015-05-08 19:44:44 +05:30
|
|
|
return np.array([\
|
2013-11-26 00:34:39 +05:30
|
|
|
w * w * Vx + 2 * y * w * Vz - 2 * z * w * Vy + \
|
|
|
|
x * x * Vx + 2 * y * x * Vy + 2 * z * x * Vz - \
|
|
|
|
z * z * Vx - y * y * Vx,
|
|
|
|
2 * x * y * Vx + y * y * Vy + 2 * z * y * Vz + \
|
|
|
|
2 * w * z * Vx - z * z * Vy + w * w * Vy - \
|
|
|
|
2 * x * w * Vz - x * x * Vy,
|
|
|
|
2 * x * z * Vx + 2 * y * z * Vy + \
|
|
|
|
z * z * Vz - 2 * w * y * Vx - y * y * Vz + \
|
|
|
|
2 * w * x * Vy - x * x * Vz + w * w * Vz ])
|
2013-12-09 21:19:57 +05:30
|
|
|
except: pass
|
|
|
|
try: # scalar
|
2013-11-26 00:34:39 +05:30
|
|
|
Q = self.copy()
|
|
|
|
Q.w *= other
|
|
|
|
Q.x *= other
|
|
|
|
Q.y *= other
|
|
|
|
Q.z *= other
|
|
|
|
return Q
|
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"""
|
2014-08-22 21:15:03 +05:30
|
|
|
try: # Quaternion
|
2016-11-24 20:07:57 +05:30
|
|
|
Aw = self.w
|
2013-11-26 00:34:39 +05:30
|
|
|
Ax = self.x
|
|
|
|
Ay = self.y
|
|
|
|
Az = self.z
|
2016-11-24 20:07:57 +05:30
|
|
|
Bw = other.w
|
2013-11-26 00:34:39 +05:30
|
|
|
Bx = other.x
|
|
|
|
By = other.y
|
|
|
|
Bz = other.z
|
2016-11-24 20:07:57 +05:30
|
|
|
self.w = - Ax * Bx - Ay * By - Az * Bz + Aw * Bw
|
|
|
|
self.x = + Ax * Bw + Ay * Bz - Az * By + Aw * Bx
|
|
|
|
self.y = - Ax * Bz + Ay * Bw + Az * Bx + Aw * By
|
|
|
|
self.z = + Ax * By - Ay * Bx + Az * Bw + Aw * Bz
|
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)):
|
2013-11-26 00:34:39 +05:30
|
|
|
w = self.w / other
|
|
|
|
x = self.x / other
|
|
|
|
y = self.y / other
|
|
|
|
z = self.z / other
|
|
|
|
return self.__class__([w,x,y,z])
|
|
|
|
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)):
|
2013-11-26 00:34:39 +05:30
|
|
|
self.w /= other
|
|
|
|
self.x /= other
|
|
|
|
self.y /= other
|
|
|
|
self.z /= other
|
|
|
|
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):
|
|
|
|
w = self.w + other.w
|
|
|
|
x = self.x + other.x
|
|
|
|
y = self.y + other.y
|
|
|
|
z = self.z + other.z
|
|
|
|
return self.__class__([w,x,y,z])
|
|
|
|
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):
|
|
|
|
self.w += other.w
|
|
|
|
self.x += other.x
|
|
|
|
self.y += other.y
|
|
|
|
self.z += other.z
|
|
|
|
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):
|
|
|
|
Q = self.copy()
|
|
|
|
Q.w -= other.w
|
|
|
|
Q.x -= other.x
|
|
|
|
Q.y -= other.y
|
|
|
|
Q.z -= other.z
|
|
|
|
return Q
|
|
|
|
else:
|
|
|
|
return self.copy()
|
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):
|
|
|
|
self.w -= other.w
|
|
|
|
self.x -= other.x
|
|
|
|
self.y -= other.y
|
|
|
|
self.z -= other.z
|
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __neg__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Additive inverse"""
|
2013-11-26 00:34:39 +05:30
|
|
|
self.w = -self.w
|
|
|
|
self.x = -self.x
|
|
|
|
self.y = -self.y
|
|
|
|
self.z = -self.z
|
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __abs__(self):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Norm"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return math.sqrt(self.w ** 2 + \
|
|
|
|
self.x ** 2 + \
|
|
|
|
self.y ** 2 + \
|
|
|
|
self.z ** 2)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
magnitude = __abs__
|
|
|
|
|
|
|
|
def __eq__(self,other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Equal at e-8 precision"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return (abs(self.w-other.w) < 1e-8 and \
|
|
|
|
abs(self.x-other.x) < 1e-8 and \
|
|
|
|
abs(self.y-other.y) < 1e-8 and \
|
|
|
|
abs(self.z-other.z) < 1e-8) \
|
|
|
|
or \
|
|
|
|
(abs(-self.w-other.w) < 1e-8 and \
|
|
|
|
abs(-self.x-other.x) < 1e-8 and \
|
|
|
|
abs(-self.y-other.y) < 1e-8 and \
|
2015-04-03 00:45:09 +05:30
|
|
|
abs(-self.z-other.z) < 1e-8)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __ne__(self,other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Not equal at e-8 precision"""
|
2015-07-29 01:40:27 +05:30
|
|
|
return not self.__eq__(self,other)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def __cmp__(self,other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Linear ordering"""
|
|
|
|
return (self.Rodrigues()>other.Rodrigues()) - (self.Rodrigues()<other.Rodrigues())
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def magnitude_squared(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.w ** 2 + \
|
|
|
|
self.x ** 2 + \
|
|
|
|
self.y ** 2 + \
|
2015-04-03 00:45:09 +05:30
|
|
|
self.z ** 2
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def identity(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
self.w = 1.
|
|
|
|
self.x = 0.
|
|
|
|
self.y = 0.
|
|
|
|
self.z = 0.
|
|
|
|
return self
|
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:
|
|
|
|
self /= d
|
|
|
|
return self
|
2011-11-03 17:49:26 +05:30
|
|
|
|
|
|
|
def conjugate(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
self.x = -self.x
|
|
|
|
self.y = -self.y
|
|
|
|
self.z = -self.z
|
|
|
|
return self
|
|
|
|
|
|
|
|
def inverse(self):
|
|
|
|
d = self.magnitude()
|
|
|
|
if d > 0.0:
|
|
|
|
self.conjugate()
|
|
|
|
self /= d
|
|
|
|
return self
|
|
|
|
|
|
|
|
def homomorph(self):
|
|
|
|
if self.w < 0.0:
|
|
|
|
self.w = -self.w
|
2011-11-03 17:49:26 +05:30
|
|
|
self.x = -self.x
|
|
|
|
self.y = -self.y
|
|
|
|
self.z = -self.z
|
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
|
|
|
|
|
|
|
def inversed(self):
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.copy().inverse()
|
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):
|
|
|
|
return [i for i in self]
|
|
|
|
|
2014-08-22 21:15:03 +05:30
|
|
|
def asM(self): # to find Averaging Quaternions (see F. Landis Markley et al.)
|
2015-05-08 19:44:44 +05:30
|
|
|
return np.outer([i for i in self],[i for i in self])
|
2014-08-22 21:15:03 +05:30
|
|
|
|
2013-11-26 00:34:39 +05:30
|
|
|
def asMatrix(self):
|
2018-09-11 05:40:55 +05:30
|
|
|
return np.array(
|
|
|
|
[[1.0-2.0*(self.y*self.y+self.z*self.z), 2.0*(self.x*self.y-self.z*self.w), 2.0*(self.x*self.z+self.y*self.w)],
|
|
|
|
[ 2.0*(self.x*self.y+self.z*self.w), 1.0-2.0*(self.x*self.x+self.z*self.z), 2.0*(self.y*self.z-self.x*self.w)],
|
|
|
|
[ 2.0*(self.x*self.z-self.y*self.w), 2.0*(self.x*self.w+self.y*self.z), 1.0-2.0*(self.x*self.x+self.y*self.y)]])
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
def asAngleAxis(self,
|
|
|
|
degrees = False):
|
2013-11-26 00:34:39 +05:30
|
|
|
if self.w > 1:
|
|
|
|
self.normalize()
|
2015-03-06 19:24:30 +05:30
|
|
|
|
|
|
|
s = math.sqrt(1. - self.w**2)
|
|
|
|
x = 2*self.w**2 - 1.
|
|
|
|
y = 2*self.w * s
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2015-03-06 19:24:30 +05:30
|
|
|
angle = math.atan2(y,x)
|
2015-08-24 19:09:09 +05:30
|
|
|
if angle < 0.0:
|
|
|
|
angle *= -1.
|
|
|
|
s *= -1.
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
return (np.degrees(angle) if degrees else angle,
|
|
|
|
np.array([1.0, 0.0, 0.0] if np.abs(angle) < 1e-6 else [self.x / s, self.y / s, self.z / s]))
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
def asRodrigues(self):
|
2015-08-24 19:09:09 +05:30
|
|
|
return np.inf*np.ones(3) if self.w == 0.0 else np.array([self.x, self.y, self.z])/self.w
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
def asEulers(self,
|
2018-09-11 05:40:55 +05:30
|
|
|
type = "bunge",
|
|
|
|
degrees = False,
|
|
|
|
standardRange = False):
|
|
|
|
"""
|
|
|
|
Orientation as Bunge-Euler angles.
|
|
|
|
|
|
|
|
Conversion of ACTIVE rotation to Euler angles taken from:
|
|
|
|
Melcher, A.; Unser, A.; Reichhardt, M.; Nestler, B.; Poetschke, M.; Selzer, M.
|
|
|
|
Conversion of EBSD data by a quaternion based algorithm to be used for grain structure simulations
|
|
|
|
Technische Mechanik 30 (2010) pp 401--413.
|
|
|
|
"""
|
|
|
|
angles = [0.0,0.0,0.0]
|
|
|
|
|
|
|
|
if type.lower() == 'bunge' or type.lower() == 'zxz':
|
|
|
|
if abs(self.x) < 1e-4 and abs(self.y) < 1e-4:
|
|
|
|
x = self.w**2 - self.z**2
|
|
|
|
y = 2.*self.w*self.z
|
|
|
|
angles[0] = math.atan2(y,x)
|
|
|
|
elif abs(self.w) < 1e-4 and abs(self.z) < 1e-4:
|
|
|
|
x = self.x**2 - self.y**2
|
|
|
|
y = 2.*self.x*self.y
|
|
|
|
angles[0] = math.atan2(y,x)
|
|
|
|
angles[1] = math.pi
|
|
|
|
else:
|
|
|
|
chi = math.sqrt((self.w**2 + self.z**2)*(self.x**2 + self.y**2))
|
|
|
|
|
|
|
|
x = (self.w * self.x - self.y * self.z)/2./chi
|
|
|
|
y = (self.w * self.y + self.x * self.z)/2./chi
|
|
|
|
angles[0] = math.atan2(y,x)
|
|
|
|
|
|
|
|
x = self.w**2 + self.z**2 - (self.x**2 + self.y**2)
|
|
|
|
y = 2.*chi
|
|
|
|
angles[1] = math.atan2(y,x)
|
|
|
|
|
|
|
|
x = (self.w * self.x + self.y * self.z)/2./chi
|
|
|
|
y = (self.z * self.x - self.y * self.w)/2./chi
|
|
|
|
angles[2] = math.atan2(y,x)
|
|
|
|
|
|
|
|
if standardRange:
|
|
|
|
angles[0] %= 2*math.pi
|
|
|
|
if angles[1] < 0.0:
|
|
|
|
angles[1] += math.pi
|
|
|
|
angles[2] *= -1.0
|
|
|
|
angles[2] %= 2*math.pi
|
|
|
|
|
|
|
|
return np.degrees(angles) if degrees else angles
|
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):
|
2016-03-04 23:20:13 +05:30
|
|
|
if randomSeed is None:
|
2015-08-24 19:09:09 +05:30
|
|
|
randomSeed = int(os.urandom(4).encode('hex'), 16)
|
2015-12-18 02:56:59 +05:30
|
|
|
np.random.seed(randomSeed)
|
|
|
|
r = np.random.random(3)
|
|
|
|
w = math.cos(2.0*math.pi*r[0])*math.sqrt(r[2])
|
|
|
|
x = math.sin(2.0*math.pi*r[1])*math.sqrt(1.0-r[2])
|
|
|
|
y = math.cos(2.0*math.pi*r[1])*math.sqrt(1.0-r[2])
|
|
|
|
z = math.sin(2.0*math.pi*r[0])*math.sqrt(r[2])
|
2015-08-24 19:09:09 +05:30
|
|
|
return cls([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)
|
|
|
|
halfangle = math.atan(np.linalg.norm(rodrigues))
|
|
|
|
c = math.cos(halfangle)
|
|
|
|
w = c
|
2018-09-11 05:40:55 +05:30
|
|
|
x,y,z = c*rodrigues
|
2015-08-24 19:09:09 +05:30
|
|
|
return cls([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
|
2016-08-01 05:03:26 +05:30
|
|
|
def fromAngleAxis(cls,
|
|
|
|
angle,
|
|
|
|
axis,
|
|
|
|
degrees = False):
|
2015-08-24 19:09:09 +05:30
|
|
|
if not isinstance(axis, np.ndarray): axis = np.array(axis,dtype='d')
|
|
|
|
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)
|
|
|
|
w = math.cos(0.5 * angle)
|
2015-08-24 19:09:09 +05:30
|
|
|
x = axis[0] * s
|
|
|
|
y = axis[1] * s
|
|
|
|
z = axis[2] * s
|
|
|
|
return cls([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
|
2016-08-01 05:03:26 +05:30
|
|
|
def fromEulers(cls,
|
|
|
|
eulers,
|
2018-09-11 05:40:55 +05:30
|
|
|
type = 'Bunge',
|
2016-08-01 05:03:26 +05:30
|
|
|
degrees = False):
|
|
|
|
if not isinstance(eulers, np.ndarray): eulers = np.array(eulers,dtype='d')
|
|
|
|
eulers = np.radians(eulers) if degrees else eulers
|
2015-06-21 17:35:17 +05:30
|
|
|
|
2018-09-11 05:40:55 +05:30
|
|
|
c = np.cos(0.5 * eulers)
|
|
|
|
s = np.sin(0.5 * eulers)
|
2011-11-03 17:49:26 +05:30
|
|
|
|
2018-09-11 05:40:55 +05:30
|
|
|
if type.lower() == 'bunge' or type.lower() == 'zxz':
|
|
|
|
w = c[0] * c[1] * c[2] - s[0] * c[1] * s[2]
|
|
|
|
x = c[0] * s[1] * c[2] + s[0] * s[1] * s[2]
|
|
|
|
y = - c[0] * s[1] * s[2] + s[0] * s[1] * c[2]
|
|
|
|
z = c[0] * c[1] * s[2] + s[0] * c[1] * c[2]
|
|
|
|
else:
|
|
|
|
w = c[0] * c[1] * c[2] - s[0] * s[1] * s[2]
|
|
|
|
x = s[0] * s[1] * c[2] + c[0] * c[1] * s[2]
|
|
|
|
y = s[0] * c[1] * c[2] + c[0] * s[1] * s[2]
|
|
|
|
z = c[0] * s[1] * c[2] - s[0] * c[1] * s[2]
|
2015-08-24 19:09:09 +05:30
|
|
|
return cls([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-09-11 05:40:55 +05:30
|
|
|
tr = np.trace(m)
|
|
|
|
if tr > 1e-8:
|
|
|
|
s = math.sqrt(tr + 1.0)*2.0
|
|
|
|
|
|
|
|
return cls(
|
|
|
|
[ s*0.25,
|
|
|
|
(m[2,1] - m[1,2])/s,
|
|
|
|
(m[0,2] - m[2,0])/s,
|
|
|
|
(m[1,0] - m[0,1])/s,
|
|
|
|
])
|
|
|
|
|
|
|
|
elif m[0,0] > m[1,1] and m[0,0] > m[2,2]:
|
|
|
|
t = m[0,0] - m[1,1] - m[2,2] + 1.0
|
|
|
|
s = 2.0*math.sqrt(t)
|
|
|
|
|
|
|
|
return cls(
|
|
|
|
[ (m[2,1] - m[1,2])/s,
|
|
|
|
s*0.25,
|
|
|
|
(m[0,1] + m[1,0])/s,
|
|
|
|
(m[2,0] + m[0,2])/s,
|
|
|
|
])
|
|
|
|
|
|
|
|
elif m[1,1] > m[2,2]:
|
|
|
|
t = -m[0,0] + m[1,1] - m[2,2] + 1.0
|
|
|
|
s = 2.0*math.sqrt(t)
|
|
|
|
|
|
|
|
return cls(
|
|
|
|
[ (m[0,2] - m[2,0])/s,
|
|
|
|
(m[0,1] + m[1,0])/s,
|
|
|
|
s*0.25,
|
|
|
|
(m[1,2] + m[2,1])/s,
|
|
|
|
])
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2018-09-11 05:40:55 +05:30
|
|
|
else:
|
|
|
|
t = -m[0,0] - m[1,1] + m[2,2] + 1.0
|
|
|
|
s = 2.0*math.sqrt(t)
|
2015-04-03 00:45:09 +05:30
|
|
|
|
2018-09-11 05:40:55 +05:30
|
|
|
return cls(
|
|
|
|
[ (m[1,0] - m[0,1])/s,
|
|
|
|
(m[2,0] + m[0,2])/s,
|
|
|
|
(m[1,2] + m[2,1])/s,
|
|
|
|
s*0.25,
|
|
|
|
])
|
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()
|
|
|
|
|
|
|
|
costheta = q1.w * q2.w + q1.x * q2.x + q1.y * q2.y + q1.z * q2.z
|
|
|
|
if costheta < 0.:
|
|
|
|
costheta = -costheta
|
|
|
|
q1 = q1.conjugated()
|
|
|
|
elif costheta > 1:
|
|
|
|
costheta = 1
|
|
|
|
|
|
|
|
theta = math.acos(costheta)
|
|
|
|
if abs(theta) < 0.01:
|
|
|
|
Q.w = q2.w
|
|
|
|
Q.x = q2.x
|
|
|
|
Q.y = q2.y
|
|
|
|
Q.z = q2.z
|
|
|
|
return Q
|
|
|
|
|
|
|
|
sintheta = math.sqrt(1.0 - costheta * costheta)
|
|
|
|
if abs(sintheta) < 0.01:
|
|
|
|
Q.w = (q1.w + q2.w) * 0.5
|
|
|
|
Q.x = (q1.x + q2.x) * 0.5
|
|
|
|
Q.y = (q1.y + q2.y) * 0.5
|
|
|
|
Q.z = (q1.z + q2.z) * 0.5
|
|
|
|
return Q
|
|
|
|
|
|
|
|
ratio1 = math.sin((1 - t) * theta) / sintheta
|
|
|
|
ratio2 = math.sin(t * theta) / sintheta
|
|
|
|
|
|
|
|
Q.w = q1.w * ratio1 + q2.w * ratio2
|
|
|
|
Q.x = q1.x * ratio1 + q2.x * ratio2
|
|
|
|
Q.y = q1.y * ratio1 + q2.y * ratio2
|
|
|
|
Q.z = q1.z * ratio1 + q2.z * ratio2
|
|
|
|
return Q
|
2013-11-26 00:34:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************************
|
|
|
|
class Symmetry:
|
|
|
|
|
|
|
|
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-10-25 10:21:40 +05:30
|
|
|
"""Lattice with given symmetry, defaults to 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):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Readbable string"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return '%s' % (self.lattice)
|
|
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Equal"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return self.lattice == other.lattice
|
|
|
|
|
|
|
|
def __neq__(self, other):
|
2016-10-25 10:21:40 +05:30
|
|
|
"""Not equal"""
|
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"""
|
|
|
|
myOrder = Symmetry.lattices.index(self.lattice)
|
|
|
|
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,
|
|
|
|
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."""
|
2015-11-14 07:16:44 +05:30
|
|
|
return [quaternion*q 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."""
|
2015-08-24 19:09:09 +05:30
|
|
|
if isinstance(R, Quaternion): R = R.asRodrigues() # translate accidentially passed quaternion
|
2016-03-04 23:20:13 +05:30
|
|
|
# fundamental zone in Rodrigues space is point symmetric around origin
|
|
|
|
R = abs(R)
|
2013-11-26 00:34:39 +05:30
|
|
|
if self.lattice == 'cubic':
|
|
|
|
return math.sqrt(2.0)-1.0 >= R[0] \
|
|
|
|
and math.sqrt(2.0)-1.0 >= R[1] \
|
|
|
|
and math.sqrt(2.0)-1.0 >= R[2] \
|
|
|
|
and 1.0 >= R[0] + R[1] + R[2]
|
|
|
|
elif self.lattice == 'hexagonal':
|
|
|
|
return 1.0 >= R[0] and 1.0 >= R[1] and 1.0 >= R[2] \
|
|
|
|
and 2.0 >= math.sqrt(3)*R[0] + R[1] \
|
|
|
|
and 2.0 >= math.sqrt(3)*R[1] + R[0] \
|
|
|
|
and 2.0 >= math.sqrt(3) + R[2]
|
|
|
|
elif self.lattice == 'tetragonal':
|
|
|
|
return 1.0 >= R[0] and 1.0 >= R[1] \
|
|
|
|
and math.sqrt(2.0) >= R[0] + R[1] \
|
|
|
|
and math.sqrt(2.0) >= R[2] + 1.0
|
2015-04-03 00:45:09 +05:30
|
|
|
elif self.lattice == 'orthorhombic':
|
2013-11-26 00:34:39 +05:30
|
|
|
return 1.0 >= R[0] and 1.0 >= R[1] and 1.0 >= R[2]
|
|
|
|
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.
|
2016-03-04 23:20:13 +05:30
|
|
|
"""
|
2015-08-24 19:09:09 +05:30
|
|
|
# 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.)]).transpose()), # direction of blue
|
|
|
|
# 'hexagonal' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
# [1.,0.,0.], # direction of green
|
2015-05-28 00:26:18 +05:30
|
|
|
# [np.sqrt(3.),1.,0.]/np.sqrt(4.)]).transpose()), # direction of blue
|
2015-08-24 19:09:09 +05:30
|
|
|
# 'tetragonal' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
# [1.,0.,0.], # direction of green
|
|
|
|
# [1.,1.,0.]/np.sqrt(2.)]).transpose()), # direction of blue
|
|
|
|
# 'orthorhombic' : np.linalg.inv(np.array([[0.,0.,1.], # direction of red
|
|
|
|
# [1.,0.,0.], # direction of green
|
|
|
|
# [0.,1.,0.]]).transpose()), # direction of blue
|
2013-11-26 00:34:39 +05:30
|
|
|
# }
|
2015-10-23 02:45:15 +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
|
|
|
|
2016-11-16 16:58:38 +05:30
|
|
|
v = np.array(vector,dtype = float)
|
|
|
|
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
|
|
|
|
rgb = np.minimum(np.ones(3,'d'),rgb) # limit to maximum intensity
|
|
|
|
rgb /= max(rgb) # normalize to (HS)V = 1
|
2013-11-26 00:34:39 +05:30
|
|
|
else:
|
2015-05-08 19:44:44 +05:30
|
|
|
rgb = np.zeros(3,'d')
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************************
|
|
|
|
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-09-11 05:40:55 +05:30
|
|
|
self.quaternion = Quaternion.fromEulers(Eulers,type='bunge',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()
|
2016-08-01 05:03:26 +05:30
|
|
|
elif isinstance(quaternion, np.ndarray) and quaternion.shape == (4,): # based on given quaternion-like array
|
2013-11-26 00:34:39 +05:30
|
|
|
self.quaternion = Quaternion(quaternion).homomorphed()
|
|
|
|
|
|
|
|
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"""
|
2013-11-26 00:34:39 +05:30
|
|
|
return 'Symmetry: %s\n' % (self.symmetry) + \
|
|
|
|
'Quaternion: %s\n' % (self.quaternion) + \
|
|
|
|
'Matrix:\n%s\n' % ( '\n'.join(['\t'.join(map(str,self.asMatrix()[i,:])) for i in range(3)]) ) + \
|
2018-09-11 05:40:55 +05:30
|
|
|
'Bunge Eulers / deg: %s' % ('\t'.join(map(str,self.asEulers('bunge',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,
|
2018-09-11 05:40:55 +05:30
|
|
|
type = 'bunge',
|
2015-09-10 04:07:18 +05:30
|
|
|
degrees = False,
|
2018-09-11 05:40:55 +05:30
|
|
|
standardRange = False):
|
|
|
|
return self.quaternion.asEulers(type, degrees, standardRange)
|
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,
|
|
|
|
degrees = False):
|
|
|
|
return self.quaternion.asAngleAxis(degrees)
|
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
|
|
|
"""
|
2015-08-24 19:09:09 +05:30
|
|
|
if self.symmetry != other.symmetry: raise TypeError('disorientation between different symmetry classes not supported yet.')
|
2013-11-26 00:34:39 +05:30
|
|
|
|
2015-08-24 19:09:09 +05:30
|
|
|
misQ = self.quaternion.conjugated()*other.quaternion
|
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):
|
2015-08-24 19:09:09 +05:30
|
|
|
theQ = sA.conjugated()*misQ*sB
|
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),
|
2016-03-04 23:20:13 +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
|
|
|
|
pole = q.conjugated()*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:
|
2015-08-24 19:09:09 +05:30
|
|
|
pole = self.quaternion.conjugated()*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):
|
2015-08-24 19:09:09 +05:30
|
|
|
pole = q.conjugated()*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
|
|
|
|
2015-11-14 10:06:46 +05:30
|
|
|
return Orientation(quaternion = Quaternion(quatArray = np.real(vec.T[eig.argmax()])),
|
|
|
|
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
|
|
|
|
2016-07-21 13:36:02 +05:30
|
|
|
# KS from S. Morito et al./Journal of Alloys and Compounds 5775 (2013) S587-S592
|
|
|
|
# for KS rotation matrices also check K. Kitahara et al./Acta Materialia 54 (2006) 1279-1288
|
2015-06-29 21:32:56 +05:30
|
|
|
# GT from Y. He et al./Journal of Applied Crystallography (2006). 39, 72-81
|
|
|
|
# GT' from Y. He et al./Journal of Applied Crystallography (2006). 39, 72-81
|
|
|
|
# NW from H. Kitahara et al./Materials Characterization 54 (2005) 378-386
|
|
|
|
# Pitsch from Y. He et al./Acta Materialia 53 (2005) 1179-1190
|
2015-07-23 03:19:24 +05:30
|
|
|
# Bain from Y. He et al./Journal of Applied Crystallography (2006). 39, 72-81
|
2015-05-08 19:44:44 +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)
|