Skip to content
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

Fix lammps impropers docstring #1120

Merged
merged 2 commits into from
May 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mbuild/formats/lammpsdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ def _get_improper_dihedral_types(
"""
Will get the improper types from a parmed structure and convert them to lammps real units.

Type harmonic https://docs.lammps.org/improper_harmonic.html.
Type cvff https://docs.lammps.org/improper_cvff.html
"""
lj_unit = 1 / epsilon_conversion_factor
improper_dihedrals = []
Expand Down Expand Up @@ -1025,7 +1025,7 @@ def _get_impropers(
"""
Will get the improper types from a parmed structure and convert them to lammps real units.

Type cvff https://docs.lammps.org/improper_cvff.html
Type harmonic https://docs.lammps.org/improper_harmonic.html.
"""
lj_unit = 1 / epsilon_conversion_factor
unique_improper_types = dict(
Expand Down