diff --git a/python/damask/_orientation.py b/python/damask/_orientation.py index 1704987b4..0e7b68954 100644 --- a/python/damask/_orientation.py +++ b/python/damask/_orientation.py @@ -198,6 +198,7 @@ class Orientation: # ToDo: make subclass of lattice and Rotation def fromAverage(orientations, weights = []): """Create orientation from average of list of orientations.""" + # further read: Orientation distribution analysis in deformed grains, https://doi.org/10.1107/S0021889801003077 if not all(isinstance(item, Orientation) for item in orientations): raise TypeError("Only instances of Orientation can be averaged.")