Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit f7c9de7

Browse files
committed
Add and explicitly state some hierarchy fields
1 parent 167d4e7 commit f7c9de7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tilde/parsers/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
from ase.data import chemical_symbols
1515

1616

17-
HASH_LENGTH = 47
18-
1917
class Output:
2018
def __init__(self, filename='', calcset=False):
2119

@@ -84,7 +82,8 @@ def __init__(self, filename='', calcset=False):
8482

8583
'standard': '',
8684
'formula': '',
87-
'dims': False,
85+
'dims': False, # cell volume
86+
'periodicity':0x0,
8887
'natom': 0,
8988
'elements': [],
9089
'contents': [],
@@ -105,11 +104,12 @@ def __init__(self, filename='', calcset=False):
105104
'kshift': None,
106105
'smear': None, # in a.u.
107106
'smeartype': None,
108-
'spin': False,
107+
'spin': 0x0,
109108
'lockstate': None,
110109

111110
'ansatz': 0x0,
112111
'techs': [],
112+
'dtype': 0x0
113113
}
114114

115115
@classmethod

0 commit comments

Comments
 (0)