Brillouin zoneΒΆ

brillouin zone
  0% (0 of 31) |                         | Elapsed Time: 0:00:00 ETA:  --:--:--
100% (31 of 31) |########################| Elapsed Time: 0:00:00 Time:  0:00:00
/home/docs/checkouts/readthedocs.org/user_builds/fplore/envs/latest/lib/python3.13/site-packages/pymatgen/symmetry/bandstructure.py:179: UserWarning: The input structure does not match the expected standard primitive! The path may be incorrect. Use at your own risk.
  kpath = KPathSetyawanCurtarolo(self._structure, symprec, angle_tolerance, atol)

import matplotlib.pyplot as plt

from fplore import FPLORun
from fplore.plot import plot_bz

run = FPLORun("../example_data/fermi")

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
plot_bz(run, ax, k_points=True, use_symmetry=True)

plt.show()

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

Gallery generated by Sphinx-Gallery