-
Notifications
You must be signed in to change notification settings - Fork 67
Add diffusion calculation from multiple time origins and toroidal-view scheme #1032
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
original diffusion calc
… scheme keyword for unwrap.
consistent with previous behavior
Jenkins failure is yet another python error I cannot reproduce locally. I am not a fan of python. |
@swails @hainm if you get a chance can you see if you can reproduce this pytraj error: https://jenkins.jasonswails.com/blue/organizations/jenkins/amber-github%2Fpytraj/detail/pytraj/599/pipeline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Version 6.19.3. Adds new commands and keywords related to the calculation of diffusion constants.
calcdiffusion
Analysis command.tordiff
Action command.scheme
keyword to theunwrap
Action command.The
calcdiffusion
analysis command will calculate diffusion from multiple time origins.This command does not perform imaging, so coordinate need to be unwrapped prior. This is the first Analysis command to be MPI parallelized (and is also OpenMP parallelized).
The
tordiff
action command calculate diffusion using the toroidal-view-preserving scheme (https://arxiv.org/abs/2303.09418), which is an alternate way of unwrapping NPT trajectories. It only works for orthogonal cells currently.The
scheme
keyword for theunwrap
Action ([scheme {frac|tor}]
) will optionally use the toroidal-view-preserving scheme for unwrapping instead of the default of fractional coordinates. This currently only works by molecule and for orthogonal unit cells.Updates the manual and also adds tests.