General purpose Slater-Koster tight-binding code for electronic structure calculations
tightbinder is a Python library for electronic structure calculations based on the Slater-Koster approximation for tight-binding models. It provides all the necessary tools to build,
modify and characterize any crystalline or disordered material.
The construction of a Slater-Koster model relies on the definition of a configuration file, which contains all the information needed to build the model.
Namely, one has to specify completely the crystalline structure, i.e. the Bravais vectors and motif, and the electronic structure which amounts to the
orbitals, onsite energies and hoppings between orbitals. The configuration file then fully characterizes the Slater-Koster models and constitutes the starting point for the majority of the calculations done
with the library. Alternatively, it is also possible to define custom models that can still leverage the capabilities of the package.
The features of the library are:
For a complete description of the capabilities of the package, we refer to the documentation where several usage examples can be found together with the full API
reference.
Usage of a virtual environment is recommended in general to avoid conflicts between packages.
To install the latest version of the package, simply run:
pip install tightbinder
Alternatively, you can clone the repository to get the most up-to-date version of the package.
git clone https://github.com/alejandrojuria/tightbinder.git
From the root folder of the repository, install the library (which will automatically install the required dependencies):
cd {path}/tightbinder
pip install .
The documentation can be accessed online. To build it, you must have installed GNU Make and the library itself. Additional requirements to build documentation can be installed by specifying docs qualifier when installing tightbinder
cd {path}/tightbinder
pip install ".[docs]"
Then, cd docs/
and then, run make html
to build the documentation. It will be created in docs/build/html
, and can be accessed through index.html
.
The library is still under development as new features and optimizations are added. Therefore, any kind of contribution is welcome, from completing the documentation, bug fixing, adding new features or reporting bugs of the library.
In general, any contribution should stick to the PEP style guidelines. If in doubt, do not hesitate to contact!