forked from agrero/backmapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
47 lines (30 loc) · 1.43 KB
/
test.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
41
42
43
44
45
46
47
import pandas as pd
import os
import numpy as np
from backpack import mapback as mb
from backpack import writepack as wp
from backpack import mapanly as ma
# code here is for talapas to run the bond angle and dihedral stuff
"""chain = range(1, len(xyz[-1]) + 1)
multidex = [(i,i) for i in chain]
multidex = pd.MultiIndex.from_tuples(multidex, names=['atom','chain'])"""
"""frame = pd.DataFrame(xyz[-1], columns=['x','y','z'], index=multidex)"""
parent = 'lammps_protocols'
file = 'lammps-AT-config'
data = pd.read_csv('atomistic.csv')
data.drop(axis=1,columns=['Unnamed: 0'], inplace=True)
# 30 monomers per 500 chains
atoms= [i for i in range(1,len(data) + 1)]
chain = [i for i in range(1,len(atoms)+1) for x in range(30)]
m1 = [(atoms[i],chain[i]) for i in range(0, len(atoms))]
multi_dex = pd.MultiIndex.from_tuples(m1, names=['atom','chain'])
new_data = pd.DataFrame(data.values, index=multi_dex, columns=['x','y','z'])
path = os.path.join('lammps_protocols', 'lammps-AT-config')
coordinates = wp.read_lammps_2(path)
# uncomment these to download good plots
#ma.plot_bondlength(new_data, filter_no=100, bin_width=0.05, xtick_dist=5)
#ma.plot_bondlength(coordinates, filter_no=5, bin_width=0.2, xtick_dist=5)
#ma.plot_bondangle(new_data, bin_width=1, xtick_dist=8)
#ma.plot_bondangle(coordinates, bin_width=1.5, xtick_dist=10.2)
#ma.plot_dihedral(new_data, bin_width=5, xtick_dist=10)
#ma.plot_dihedral(coordinates, bin_width=5, xtick_dist=10)