We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 68011fa + af8a7de commit bbbcb61Copy full SHA for bbbcb61
dpdata/cp2k/output.py
@@ -190,9 +190,12 @@ def handle_single_xyz_frame(self, lines):
190
element_index +=1
191
element_dict[line_list[0]]=[element_index,1]
192
atom_types_list.append(element_dict[line_list[0]][0])
193
- coords_list.append([float(line_list[1])*AU_TO_ANG,
194
- float(line_list[2])*AU_TO_ANG,
195
- float(line_list[3])*AU_TO_ANG])
+ # coords_list.append([float(line_list[1])*AU_TO_ANG,
+ # float(line_list[2])*AU_TO_ANG,
+ # float(line_list[3])*AU_TO_ANG])
196
+ coords_list.append([float(line_list[1]),
197
+ float(line_list[2]),
198
+ float(line_list[3])])
199
atom_names=list(element_dict.keys())
200
atom_numbs=[]
201
for ii in atom_names:
0 commit comments