Skip to content

Commit d6a181c

Browse files
more mg
1 parent 2493df5 commit d6a181c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/multiego/ensemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ def generate_OO_LJ(meGO_ensemble):
848848
if atomtype == "O" or atomtype == "OM" or atomtype == "OA"
849849
]
850850
H_H_sbtype = [sbtype for sbtype, atomtype in meGO_ensemble["sbtype_type_dict"].items() if atomtype == "H"]
851-
N_sbtype = [sbtype for sbtype, atomtype in meGO_ensemble["sbtype_type_dict"].items() if atomtype == "N"]
851+
N_sbtype = [sbtype for sbtype, atomtype in meGO_ensemble["sbtype_type_dict"].items() if atomtype == "N" or atomtype == "NT" or atomtype == "NL" or atomtype == "NR" or atomtype == "NZ" or atomtype == "NE"]
852852

853853
full_matrix_OH = list(itertools.product(H_H_sbtype, O_OM_OA_sbtype)) + list(itertools.product(O_OM_OA_sbtype, H_H_sbtype))
854854
full_matrix_ON = list(itertools.product(N_sbtype, O_OM_OA_sbtype)) + list(itertools.product(O_OM_OA_sbtype, N_sbtype))

src/multiego/resources/type_definitions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
mg_eps = 0.11
77
mg_eps_ho = 0.13
88
mg_sig_ho = 0.1782
9-
mg_eps_no = 0.10
9+
mg_eps_no = 0.13
1010
mg_sig_no = 0.2673
1111
mg_eps_ch3 = 0.130
1212
mg_eps_ch2 = 0.120
13-
mg_eps_ch1 = 0.09
13+
mg_eps_ch1 = 0.100
1414

1515
# Dataframe with GROMOS atom types and associated parameters
1616
gromos_atp = pd.DataFrame(
@@ -72,7 +72,7 @@
7272
1.0000000e-06 / 1.27911 * mg_eps_ch1, # "O",
7373
7.4149321e-07 / 1.72504 * mg_eps_ch1, # "OM",
7474
1.5055290e-06 / 0.84961 * mg_eps_ch1, # "OA",
75-
2.3195290e-06 / 0.63980 * mg_eps, # "N",
75+
2.3195290e-06 / 0.63980 * mg_eps_ch1, # "N",
7676
5.0625000e-06 / 0.29314 * mg_eps_ch1, # "NT",
7777
2.3195290e-06 / 0.63980 * mg_eps_ch1, # "NL",
7878
3.3892810e-06 / 0.43786 * mg_eps_ch1, # "NR",
@@ -98,7 +98,7 @@
9898
0.0022619536 / 1.27911 * mg_eps_ch1, # "O",
9999
0.0022619536 / 1.72504 * mg_eps_ch1, # "OM",
100100
0.0022619536 / 0.84961 * mg_eps_ch1, # "OA",
101-
0.0024364096 / 0.63980 * mg_eps, # "N",
101+
0.0024364096 / 0.63980 * mg_eps_ch1, # "N",
102102
0.0024364096 / 0.29314 * mg_eps_ch1, # "NT",
103103
0.0024364096 / 0.63980 * mg_eps_ch1, # "NL",
104104
0.0024364096 / 0.43786 * mg_eps_ch1, # "NR",

0 commit comments

Comments
 (0)