2020-02-21 03:59:12 +05:30
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
|
|
|
|
class Symmetry:
|
|
|
|
"""
|
2020-06-30 16:25:08 +05:30
|
|
|
Symmetry-related operations for crystal systems.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
References
|
|
|
|
----------
|
|
|
|
https://en.wikipedia.org/wiki/Crystal_system
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2020-06-30 16:25:08 +05:30
|
|
|
crystal_systems = [None,'orthorhombic','tetragonal','hexagonal','cubic']
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-06-30 16:25:08 +05:30
|
|
|
def __init__(self, system = None):
|
2020-02-21 03:59:12 +05:30
|
|
|
"""
|
|
|
|
Symmetry Definition.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
2020-06-30 16:25:08 +05:30
|
|
|
system : {None,'orthorhombic','tetragonal','hexagonal','cubic'}, optional
|
|
|
|
Name of the crystal system. Defaults to 'None'.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
"""
|
2020-06-30 16:25:08 +05:30
|
|
|
if system is not None and system.lower() not in self.crystal_systems:
|
|
|
|
raise KeyError(f'Crystal system "{system}" is unknown')
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-06-30 16:25:08 +05:30
|
|
|
self.system = system.lower() if isinstance(system,str) else system
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
|
|
|
|
def __copy__(self):
|
|
|
|
"""Copy."""
|
2020-06-30 16:25:08 +05:30
|
|
|
return self.__class__(self.system)
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
copy = __copy__
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
"""Readable string."""
|
2020-06-30 16:25:08 +05:30
|
|
|
return '{}'.format(self.system)
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
"""
|
|
|
|
Equal to other.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
other : Symmetry
|
|
|
|
Symmetry to check for equality.
|
|
|
|
|
|
|
|
"""
|
2020-06-30 16:25:08 +05:30
|
|
|
return self.system == other.system
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
def __neq__(self, other):
|
|
|
|
"""
|
|
|
|
Not Equal to other.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
other : Symmetry
|
|
|
|
Symmetry to check for inequality.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return not self.__eq__(other)
|
|
|
|
|
|
|
|
def __cmp__(self,other):
|
|
|
|
"""
|
|
|
|
Linear ordering.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
other : Symmetry
|
|
|
|
Symmetry to check for for order.
|
|
|
|
|
|
|
|
"""
|
2020-06-30 16:25:08 +05:30
|
|
|
myOrder = self.crystal_systems.index(self.system)
|
|
|
|
otherOrder = self.crystal_systems.index(other.system)
|
2020-02-21 03:59:12 +05:30
|
|
|
return (myOrder > otherOrder) - (myOrder < otherOrder)
|
|
|
|
|
|
|
|
|
2020-06-19 01:59:28 +05:30
|
|
|
@property
|
|
|
|
def symmetry_operations(self):
|
2020-07-01 01:13:57 +05:30
|
|
|
"""Symmetry operations as Quaternions."""
|
2020-06-30 16:25:08 +05:30
|
|
|
if self.system == 'cubic':
|
2020-06-19 01:59:28 +05:30
|
|
|
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.0, 0.5*np.sqrt(2), 0.5*np.sqrt(2) ],
|
|
|
|
[ 0.0, 0.0, 0.5*np.sqrt(2),-0.5*np.sqrt(2) ],
|
|
|
|
[ 0.0, 0.5*np.sqrt(2), 0.0, 0.5*np.sqrt(2) ],
|
|
|
|
[ 0.0, 0.5*np.sqrt(2), 0.0, -0.5*np.sqrt(2) ],
|
|
|
|
[ 0.0, 0.5*np.sqrt(2),-0.5*np.sqrt(2), 0.0 ],
|
|
|
|
[ 0.0, -0.5*np.sqrt(2),-0.5*np.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*np.sqrt(2), 0.0, 0.0, 0.5*np.sqrt(2) ],
|
|
|
|
[ 0.5*np.sqrt(2), 0.0, 0.0, 0.5*np.sqrt(2) ],
|
|
|
|
[-0.5*np.sqrt(2), 0.0, 0.5*np.sqrt(2), 0.0 ],
|
|
|
|
[-0.5*np.sqrt(2), 0.0, -0.5*np.sqrt(2), 0.0 ],
|
|
|
|
[-0.5*np.sqrt(2), 0.5*np.sqrt(2), 0.0, 0.0 ],
|
|
|
|
[-0.5*np.sqrt(2),-0.5*np.sqrt(2), 0.0, 0.0 ],
|
|
|
|
]
|
2020-06-30 16:25:08 +05:30
|
|
|
elif self.system == 'hexagonal':
|
2020-06-19 01:59:28 +05:30
|
|
|
symQuats = [
|
|
|
|
[ 1.0, 0.0, 0.0, 0.0 ],
|
|
|
|
[-0.5*np.sqrt(3), 0.0, 0.0, -0.5 ],
|
|
|
|
[ 0.5, 0.0, 0.0, 0.5*np.sqrt(3) ],
|
|
|
|
[ 0.0, 0.0, 0.0, 1.0 ],
|
|
|
|
[-0.5, 0.0, 0.0, 0.5*np.sqrt(3) ],
|
|
|
|
[-0.5*np.sqrt(3), 0.0, 0.0, 0.5 ],
|
|
|
|
[ 0.0, 1.0, 0.0, 0.0 ],
|
|
|
|
[ 0.0, -0.5*np.sqrt(3), 0.5, 0.0 ],
|
|
|
|
[ 0.0, 0.5, -0.5*np.sqrt(3), 0.0 ],
|
|
|
|
[ 0.0, 0.0, 1.0, 0.0 ],
|
|
|
|
[ 0.0, -0.5, -0.5*np.sqrt(3), 0.0 ],
|
|
|
|
[ 0.0, 0.5*np.sqrt(3), 0.5, 0.0 ],
|
|
|
|
]
|
2020-06-30 16:25:08 +05:30
|
|
|
elif self.system == 'tetragonal':
|
2020-06-19 01:59:28 +05:30
|
|
|
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*np.sqrt(2), 0.5*np.sqrt(2), 0.0 ],
|
|
|
|
[ 0.0, -0.5*np.sqrt(2), 0.5*np.sqrt(2), 0.0 ],
|
|
|
|
[ 0.5*np.sqrt(2), 0.0, 0.0, 0.5*np.sqrt(2) ],
|
|
|
|
[-0.5*np.sqrt(2), 0.0, 0.0, 0.5*np.sqrt(2) ],
|
|
|
|
]
|
2020-06-30 16:25:08 +05:30
|
|
|
elif self.system == 'orthorhombic':
|
2020-06-19 01:59:28 +05:30
|
|
|
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 ],
|
|
|
|
]
|
2020-06-20 20:04:19 +05:30
|
|
|
return np.array(symQuats)
|
2020-06-19 01:59:28 +05:30
|
|
|
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-07-01 01:13:57 +05:30
|
|
|
def in_FZ(self,rho):
|
2020-02-21 03:59:12 +05:30
|
|
|
"""
|
2020-07-01 01:13:57 +05:30
|
|
|
Check whether given Rodrigues-Frank vector falls into fundamental zone.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
Fundamental zone in Rodrigues space is point symmetric around origin.
|
|
|
|
"""
|
2020-07-01 01:13:57 +05:30
|
|
|
if(rho.shape[-1] != 3):
|
2020-07-01 02:03:58 +05:30
|
|
|
raise ValueError('Input is not a Rodrigues-Frank vector field.')
|
2020-07-01 01:13:57 +05:30
|
|
|
|
|
|
|
rho_abs = np.abs(rho)
|
|
|
|
|
|
|
|
with np.errstate(invalid='ignore'):
|
|
|
|
# using '*'/prod for 'and'
|
|
|
|
if self.system == 'cubic':
|
|
|
|
return np.where(np.prod(np.sqrt(2)-1. >= rho_abs,axis=-1) * \
|
|
|
|
(1. >= np.sum(rho_abs,axis=-1)),True,False)
|
|
|
|
elif self.system == 'hexagonal':
|
|
|
|
return np.where(np.prod(1. >= rho_abs,axis=-1) * \
|
|
|
|
(2. >= np.sqrt(3)*rho_abs[...,0] + rho_abs[...,1]) * \
|
|
|
|
(2. >= np.sqrt(3)*rho_abs[...,1] + rho_abs[...,0]) * \
|
|
|
|
(2. >= np.sqrt(3) + rho_abs[...,2]),True,False)
|
|
|
|
elif self.system == 'tetragonal':
|
|
|
|
return np.where(np.prod(1. >= rho_abs[...,:2],axis=-1) * \
|
|
|
|
(np.sqrt(2) >= rho_abs[...,0] + rho_abs[...,1]) * \
|
|
|
|
(np.sqrt(2) >= rho_abs[...,2] + 1.),True,False)
|
|
|
|
elif self.system == 'orthorhombic':
|
|
|
|
return np.where(np.prod(1. >= rho_abs,axis=-1),True,False)
|
|
|
|
else:
|
|
|
|
return np.where(np.all(np.isfinite(rho_abs),axis=-1),True,False)
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
|
2020-07-01 01:13:57 +05:30
|
|
|
def in_disorientation_SST(self,rho):
|
2020-02-21 03:59:12 +05:30
|
|
|
"""
|
2020-07-01 01:13:57 +05:30
|
|
|
Check whether given Rodrigues-Frank vector (of misorientation) falls into standard stereographic triangle.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
References
|
|
|
|
----------
|
|
|
|
A. Heinz and P. Neumann, Acta Crystallographica Section A 47:780-789, 1991
|
|
|
|
https://doi.org/10.1107/S0108767391006864
|
|
|
|
|
|
|
|
"""
|
2020-07-01 01:13:57 +05:30
|
|
|
if(rho.shape[-1] != 3):
|
2020-07-01 02:03:58 +05:30
|
|
|
raise ValueError('Input is not a Rodrigues-Frank vector field.')
|
2020-07-01 01:13:57 +05:30
|
|
|
|
|
|
|
with np.errstate(invalid='ignore'):
|
|
|
|
# using '*' for 'and'
|
|
|
|
if self.system == 'cubic':
|
|
|
|
return np.where((rho[...,0] >= rho[...,1]) * \
|
|
|
|
(rho[...,1] >= rho[...,2]) * \
|
|
|
|
(rho[...,2] >= 0),True,False)
|
|
|
|
elif self.system == 'hexagonal':
|
|
|
|
return np.where((rho[...,0] >= rho[...,1]*np.sqrt(3)) * \
|
|
|
|
(rho[...,1] >= 0) * \
|
|
|
|
(rho[...,2] >= 0),True,False)
|
|
|
|
elif self.system == 'tetragonal':
|
|
|
|
return np.where((rho[...,0] >= rho[...,1]) * \
|
|
|
|
(rho[...,1] >= 0) * \
|
|
|
|
(rho[...,2] >= 0),True,False)
|
|
|
|
elif self.system == 'orthorhombic':
|
|
|
|
return np.where((rho[...,0] >= 0) * \
|
|
|
|
(rho[...,1] >= 0) * \
|
|
|
|
(rho[...,2] >= 0),True,False)
|
2020-02-21 03:59:12 +05:30
|
|
|
else:
|
2020-07-01 01:13:57 +05:30
|
|
|
return np.ones_like(rho[...,0],dtype=bool)
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-06-19 14:24:13 +05:30
|
|
|
|
2020-07-01 12:18:30 +05:30
|
|
|
#ToDo: IPF color in separate function
|
2020-07-01 01:13:57 +05:30
|
|
|
def in_SST(self,vector,proper=False,color=False):
|
2020-06-19 14:24:13 +05:30
|
|
|
"""
|
|
|
|
Check whether given vector falls into standard stereographic triangle of own symmetry.
|
|
|
|
|
|
|
|
proper considers only vectors with z >= 0, hence uses two neighboring SSTs.
|
|
|
|
Return inverse pole figure color if requested.
|
|
|
|
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
|
|
|
|
... }
|
|
|
|
|
|
|
|
"""
|
2020-07-01 02:03:58 +05:30
|
|
|
if(vector.shape[-1] != 3):
|
|
|
|
raise ValueError('Input is not a 3D vector field.')
|
|
|
|
|
2020-06-30 16:25:08 +05:30
|
|
|
if self.system == 'cubic':
|
2020-06-19 14:24:13 +05:30
|
|
|
basis = {'improper':np.array([ [-1. , 0. , 1. ],
|
|
|
|
[ np.sqrt(2.) , -np.sqrt(2.) , 0. ],
|
|
|
|
[ 0. , np.sqrt(3.) , 0. ] ]),
|
|
|
|
'proper':np.array([ [ 0. , -1. , 1. ],
|
|
|
|
[-np.sqrt(2.) , np.sqrt(2.) , 0. ],
|
|
|
|
[ np.sqrt(3.) , 0. , 0. ] ]),
|
|
|
|
}
|
2020-06-30 16:25:08 +05:30
|
|
|
elif self.system == 'hexagonal':
|
2020-06-19 14:24:13 +05:30
|
|
|
basis = {'improper':np.array([ [ 0. , 0. , 1. ],
|
|
|
|
[ 1. , -np.sqrt(3.) , 0. ],
|
|
|
|
[ 0. , 2. , 0. ] ]),
|
|
|
|
'proper':np.array([ [ 0. , 0. , 1. ],
|
|
|
|
[-1. , np.sqrt(3.) , 0. ],
|
|
|
|
[ np.sqrt(3.) , -1. , 0. ] ]),
|
|
|
|
}
|
2020-06-30 16:25:08 +05:30
|
|
|
elif self.system == 'tetragonal':
|
2020-06-19 14:24:13 +05:30
|
|
|
basis = {'improper':np.array([ [ 0. , 0. , 1. ],
|
|
|
|
[ 1. , -1. , 0. ],
|
|
|
|
[ 0. , np.sqrt(2.) , 0. ] ]),
|
|
|
|
'proper':np.array([ [ 0. , 0. , 1. ],
|
|
|
|
[-1. , 1. , 0. ],
|
|
|
|
[ np.sqrt(2.) , 0. , 0. ] ]),
|
|
|
|
}
|
2020-06-30 16:25:08 +05:30
|
|
|
elif self.system == 'orthorhombic':
|
2020-06-19 14:24:13 +05:30
|
|
|
basis = {'improper':np.array([ [ 0., 0., 1.],
|
|
|
|
[ 1., 0., 0.],
|
|
|
|
[ 0., 1., 0.] ]),
|
|
|
|
'proper':np.array([ [ 0., 0., 1.],
|
|
|
|
[-1., 0., 0.],
|
|
|
|
[ 0., 1., 0.] ]),
|
|
|
|
}
|
|
|
|
else: # direct exit for unspecified symmetry
|
|
|
|
if color:
|
|
|
|
return (np.ones_like(vector[...,0],bool),np.zeros_like(vector))
|
|
|
|
else:
|
|
|
|
return np.ones_like(vector[...,0],bool)
|
|
|
|
|
2020-07-01 02:03:58 +05:30
|
|
|
|
|
|
|
b_i = np.broadcast_to(basis['improper'],vector.shape+(3,))
|
2020-06-19 14:24:13 +05:30
|
|
|
if proper:
|
2020-07-01 02:03:58 +05:30
|
|
|
b_p = np.broadcast_to(basis['proper'], vector.shape+(3,))
|
2020-06-19 14:24:13 +05:30
|
|
|
improper = np.all(np.around(np.einsum('...ji,...i',b_i,vector),12)>=0.0,axis=-1,keepdims=True)
|
|
|
|
theComponents = np.where(np.broadcast_to(improper,vector.shape),
|
|
|
|
np.around(np.einsum('...ji,...i',b_i,vector),12),
|
|
|
|
np.around(np.einsum('...ji,...i',b_p,vector),12))
|
|
|
|
else:
|
|
|
|
vector_ = np.block([vector[...,0:2],np.abs(vector[...,2:3])]) # z component projects identical
|
2020-07-01 02:03:58 +05:30
|
|
|
theComponents = np.around(np.einsum('...ji,...i',b_i,vector_),12)
|
2020-06-19 14:24:13 +05:30
|
|
|
|
|
|
|
in_SST = np.all(theComponents >= 0.0,axis=-1)
|
|
|
|
|
|
|
|
if color: # have to return color array
|
|
|
|
with np.errstate(invalid='ignore',divide='ignore'):
|
|
|
|
rgb = (theComponents/np.linalg.norm(theComponents,axis=-1,keepdims=True))**0.5 # smoothen color ramps
|
|
|
|
rgb = np.minimum(1.,rgb) # limit to maximum intensity
|
|
|
|
rgb /= np.max(rgb,axis=-1,keepdims=True) # normalize to (HS)V = 1
|
2020-06-21 14:07:09 +05:30
|
|
|
rgb[np.broadcast_to(~in_SST.reshape(vector[...,0].shape+(1,)),vector.shape)] = 0.0
|
2020-06-19 14:24:13 +05:30
|
|
|
return (in_SST,rgb)
|
|
|
|
else:
|
|
|
|
return in_SST
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************************
|
2020-06-20 20:04:19 +05:30
|
|
|
class Lattice: # ToDo: Make a subclass of Symmetry!
|
2020-02-22 04:49:27 +05:30
|
|
|
"""
|
2020-07-01 12:18:30 +05:30
|
|
|
Bravais lattice.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-07-01 12:18:30 +05:30
|
|
|
This contains only a mapping from Bravais lattice to symmetry
|
2020-02-22 04:49:27 +05:30
|
|
|
and orientation relationships. It could include twin and slip systems.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
References
|
|
|
|
----------
|
|
|
|
https://en.wikipedia.org/wiki/Bravais_lattice
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
"""
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
lattices = {
|
2020-06-30 17:25:09 +05:30
|
|
|
'triclinic':{'system':None},
|
|
|
|
'bct': {'system':'tetragonal'},
|
|
|
|
'hex': {'system':'hexagonal'},
|
|
|
|
'fcc': {'system':'cubic','c/a':1.0},
|
|
|
|
'bcc': {'system':'cubic','c/a':1.0},
|
2020-02-22 04:49:27 +05:30
|
|
|
}
|
2020-02-21 03:59:12 +05:30
|
|
|
|
|
|
|
|
2020-07-01 12:18:30 +05:30
|
|
|
def __init__(self,lattice,c_over_a=None):
|
2020-02-22 04:49:27 +05:30
|
|
|
"""
|
|
|
|
New lattice of given type.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
lattice : str
|
|
|
|
Bravais lattice.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
"""
|
|
|
|
self.lattice = lattice
|
2020-06-30 17:25:09 +05:30
|
|
|
self.symmetry = Symmetry(self.lattices[lattice]['system'])
|
|
|
|
|
|
|
|
# transition to subclass
|
2020-07-01 12:18:30 +05:30
|
|
|
self.system = self.symmetry.system
|
|
|
|
self.in_SST = self.symmetry.in_SST
|
|
|
|
self.in_FZ = self.symmetry.in_FZ
|
|
|
|
self.in_disorientation_SST = self.symmetry.in_disorientation_SST
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
def __repr__(self):
|
|
|
|
"""Report basic lattice information."""
|
2020-07-01 12:18:30 +05:30
|
|
|
return 'Bravais lattice {} ({} crystal system)'.format(self.lattice,self.symmetry)
|
2020-02-22 04:49:27 +05:30
|
|
|
|
|
|
|
|
|
|
|
# Kurdjomov--Sachs orientation relationship for fcc <-> bcc transformation
|
|
|
|
# from S. Morito et al., Journal of Alloys and Compounds 577:s587-s592, 2013
|
|
|
|
# also see K. Kitahara et al., Acta Materialia 54:1279-1288, 2006
|
2020-07-01 12:18:30 +05:30
|
|
|
_KS = {'mapping':{'fcc':0,'bcc':1},
|
2020-02-22 04:49:27 +05:30
|
|
|
'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 39:72-81, 2006
|
2020-07-01 12:18:30 +05:30
|
|
|
_GT = {'mapping':{'fcc':0,'bcc':1},
|
2020-02-22 04:49:27 +05:30
|
|
|
'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 39:72-81, 2006
|
2020-07-01 12:18:30 +05:30
|
|
|
_GTprime = {'mapping':{'fcc':0,'bcc':1},
|
2020-02-22 04:49:27 +05:30
|
|
|
'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:378-386, 2005
|
2020-07-01 12:18:30 +05:30
|
|
|
_NW = {'mapping':{'fcc':0,'bcc':1},
|
2020-02-22 04:49:27 +05:30
|
|
|
'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]],
|
|
|
|
[[ 2, -1, 1],[ 0, -1, 1]], #It is wrong in the paper, but matrix is correct
|
|
|
|
[[ -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:1179-1190, 2005
|
2020-07-01 12:18:30 +05:30
|
|
|
_Pitsch = {'mapping':{'fcc':0,'bcc':1},
|
2020-02-22 04:49:27 +05:30
|
|
|
'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 39:72-81, 2006
|
2020-07-01 12:18:30 +05:30
|
|
|
_Bain = {'mapping':{'fcc':0,'bcc':1},
|
2020-02-22 04:49:27 +05:30
|
|
|
'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')}
|
|
|
|
|
2020-07-01 12:18:30 +05:30
|
|
|
|
|
|
|
def relation_operations(self,model):
|
2020-02-22 04:49:27 +05:30
|
|
|
"""
|
|
|
|
Crystallographic orientation relationships for phase transformations.
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
References
|
|
|
|
----------
|
|
|
|
S. Morito et al., Journal of Alloys and Compounds 577:s587-s592, 2013
|
|
|
|
https://doi.org/10.1016/j.jallcom.2012.02.004
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
K. Kitahara et al., Acta Materialia 54(5):1279-1288, 2006
|
|
|
|
https://doi.org/10.1016/j.actamat.2005.11.001
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
Y. He et al., Journal of Applied Crystallography 39:72-81, 2006
|
|
|
|
https://doi.org/10.1107/S0021889805038276
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
H. Kitahara et al., Materials Characterization 54(4-5):378-386, 2005
|
|
|
|
https://doi.org/10.1016/j.matchar.2004.12.015
|
|
|
|
|
|
|
|
Y. He et al., Acta Materialia 53(4):1179-1190, 2005
|
|
|
|
https://doi.org/10.1016/j.actamat.2004.11.021
|
|
|
|
|
|
|
|
"""
|
2020-07-01 12:18:30 +05:30
|
|
|
models={'KS':self._KS, 'GT':self._GT, 'GT_prime':self._GTprime,
|
|
|
|
'NW':self._NW, 'Pitsch': self._Pitsch, 'Bain':self._Bain}
|
2020-02-22 04:49:27 +05:30
|
|
|
try:
|
|
|
|
relationship = models[model]
|
|
|
|
except KeyError :
|
|
|
|
raise KeyError('Orientation relationship "{}" is unknown'.format(model))
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
if self.lattice not in relationship['mapping']:
|
|
|
|
raise ValueError('Relationship "{}" not supported for lattice "{}"'.format(model,self.lattice))
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
r = {'lattice':Lattice((set(relationship['mapping'])-{self.lattice}).pop()), # target lattice
|
|
|
|
'rotations':[] }
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
myPlane_id = relationship['mapping'][self.lattice]
|
|
|
|
otherPlane_id = (myPlane_id+1)%2
|
|
|
|
myDir_id = myPlane_id +2
|
|
|
|
otherDir_id = otherPlane_id +2
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
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])
|
|
|
|
myMatrix = np.array([myDir,np.cross(myPlane,myDir),myPlane])
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
otherPlane = miller[otherPlane_id]/ np.linalg.norm(miller[otherPlane_id])
|
|
|
|
otherDir = miller[otherDir_id]/ np.linalg.norm(miller[otherDir_id])
|
|
|
|
otherMatrix = np.array([otherDir,np.cross(otherPlane,otherDir),otherPlane])
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-07-01 12:18:30 +05:30
|
|
|
r['rotations'].append(np.dot(otherMatrix.T,myMatrix))
|
|
|
|
|
|
|
|
r['rotations'] = np.array(r['rotations'])
|
2020-02-21 03:59:12 +05:30
|
|
|
|
2020-02-22 04:49:27 +05:30
|
|
|
return r
|