-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdb.main_hop.py
35 lines (29 loc) · 1.57 KB
/
pdb.main_hop.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from class_data import data
if __name__ == '__main__':
import time as timer
##--- read-in the whole file ---
pdbfilename = '../nvtprod_every100ps_00-10ns.pdb' # hopping calculation
##--- output general settings ---
import numpy as np
fn_prefix = '../ImC5_00-10ns_'
##--- timer start ---
start = timer.perf_counter()
##--- initialize a data object ---
d1 = data()
d1.save_mem=1
##--- read in pdb traj output ---
AN_gen_kw = [ range(1,1+400), 1, 1, 1, [], 15, "sel[:]", 'type']
CT_gen_kw = [ range(401,401+10), 2, 40, 1, [27, 1132], 8, "sel[ ((sel.index%29<=5 ) & (sel.index%29>=1)) | ( (sel.index%29>=12 ) & (sel.index%29<=14)) ]", 'type' ]
d1.read_all_pdb(pdbfilename, AN_gen = AN_gen_kw, CT_gen =CT_gen_kw )
print('last timestep read: ', d1.allframes[-1].L_atom)
d1.wrapall_L()
##--- calcuate histograms ---
norm_hist_atom, norm_hist_mol = d1.find_asso_AN_CT(7.8)
norm_hist_hop_type = d1.hoppingtype_AN()
##--- save hopping types
np.savetxt( fn_prefix+'hist_asso_atom.dat', np.transpose( [norm_hist_atom[1][:-1], norm_hist_atom[0][:]] ), fmt=['%d', '%f'], header='n P(n)' )
np.savetxt( fn_prefix+'hist_asso_mol.dat' , np.transpose( [norm_hist_mol[1][:-1] , norm_hist_mol[0][:] ] ), fmt=['%d', '%f'], header='N P(N)' )
np.savetxt( fn_prefix+'hist_hopping.dat' , np.transpose( [norm_hist_hop_type[1][:-1], norm_hist_hop_type[0][:] ] ), fmt=['%d', '%f'] , header='N P(N)' )
##--- timer stop ---
stop = timer.perf_counter()
print('time used in sec: ', stop-start)