IPython notebook Assignments: Week 1/SSH Model.ipynb
Week 1, Second Task: SSH Model
Expectations
The SSH-chain consists of a 2-atom basis, which allows us to define sublattices and . E.g. atom sits at relative coordinate , whereas the atom sits at relative coordinate in the unit cell.
As we vary the relative strength of the intracell interaction and intercell interaction , we expect to observe two regimes. In the case, dimers will form within each unit cell, leaving no unpaired electrons on the end. In the regime, dimers will form across the unit-cell boundaries, and unpaired electrons will remain on the atom on one side and the atom on the other side.
So long as sublattice symmetry persists, we expect two degenerate states at zero energy. (Why zero energy, though?) As soon as sublattice symmetry is broken (for example by setting different on-site energies on both sublattices), it's clear the degenerate states will split into a state where the -lattice occupation dies out, and one where the -lattice occupation dies out.
Numerics
We perform a quick Tight-Binding simulation for the SSH-chain model using the PythTB package. While Kwant seems like a powerful tool for transport calculations, it doesn't seem like a TB package at heart. By the "The right tool for the right job" maxim, we opted for PythTB instead.
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-3-d334574036e3> in <module>()
----> 1 from pythtb import *
2
3 def make_ssh_model(L, t1, t2, mu):
4
5 lat = [[1.0]]
ImportError: No module named pythtb
Some routines for plotting the spectrum and corresponding site occupations side to side. Largely an exact copy from the MOOC source-code.
An interactive plot of the spectrum and occupations as is varied. It is clear the transition from trivial to topological occurs around . We have plotted the occupations of -lattice electron (blue) and -lattice (green) seperately per unit cell, so it is clear that indeed, in the topological regime, an electron is localized on the left-hand -site, and the other on the right-hand -site.
In the next interactive plot, we play around with sublattice symmetry by introducing opposite on-site energies for and sites respectively. It's clear that breaking the symmetry immediately lifts the degeneracy of the edge-electron states as one edge electron becomes unoccupied and spreads over the bulk.