File: write_lammps.py

package info (click to toggle)
python-ase 3.26.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,484 kB
  • sloc: python: 148,112; xml: 2,728; makefile: 110; javascript: 47
file content (6 lines) | stat: -rw-r--r-- 170 bytes parent folder | download
1
2
3
4
5
6
from ase.io.opls import OPLSff, OPLSStructure

s = OPLSStructure('172_ext.xyz')
with open('172_defs.par') as fd:
    opls = OPLSff(fd)
opls.write_lammps(s, prefix='lmp')