Replies: 1 comment 3 replies
-
|
Hi @laraujo-1, have you checked the indices of hydrogen bonds found by Also, as you're selecting all water molecules at all frames, you can set h = HBA(
universe=u,
hydrogens_sel="name HW1 HW2",
acceptors_sel="name OW",
d_a_cutoff=r_cut,
d_h_a_angle_cutoff=angle_cut,
update_selections=False,
) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I am looking for some user guidance on how to obtain reference hydrogen bond (H-bond) values in water using MDAnalysis.
The number of H-bonds per molecule in TIP3P water is well-known to be about 3.3, as mentioned in the MDAnalysis user guide. I performed a 10 ns simulation of TIP3P water with GROMACS, and using
gmx hbondwith a donor–acceptor cutoff (r_DA = 3.5 Å) and angle cutoff (a_HAD = 30°), I obtained:HBonds/water = 3.32 ± 0.02
However, I am having difficulty reproducing this value using MDAnalysis.
I understand that MDAnalysis uses the D–H–A angle (rather than H–D–A). I have seen some people using a 120° cutoff for this angle, but even then, the results are not consistent with the reference value. For the same donor–acceptor cutoff of 3.5 Å:
Here is the code I am using:
Could someone provide guidance on how to get the appropriate parameters to reproduce literature values for TIP3P water.
Also any additional considerations for MDAnalysis H-bond detection compared to GROMACS gmx hbond I think would be valuable for the community.
Thanks in advance and best regards,
Lucas
Beta Was this translation helpful? Give feedback.
All reactions