A C++ library to perform efficient Exact Diagonalizations of quantum many body systems.
- Basic algebra of operators in quantum many-body systems
- Iterative linear algebra for computing eigendecompositions and time-evolutions (e.g. Lanczos algorithm)
- Local spin, t-J, or fermionic models
- Full support of generic space group symmetries
- parallelization both with OpenMP and MPI
- modern C++17 impementation simplifying usage
- wrapped in a convenient Julia library: XDiag.jl
Clone this repository first. Afterwards, the xdiag library can be compiled using the standard CMake instructions
cmake -S . -B build
cmake --build build
cmake --install build
#include <xdiag/all.hpp>
using namespace xdiag;
int main() try {
int nsites = 16;
int nup = nsites / 2;
Spinhalf block(nsites, nup);
// Define the nearest-neighbor Heisenberg model
OpSum ops;
for (int i = 0; i < nsites; ++i) {
ops += "J" * Op("SdotS", {i, (i + 1) % nsites});
}
ops["J"] = 1.0;
set_verbosity(2); // set verbosity for monitoring progress
double e0 = eigval0(ops, block); // compute ground state energy
Log("Ground state energy: {:.12f}", e0);
} catch (Error e) {
error_trace(e);
}
The full documentation is available at awietek.github.io/xdiag.
author: Alexander Wietek license: Apache License 2.0