-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgro.sep.py
41 lines (38 loc) · 1.33 KB
/
gro.sep.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
36
37
38
39
40
from class_data import data
from class_oneframe import oneframe
if __name__ == '__main__':
import time as timer
import numpy as np
import pandas as pd
from pbc_dist import pbc_vec
##--- output general settings ---
fn_prefix = '../'
##--- timer start ---
start = timer.perf_counter()
##--- initialize a data object ---
d1 = data()
d1.save_mem=0 #do not clear L_atoms
##--- read in gro traj ---
grofilename = '../test_P4_pep_CL.gro'
d1.read_all_gro(grofilename )
"""
d2 = data()
d2.save_mem=0 #do not clear L_atoms
grofilename = '../trj_P4_pep_urea.gro'
d2.read_all_gro(grofilename )
d1.allframes += d2.allframes[1:]
del d2 # save memory
"""
print('last timestep read: ', d1.allframes[-1].time)
print( 'number of frames: ', len(d1.allframes) )
for i in range(0, len(d1.allframes)):
#f = open('../Xi_image/trj_P3P4_image'+str(i)+'.gro', 'w')
f = open('../Xi_image/trj_P3P4_image'+str(i)+'.pdb', 'w')
#d1.allframes[i].export_gro( f, d1.allframes[i].L_atom )
# unit conversion:
d1.allframes[i].L_atom.loc[:,['xu', 'yu', 'zu'] ] *= 10
d1.allframes[i].export_pdb( f, d1.allframes[i].L_atom, 1 )
f.close()
##--- timer stop ---
stop = timer.perf_counter()
print('time used in sec: ', stop-start)