STM images¶
The STM is a revolutionary experimental surface probe that has provided direct local insight into the surface electronic structure. Sometimes the interpretation of STM topographs are not straightforward and therefore theoretically modeled STM images may resolve conflicting possibilities and point to an underlying atomistic model. ASE includes python modules for generating Tersoff-Hamann STM topographs.
The calculated tunneling current will be proportional to:
where \(V\) is the bias voltage, \(w_{\mathbf k}\) is the \(\mathbf k\)-point weight and \(\Psi_{\mathbf k n}(\mathbf r)\) is the wave function.
See also
More details:
- class ase.dft.stm.STM(atoms, symmetries=None, use_density=False)[source]¶
Scanning tunneling microscope.
- atoms: Atoms object or filename
Atoms to scan or name of file to read LDOS from.
- symmetries: list of int
List of integers 0, 1, and/or 2 indicating which surface symmetries have been used to reduce the number of k-points for the DFT calculation. The three integers correspond to the following three symmetry operations:
[-1 0] [ 1 0] [ 0 1] [ 0 1] [ 0 -1] [ 1 0]
- use_density: bool
Use the electron density instead of the LDOS.
- get_averaged_current(bias, z)[source]¶
Calculate avarage current at height z (in Angstrom).
Use this to get an idea of what current to use when scanning.
- linescan(bias, current, p1, p2, npoints=50, z0=None)[source]¶
Constant current line scan.
Example:
stm = STM(...) z = ... # tip position c = stm.get_averaged_current(-1.0, z) stm.linescan(-1.0, c, (1.2, 0.0), (1.2, 3.0))
- scan(bias, current, z0=None, repeat=(1, 1))[source]¶
Constant current 2-d scan.
Returns three 2-d arrays (x, y, z) containing x-coordinates, y-coordinates and heights. These three arrays can be passed to matplotlibs contourf() function like this:
>>> import matplotlib.pyplot as plt >>> plt.contourf(x, y, z) >>> plt.show()
- scan2(bias, z, repeat=(1, 1))[source]¶
Constant height 2-d scan.
Returns three 2-d arrays (x, y, I) containing x-coordinates, y-coordinates and currents. These three arrays can be passed to matplotlibs contourf() function like this:
>>> import matplotlib.pyplot as plt >>> plt.contourf(x, y, I) >>> plt.show()