Merge branch 'documenting-symmetry' into 'development'
document source of symmetry operations See merge request damask/DAMASK!803
This commit is contained in:
commit
0cda7af7ed
|
@ -548,7 +548,17 @@ class Crystal():
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def symmetry_operations(self) -> Rotation:
|
def symmetry_operations(self) -> Rotation:
|
||||||
"""Symmetry operations as Rotations."""
|
"""
|
||||||
|
Return symmetry operations.
|
||||||
|
|
||||||
|
References
|
||||||
|
----------
|
||||||
|
U.F. Kocks et al.,
|
||||||
|
Texture and Anisotropy:
|
||||||
|
Preferred Orientations in Polycrystals and their Effect on Materials Properties.
|
||||||
|
Cambridge University Press 1998. Table II
|
||||||
|
|
||||||
|
"""
|
||||||
_symmetry_operations: Dict[CrystalFamily, List] = {
|
_symmetry_operations: Dict[CrystalFamily, List] = {
|
||||||
'cubic': [
|
'cubic': [
|
||||||
[ 1.0, 0.0, 0.0, 0.0 ],
|
[ 1.0, 0.0, 0.0, 0.0 ],
|
||||||
|
|
Loading…
Reference in New Issue