Published August 30, 2020 | Version v0.9.5
Software Open

pybinding v0.9.5: a Python package for tight-binding calculations

  • 1. University of Antwerp, Belgium

Description

Pybinding is a Python package for numerical tight-binding calculations in solid state physics. The main features include:

  • Declarative model construction - The user just needs to describe what the model should be, but not how to build it. Pybinding will take care of the numerical details of building the Hamiltonian matrix so users can concentrate on the physics, i.e. the quantum properties of the model.

  • Fast compute - Pybinding's implementation of the kernel polynomial method allows for very fast calculation of various physical properties of tight-binding systems. Exact diagonalization is also available through the use of scipy's eigenvalue solvers. The framework is very flexible and allows the addition of user-defined computation routines.

  • Result analysis and visualization - The package contains utility functions for post-processing the raw result data. The included plotting functions are tailored for tight-binding problems to help visualize the model structure and to make sense of the results.

The code interface is written in Python with the aim to be as user-friendly and flexible as possible. Under the hood, C++11 is used to accelerate demanding tasks to deliver high performance with low memory usage.

See the documentation for more details: http://docs.pybinding.site/

 

Changelog for version 0.9.5

It has been a long time since the last version was released. The Python ecosystem has changed quite a bit in the meantime and this has led to a number of compatibility issues when installing or running pybinding. The main purpose of this new version is to bring this library back to life with lots of compatibility fixes and general modernization.

That said, a couple of new features have also snuck in: site and hopping generators should help with the creation of more general models that were not possible before. They make it possible to create heterostructures and systems with various forms of disorder.

Thank you to @MAndelkovic (Miša Anđelković) for making this release possible! And thanks to everyone who reported the various issues.

Necromancy

  • Fixed compatibility issues with Python 3.7 and 3.8. Notably, this fixes the deadlocks as reported in #17, #21, and #23.

  • Fixed compatibility with new versions of matplotlib: the allow_rasterization import error (#11), various warnings, and smaller visual glitches.

  • Fixed installation errors due to the encoding of the changelog.md file (#7).

  • Fixed failure to compile the project from source code because the Eigen library's download URL changed (#14).

  • Fixed deprecation warnings from the latest versions of numpy.

  • Fixed documentation generation with sphinx v2.x.

  • Dropped support for Python 3.5. You must have Python 3.6 or newer to install this version.

General bug fixes

  • Fixed reversed order of Lattice.reciprocal_vectors(): it should be a_n * b_n = 2pi but it was accidentally a_n * b_{N-n} = 2pi.

  • Fixed incorrect Hamiltonian construction in cases where complex hoppings were used together with translational symmetry.

New features

  • Added @site_generator which can be used to add new sites independent of the main Lattice definition. This is useful for creating heterostructures or defects with various add-atoms. See the new "Generators" section of the tutorial.

  • @hopping_generator has been promoted to a regular feature and added to the tutorial. It's useful for creating additional local hoppings around existing sites or connecting completely new sites which were added by a @site_generator.

  • Added System.count_neighbors() which counts the neighbors each site has. Useful for finding edge atoms. Generators can request system as an argument so that they can stitch new atoms to the edges. See the API reference for @site_generator and @hopping_generator.

  • @site_state_modifiers and @site_position_modifiers can now be freely ordered. Before this, all state modifiers would be evaluated first and then all position modifiers. Now, they will be evaluated in the exact order in which they are given to Model. Take care: this may change the behavior of some existing models but it will give more control to create new models which not possible before.

Notes

This work was supported by the Flemish Science Foundation (FWO-Vl) and the Methusalem Funding of the Flemish Government.

Files

dean0x7d/pybinding-v0.9.5.zip

Files (647.7 kB)

Name Size Download all
md5:2ad84477b172f8ba6bb3b52833719605
647.7 kB Preview Download

Additional details