-
Notifications
You must be signed in to change notification settings - Fork 17
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
initial implementation of lammps support #114
base: develop
Are you sure you want to change the base?
Conversation
I added most of the stuff to use the code with LAMMPS in a crude manner. Same as in namd an issue here is that multiple files are required to run a simulation. Similiar issue will be the case when using AMBER. In light of this we should also discuss in this PR how we handle files which have to be provided i.e. whether we just assume that the user has to provide all files with the same name or not. |
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.
Do we have any log files so we can test the file parsers?
mdbenchmark/mdengines/lammps.py
Outdated
continue | ||
|
||
path = line.split()[1] | ||
if "$" in path: |
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.
This is all NAMD specific.
LAMMPS_WARNING = ( | ||
"LAMMPS support is experimental." | ||
"All input files must be in the same directory and have the same base name!" | ||
"We hope you know what you're doing..." |
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.
"We hope you know what you're doing..." |
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 fileencoding=utf-8 | ||
# | ||
# MDBenchmark | ||
# Copyright (c) 2017 Max Linke & Michael Gecht and contributors |
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.
# Copyright (c) 2017 Max Linke & Michael Gecht and contributors | |
# Copyright (c) 2017-2018 The MDBenchmark development team and contributors |
I added the |
Initial support for lammps simulations.
lammps module added, parsing added and test files added.
PR Checklist
./changelog/
(more information)?