From 13307307174276952a207da4d3c8660f8e3ef2c4 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Fri, 19 Apr 2019 09:04:54 +0200 Subject: [PATCH] inFZ needs 'proper' Rodriques--Franck vector --- 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 e584415b0..00550d986 100644 --- a/python/damask/orientation.py +++ b/python/damask/orientation.py @@ -976,7 +976,7 @@ class Orientation: def reduced(self): """Transform orientation to fall into fundamental zone according to symmetry""" for me in self.equivalentOrientations(): - if self.lattice.symmetry.inFZ(me.rotation.asRodrigues()): break + if self.lattice.symmetry.inFZ(me.rotation.asRodrigues(vector=True)): break return self.__class__(me.rotation,self.lattice)