我對編程和Python非常陌生,我試圖將DLPOLY HISTORY文件轉換爲弧形文件。我需要做的是提取晶格向量(在timestep這個單詞下的3x3數組),x,y和z座標(每個元素下面的行上的三個入口)和電荷(線上的第四個入口與元件)。For循環播放Python中的文本文件的部分
理想情況下,我想最終能夠轉換任意大小和幀長度的文件。
兩個標題行和DLPOLY歷史文件的頭兩幀,看起來像這樣:
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
我得到以下錯誤:
我認爲這意味着我要結束一個數組。
我敢肯定,我忽略了一些非常簡單的東西,但任何幫助將不勝感激。
我也想知道是否有更高效的閱讀文件的方式,因爲據我所知,readlines將整個文件讀入內存,HISTORY文件可以輕鬆達到幾GB的大小。
謝謝,我沒趕上與lines_per_atom計算錯誤。奇怪的是,無論有沒有更正,它仍然會給出我期待的2的結果。我想知道這是爲什麼? –
我也嘗試了你對第二個循環的建議修正,但是我得到以下錯誤:charge = fileList [j + i] .split()[3] IndexError:列表索引超出範圍。 –
我將第二個循環更改爲範圍(i + 3,frame_length + i-2,lines_per_atom)中的j:現在它似乎按照我希望的方式執行。我將不得不使用不同大小的輸入文件來查看它是否仍然符合我的預期。 –