-
Notifications
You must be signed in to change notification settings - Fork 834
ENH: support GMX linear angle potential #5372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -68,6 +68,7 @@ | |
| TPR2020B2, | ||
| INPCRD, | ||
| TPR_gh_5145, | ||
| TPR_linear_angle, | ||
| ) | ||
| import MDAnalysis as mda | ||
| from MDAnalysis.coordinates.TPR import TPRReader | ||
|
|
@@ -84,6 +85,16 @@ | |
| # NOTE: expected values are expressed in nm | ||
| # units and converted to Angstrom in the body | ||
| # of the test below, before assertions | ||
|
|
||
| # see gh-5361 for CO2/linear angle: | ||
| ( | ||
| TPR_linear_angle, | ||
| [1.250, 1.250, 1.250], | ||
| [1.250, 1.260, 1.136], | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we may have a problem here with the TPR coordinate parsing using nm instead of MDA A units. The correponding
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a separate matter if I'm right though..
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For completeness: #5373 was addressed by you :-) |
||
| (3, 3), | ||
| [0, 0, 0], | ||
| [0, 0, 0], | ||
| ), | ||
| # this case is an alanine dipeptide | ||
| # with neural network potential active | ||
| # and nonzero velocities | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tylerjereddy please check that you're happy with the entry