From 6fa5ae6ebf555e47923f6a5a62bfe1043915e313 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Mon, 22 Jun 2020 23:14:58 +0200 Subject: [PATCH] literature from Karo --- python/damask/_orientation.py | 1 + 1 file changed, 1 insertion(+) 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.")