gftool.onedim_dos

gftool.onedim_dos(eps, half_bandwidth)

DOS of non-interacting 1D lattice.

Diverges at the band-edges abs(eps) = half_bandwidth.

Parameters:
epsfloat np.ndarray or float

DOS is evaluated at points eps.

half_bandwidthfloat

Half-bandwidth of the DOS, DOS(| eps | > half_bandwidth) = 0. The half_bandwidth corresponds to the nearest neighbor hopping t=D/2.

Returns:
float np.ndarray or float

The value of the DOS.

See also

gftool.lattice.onedim.dos_mp

Multi-precision version suitable for integration.

References

[economou2006]

Economou, E. N. Green’s Functions in Quantum Physics. Springer, 2006.

Examples

>>> eps = np.linspace(-1.1, 1.1, num=501)
>>> dos = gt.lattice.onedim.dos(eps, half_bandwidth=1)
>>> import matplotlib.pyplot as plt
>>> _ = plt.plot(eps, dos)
>>> _ = plt.xlabel(r"$\epsilon/D$")
>>> _ = plt.ylabel(r"DOS * $D$")
>>> _ = plt.axvline(0, color='black', linewidth=0.8)
>>> _ = plt.ylim(bottom=0)
>>> _ = plt.xlim(left=eps.min(), right=eps.max())
>>> plt.show()

(png, pdf)

../_images/gftool-onedim_dos-1.png