From 5e7f9a223b55f9f8c56ba6fa35a0c46ae5db5b68 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Mon, 21 Oct 2019 23:17:58 +0200 Subject: [PATCH] should be a passive rotation --- python/damask/orientation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/damask/orientation.py b/python/damask/orientation.py index 97464f9e6..fc601b608 100644 --- a/python/damask/orientation.py +++ b/python/damask/orientation.py @@ -1144,7 +1144,7 @@ class Orientation: def relatedOrientations(self,model): """List of orientations related by the given orientation relationship.""" r = self.lattice.relationOperations(model) - return [self.__class__(self.rotation*o,r['lattice']) for o in r['rotations']] + return [self.__class__(o*self.rotation,r['lattice']) for o in r['rotations']] def reduced(self): """Transform orientation to fall into fundamental zone according to symmetry."""