Band structure plotΒΆ

This example shows how to plot a band structure using the eigenvalues stored in the GSR file produced at the end of the GS run.

from abipy.abilab import abiopen
import abipy.data as abidata

Here we use one of the GSR files shipped with abipy. Replace filename with the path to your GSR file or your WFK file.

filename = abidata.ref_file("si_nscf_GSR.nc")

Open the GSR file and extract the band structure. (alternatively one can use the shell and abiopen.py OUT_GSR.nc -nb to open the file in a jupyter notebook.

with abiopen(filename) as ncfile:
    ebands = ncfile.ebands

Plot the band energies with matplotlib. Note that the labels for the k-points are found automatically in an internal database. Use with_gaps to show fundamental and direct gaps.

ebands.plot(with_gaps=True, title="Silicon band structure")
Silicon band structure, Si$_{2}$: $E^{dir}_{gap}$ = 2.53, $E^{fund}_{gap}$ = 0.52 (eV)

Out:

<Figure size 640x480 with 1 Axes>

For the plotly version, use:

ebands.plotly(with_gaps=True, title="Silicon band structure")

# .. warning:
#
# Note that, for the time being, ``with_gaps`` is incompatible with the ``title`` argument.


Plot the BZ and the k-point path with matplotlib

ebands.kpoints.plot()
plot ebands

Out:

<Figure size 640x480 with 1 Axes>

Total running time of the script: ( 0 minutes 1.239 seconds)

Gallery generated by Sphinx-Gallery