From 06b524d13e267aeb88715e7d8ee7f4670f6c3c60 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Wed, 26 Aug 2020 21:39:20 +0200 Subject: [PATCH] added 'iso' as possible lattice (with no symmetry) --- python/damask/_lattice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/damask/_lattice.py b/python/damask/_lattice.py index 9df451c69..da8f76b64 100644 --- a/python/damask/_lattice.py +++ b/python/damask/_lattice.py @@ -321,6 +321,7 @@ class Lattice: # ToDo: Make a subclass of Symmetry! """ lattices = { + 'iso': {'system':None}, 'triclinic':{'system':None}, 'bct': {'system':'tetragonal'}, 'hex': {'system':'hexagonal'},