/usr/share/pyshared/ase/test/h2.py is in python-ase 3.6.0.2515-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | from ase import Atoms
from ase.calculators.emt import EMT
h2 = Atoms('H2', positions=[(0, 0, 0), (0, 0, 1.1)],
calculator=EMT())
print h2.calc.get_numeric_forces(h2)
print h2.get_forces()
|