easyunfold Documentation#

build docs codecov PyPI Downloads JOSS

This package is intended for obtaining the effective band structure of a supercell for a certain k-point path of the primitive cell. It was originally based on PyVaspwfc for reading VASP wavefunction outputs, with a notable improvement being that symmetry-breaking is properly accounted for by sampling necessary additional k-points and averaging accordingly. Typical applications of band structure unfolding are the electronic structure analysis of defects, disorder, alloys, surfaces (and more), as illustrated in the example outputs below and docs examples.

Our goal is to implement the band structure unfolding workflow in a robust and user-friendly software package.

For the methodology of supercell band unfolding, see here.

Example Outputs#

Cs₂(Sn/Ti)Br₆ Vacancy-Ordered Perovskite Alloys

Oxygen Vacancy (Vₒ⁰) in MgO

_images/CSTB_easyunfold.gif

_images/unfold_project_MgO_v_O_0_tall.png

Tip

See the easyunfold YouTube tutorial for a quick overview of the theory of band structure unfolding, and a walkthrough of the calculation & analysis workflow with easyunfold.

Usage#

To generate an unfolded band structure, one typically needs to perform the following steps:

  1. Create a primitive unit cell, and generate a band structure k-point path corresponding to this primitive cell.

  2. Create a supercell (e.g. disordered, defective, surface slab etc.), and obtain its optimised structure.

  3. Generate a series of k-points for the supercell to be calculated.

  4. Perform a band structure calculation with the supercell, and save its wavefunction output to file.

  5. Post-process the supercell wavefunction to obtain the unfolded band structure in the k-point path of the primitive unit cell.

These generation and analysis steps are automated in easyunfold, with only the primitive unit cell and supercell structures required as inputs from the user.

Typically, the supercell comprises some form of symmetry-breaking relative to the primitive cell, such as defects, disorder (e.g. special quasi-random structures (SQS) for site disorder – other forms of disorder such as magnetic, dynamic/vibrational, polar, elastic etc. also possible), or a surface/interface slab. In all cases, the supercell symmetry is lowered compared to the pristine primitive cell. Hence, for a given k-point path in the primitive cell Brillouin Zone, additional k-points are required to be sampled for the supercell, and the extracted spectral weights need to be appropriately averaged to obtain the correct effective band structure (EBS). See the docs Theory page and/or JOSS paper for more details.

Citation#

If you use easyunfold in your work, please cite:

  • B. Zhu, S. R. Kavanagh & D. O. Scanlon, (2024). easyunfold: A Python package for unfolding electronic band structures. Journal of Open Source Software, 9(93), 5974, https://doi.org/10.21105/joss.05974

Studies using easyunfold#

We’ll add papers that use easyunfold to this list as they come out!

  • S. M. Liga & S. R. Kavanagh, A. Walsh, D. O. Scanlon and G. Konstantatos Mixed-Cation Vacancy-Ordered Perovskites (Cs2Ti1–xSnxX6; X = I or Br): Low-Temperature Miscibility, Additivity, and Tunable Stability Journal of Physical Chemistry C 2023

  • Y. T. Huang & S. R. Kavanagh et al. Strong absorption and ultrafast localisation in NaBiS2 nanocrystals with slow charge-carrier recombination Nature Communications 2022

  • A. T. J. Nicolson et al. Interplay of Static and Dynamic Disorder in the Mixed-Metal Chalcohalide Sn2SbS2I3 Journal of the Americal Chemical Society 2023

  • Y. Wang & S. R. Kavanagh et al. Cation disorder engineering yields AgBiS2 nanocrystals with enhanced optical absorption for efficient ultrathin solar cells Nature Photonics 2022 (early version)

DFT code support#

At the moment, easyunfold supports VASP and CASTEP, but most of the routines are abstracted from the code specific details. In principle, support for other plane wave DFT code can be added by:

  • Implementing a subclass of WaveFunction that handles reading the wave function output.

  • Implementing functions for reading/writing k-points.

  • Adding branches for dispatching based on the dft_code attribute of the UnfoldKSet object in various places within the code.

The Atomic Simulation Environment (ASE) is used by easyunfold for reading in structures, so structure file IO is natively supported for essentially all public DFT codes.

In fact, ASE can already run band structure calculations using many plane-wave DFT codes. However, reading the plane wave coefficients from calculation outputs is not widely supported yet, which are needed here for band unfolding. Nevertheless, using ASE’s existing IO framework to widen the code support can be a fruitful direction for further development.

Code Compatibility Notes#

  • Atom-projected band structures are currently only supported for VASP calculation outputs.

  • Gamma-only and non-collinear spin calculations are not supported for CASTEP.

Contributors#

And those who helped in the development:

Bugs reports and feature requests#

Bug reports and feature requests are well come. If you found any bug or missing features please report it on the Issue Tracker.

Seeking support#

If you need support about using the software, please open a ticket with the help wanted label on the Issue Tracker.

Contributing#

Code contributions#

We welcome your help in improving and extending the package with your own contributions. This is managed through GitHub pull requests; for external contributions, we prefer the fork and pull workflow while core developers use branches in the main repository:

  1. First open an Issue to discuss the proposed contribution. This discussion might include how the changes fit easyunfold’s scope and a general technical approach.

  2. Make your own project fork and implement the changes there. Please keep your code style compliant and use the pre-commit hooks.

  3. Open a pull request to merge the changes into the main project. A more detailed discussion can take place there before the changes are accepted.

Development#

To develope the package, please clone it on GitHub and install it with the doc and test extras so all dependencies needed for development are installed:

git clone https://github.com/SMTG-Bham/easyunfold
pip install -e "./easyunfold[doc,test]"

To run the tests, simply run the pytest command while in the top-level code repository.

To build the documentation, run the make html command while in the docs directory.

If you want to add new features, please also include a test case to check that they work as expected. For more information please consult pytest’s documentation.

Please note that we use pre-commit hooks for code formatting and linting. Please install them using pre-commit install so these hooks can run before committing code updates.