/usr/share/pyshared/ase/test/stm.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.calculators.test import make_test_dft_calculation
from ase.dft.stm import STM
atoms = make_test_dft_calculation()
stm = STM(atoms, [0, 1, 2])
c = stm.get_averaged_current(4.5)
h = stm.scan(c)
|