Skip to content

ifilot/pydft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyDFT

build codecov PyPI License: GPL v3

Note

Python based Density Functional Theory code for educational purposes. The documentation of PyDFT can be found here.

Purpose

PyDFT is a pure-Python package for performing localized-orbital Density Functional Theory (DFT) calculations using Gaussian Type Orbitals. It implements restricted Kohn-Sham DFT for closed-shell molecules and currently supports the LDA and PBE exchange-correlation functionals.

The goal of PyDFT is not to be the fastest DFT code, but to be the most transparent one. It is designed first and foremost as an educational tool that reveals how a DFT calculation is actually assembled, from numerical grids and electron densities to potentials, matrix elements, and the self-consistent field procedure. Every intermediate quantity is exposed to the user and can be inspected, plotted, or modified, and considerable effort was put into documenting the code. PyDFT is not intended for professional calculations and does not offer the speed or breadth of features of mature open-source or commercial packages; what it offers instead is a clear, modifiable view into a working DFT code.

The figure below gives a high-level overview of a complete PyDFT calculation: from molecular input and dependencies, through construction of the Becke grid and one-electron matrices, to the Kohn-Sham SCF iteration and the wide range of quantities exposed for inspection.

Overview of the PyDFT workflow

Tip

Interested in other educational quantum chemical codes? Have a look at the packages below.

  • PyQInt is a hybrid C++/Python (Cython) code for performing Hartree-Fock calculations. This code contains many relevant features, such a geometry optimization, orbital localization and crystal orbital hamilton population analysis.
  • HFCXX is a full C++ code for performing Hartree-Fock calculations.
  • DFTCXX is a full C++ code for performing Density Functional Theory Calculations.

Features

The sections below highlight a few of the capabilities that make PyDFT useful as a teaching and exploration tool.

Numerical integration using Becke grids

Electron-electron interaction terms (both classical as well as exchange-correlation) are performed by means of extensive numerical integration schemes performed over so-called Becke grids. Utilizing these grids, molecular integrals are decomposed into series of weighted atomic integrals.

Becke grids

Molecular orbital visualization

PyDFT can be readily used alongside matplotlib to make figures of molecular orbitals or density fields.

Molecular orbitals of CO

Extensive output

Internal matrices, e.g. overlap or Hamiltonian matrix, are exposed to the user and can be readily visualized using specific matrix visualization routines.

Matrices

Tunable numerical settings

Numerical choices that are usually hidden behind defaults in production codes, such as the radial and angular resolution of the grid, the spherical-harmonic expansion used for the Hartree potential, the exchange-correlation functional, and the SCF convergence criteria, are all exposed directly. This makes it straightforward to study how each setting affects accuracy, stability, and computational cost.

Installation

PyDFT supports Python 3.10 and newer.

To install PyDFT and its core runtime dependencies, run

pip install pydft

The plotting and example scripts use optional visualization dependencies:

pip install "pydft[plot]"

To install the dependencies used by the example scripts, including isosurface support, run

pip install "pydft[examples]"

Usage

Check the current version

import pydft
print(pydft.__version__)

Performing a simple calculation

from pydft import MoleculeBuilder, DFT

CO = MoleculeBuilder().get_molecule("CO")
dft = DFT(CO, basis='sto3g')
res = dft.scf(1e-4)
print("Total electronic energy: %f Ht" % res['energy'])

Community guidelines

License

Unless otherwise stated, all code in this repository is provided under the GNU General Public License version 3.

About

Python-based localized-orbital Density Functional Theory code for educational purposes.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Contributors