Exploring exact solutions and practical approximations in many-electron quantum mechanics.
iDEA (the interacting dynamic electrons approach) is a comprehensive software library that enables users to explore and understand the intricacies of many-body quantum mechanics. Developed at the University of York and the École polytechnique, iDEA is written in Python and offers both exact and approximate approaches to quantum mechanics. With its focus on reproducibility, interactivity, and simplicity, iDEA has been used in a variety of research projects to gain insights into fundamental theories, such as density functional theory and many-body perturbation theory, as well as in educational contexts, such as Coursera online courses.
One of the main goals of iDEA is to help users understand when popular approximations used in practical quantum theory calculations may be unreliable and why. By using iDEA to study a variety of systems, researchers can identify the circumstances in which these approximations are least secure and develop more advanced methods for use in materials science.
To install the latest version of the iDEA code:
pip install iDEA-latest
To add iDEA to your poetry environment:
poetry add iDEA-latest
If you would like to develop iDEA, first fork this git repository, and then clone from there.
Add the upstream repository: git remote add upstream https://github.com/iDEA-org/iDEA.git
And then install locally: python setup.py install
For full details of usage please see our tutorial. The full API documentation is available at readthedocs.
Some of iDEA's features:
In order to solve the Schrödinger equation for the two electron atom for the ground-state charge density and total energy:
import iDEA
system = iDEA.system.systems.atom
ground_state = iDEA.methods.interacting.solve(system, k=0)
n = iDEA.observables.density(system, state=ground_state)
E = ground_state.energy
import matplotlib.pyplot as plt
print(E)
plt.plot(system.x, n, 'k-')
plt.show()
We provide a tutorial where you can learn how to use the iDEA code in your research and teaching projects.
More coming soon...
The development and applications of the iDEA code from 2010 to 2021 is documented here.
iDEA can be used to create teaching content, visualisations and expositions. For example, see the following YouTube video created using iDEA.
iDEA was used to create teaching content for the Density Functional Theory MOOC on Coursera.
Dr. Jack Wetherell, Dr. Matt Hodgson and Dr. Leopold Talirz.
We thank all of the developers, PhD students, master's students, summer project interns and researchers for thier key contributions to iDEA:
Sean Adamson, Jacob Chapman, Thomas Durrant, Razak Elmaslmane, Mike Entwistle, Rex Godby, Matt Hodgson, Piers Lillystone, Aaron Long, Robbie Oliver, James Ramsden, Ewan Richardson, Matthew Smith, Leopold Talirz and Jack Wetherell.
To get involved:
iDEA supports python 3.8+
along with the following dependences:
numpy >= "1.22.3"
scipy >= "1.8.0"
matplotlib >= "3.5.1"
jupyterlab >= "3.3.2"
tqdm >= "4.64.0"