Free Spinless Fermions on Kagome Lattice
In this section, it is illustrated how the density of states (DOS) and Fermi surfaces (FS) of tight-binding systems can be computed with the free spinless fermions on Kagome lattice as the example.
Lattice structure
Let's first define the structure of the Kagome lattice and display it by the QuantumLattices package:
using QuantumLattices
using Plots
# define the unitcell of the Kagome lattice
unitcell = Lattice([0.0, 0.0], [0.5, 0.0], [0.25, √3/4]; vectors=[[1.0, 0.0], [0.5, √3/2]])
# define a finite Kagome lattice containing 8×8 unitcells with the open boundary condition
lattice = Lattice(unitcell, (8, 8))
# plot the finite lattice
plot(lattice, 1)
Energy bands
Now let's calculate the energy bands of the Kagome lattice:
using TightBindingApproximation
# define the Hilbert space (single-orbital spinless complex fermion)
hilbert = Hilbert(site=>Fock{:f}(1, 1) for site=1:length(unitcell))
# define the terms, i.e., the nearest-neighbor hopping
t = Hopping(:t, -1.0, 1)
# define the tight-binding-approximation algorithm
kagome = Algorithm(:Kagome, TBA(unitcell, hilbert, t))
# define the path in the reciprocal space to compute the energy bands
path = ReciprocalPath(reciprocals(unitcell), hexagon"Γ-K-M-Γ", length=100)
# compute the energy bands along the above path
energybands = kagome(:EB, EnergyBands(path))
# plot the energy bands
plot(energybands)
Density of states
The total DOS can be computed as follows:
# define the Brillouin zone
brillouinzone = BrillouinZone(reciprocals(unitcell), 120)
# compute the total DOS and plot the results
dos = kagome(
:TotalDensityOfStates,
DensityOfStates(brillouinzone; emin=-5.0, emax=5.0, ne=201, fwhm=0.1)
)
plot(dos)
There are three peaks in the DOS. The one at 2 reflects the flat upper energy band, and the ones at 0 and -2 implies the Van Hove singularities of the middle and lower energy bands, respectively.
On the other hand, the DOS of a specific generalized orbital on a given sets of bands can also be computed:
# the total DOS of the lower two bands
dos = kagome(
:DensityOfStatesWithoutUpperBand,
DensityOfStates(brillouinzone, 1:2; emin=-5.0, emax=5.0, ne=201, fwhm=0.1)
)
plot(dos)
# the total DOS of the three sublattices, respectively (degenerate)
dos = kagome(
:SublatticeDensityOfStates,
DensityOfStates(brillouinzone, :, [1], [2], [3]; emin=-5.0, emax=5.0, ne=201, fwhm=0.1)
)
plot(dos; labels=["Sublattice 1" "Sublattice 2" "Sublattice 3"], legend=true)
# the DOS of the three sublattices on the lower two bands, respectively (degenerate)
dos = kagome(
:SublatticeDensityOfStatesWithoutUpperBand,
DensityOfStates(brillouinzone, 1:2, [1], [2], [3]; emin=-5.0, emax=5.0, ne=201, fwhm=0.1)
)
plot(dos; labels=["Sublattice 1" "Sublattice 2" "Sublattice 3"], legend=true)
Fermi surface
When the Fermi level of the system sets at the Van Hove singularity of the middle band, the FS is also in the shape of a Kagome lattice:
# define a reciprocal zone proper to show the FS
reciprocalzone = ReciprocalZone(
[[4*pi/√3, 0.0], [0.0, 4*pi/√3]], -1.0=>1.0, -1.0=>1.0;
length=600, ends=(true, true)
)
# Fermi level at 0, i.e., the upper Van Hove singularity
fs = kagome(:FermiSurface, FermiSurface(reciprocalzone, 0))
plot(fs)
As is similar to DOS, specific orbital components of a specific set of bands on the Fermi level can also be computed, as shown by the following codes:
# Fermi level at 0, the three sublattice components at the FS, respectively
fs = kagome(:SublatticeFermiSurface, FermiSurface(reciprocalzone, 0, 1:2, [1], [2], [3]))
plot(fs; xlabelfontsize=8, ylabelfontsize=8)