Home#

_images/eminus.svg _images/eminus_dark.svg

Installation
API reference
User guide
Source code
https://img.shields.io/pypi/v/eminus?color=1a962b https://gitlab.com/wangenau/eminus/badges/main/coverage.svg https://img.shields.io/pypi/pyversions/eminus?color=green https://img.shields.io/badge/license-Apache2.0-yellowgreen https://zenodo.org/badge/431079841.svg

eminus is a pythonic plane wave density functional theory (DFT) code with self-interaction correction (SIC) functionalities. The goal is to create a simple code that is easy to read and easy to extend while using minimal dependencies. It is built upon the DFT++ pragmas proposed by Tomas Arias et al. that aim to let programming languages and theory coincide. This can be shown by, e.g., solving the Poisson equation. In the operator notation of DFT++ the equation reads

\[\boldsymbol \phi = 4\pi\hat L^{-1}\hat O\hat J \boldsymbol n.\]

The corresponding Python code (implying that the operators have been implemented properly) reads

phi = -4 * np.pi * Linv(O(J(n)))