我对编程和 Python 非常陌生,我正在尝试将 DLPOLY HISTORY 文件转换为 arc 文件。我需要做的是提取晶格向量(单词 timestep 下的 3x3 数组)、x、y 和 z 坐标(每个元素下面的行上的三个条目)和电荷(行上的第四个条目)元素)。
理想情况下,我希望最终能够转换任意大小和帧长度的文件。
DLPOLY HISTORY 文件的两个标题行和前两帧如下所示:
File Title
0 3 5 136 1906
timestep 0 5 0 3 0.000500 0.000000
3.5853000000 0.0000000000 0.0000000000
-1.7926500000 3.1049600000 0.0000000000
0.0000000000 0.0000000000 4.8950000000
Ca 1 40.078000 1.050000 0.000000
0.000000000 0.000000000 0.000000000
O 2 15.999400 -0.950000 0.000000
1.792650000 -1.034986100 1.140535000
H 3 1.007940 0.425000 0.000000
1.792650000 -1.034986100 1.933525000
O 4 15.999400 -0.950000 0.000000
-1.792650000 1.034987000 -1.140535000
H 5 1.007940 0.425000 0.000000
-1.792650000 1.034987000 -1.933525000
timestep 10 5 0 3 0.000500 0.005000
3.5853063513 0.0000000000 0.0000000000
-1.7926531756 3.1049655004 0.0000000000
0.0000000000 0.0000000000 4.8950086714
Ca 1 40.078000 1.050000 0.020485
-0.1758475885E-01 0.1947928245E-04 -0.1192033544E-01
O 2 15.999400 -0.950000 0.051020
1.841369991 -1.037431082 1.120698646
H 3 1.007940 0.425000 0.416965
1.719029690 -1.029327936 2.355541077
O 4 15.999400 -0.950000 0.045979
-1.795057186 1.034993005 -1.093028694
H 5 1.007940 0.425000 0.373772
-1.754959531 1.067269072 -2.320776528
到目前为止,我拥有的代码是:
fileList = history_file.readlines()
number_of_frames = int(fileList[1].split()[3])
number_of_lines = int(fileList[1].split()[4])
frame_length = (number_of_lines - 2) / number_of_frames
number_of_atoms = int(fileList[1].split()[2])
lines_per_atom = frame_length / number_of_atoms
for i in range(3, number_of_lines+1, frame_length):
#maths for converting lattice vectors
#print statement to write out converted lattice vectors
for j in range(i+3, frame_length+1, lines_per_atom):
atom_type = fileList[j].split()[0]
atom_x = fileList[j+1].split()[0]
atom_y = fileList[j+1].split()[1]
atom_z = fileList[j+1].split()[2]
charge = fileList[j].split()[3]
print atom_type, atom_x, atom_y, atom_z, charge
我可以提取和转换晶格向量,所以这不是问题。但是,当涉及到第二个 for 循环时,它只执行一次,它认为我的范围结束语句
frame_length+1
不正确,但是如果我将其更改为
i+3+frame_length+1
我收到以下错误:
charge = fileList[j].split()[3]
IndexError: list index out of range
我认为这意味着我要遍历数组的末尾。
我确信我忽略了一些非常简单的事情,但任何帮助将不胜感激。
我还想知道是否有更有效的读取文件的方法,因为据我了解,readlines 会将整个文件读入内存,而 HISTORY 文件的大小很容易达到几 GB。