An efficient implementation of (real axis) IPT-based dynamical mean-field theory for the half-filled Mott-Hubbard transition on the Bethe lattice, within pure MATLAB.
Here we present a few examples of what you can obtain fiddling around the MOTTlab
.
Characterize the interaction-driven quantum Mott transition through different physical markers, such as the timeless classic quasiparticle renormalization weight ZF , or the quantized Luttinger integral IL, getting some exotic hints of a topological interpretation.
Truly visualize what happens at different relevant temperatures by means of pretty animations!
Temperature | DOS | SELF-ENERGY |
---|---|---|
T -> 0: 2nd order MIT |
||
Intermediate T: 1st order MIT |
||
High T: supercritical MIT |
I've tried hard to avoid exceeding with the infamous MathWorks add-ons. At the moment the only additional dependence is the Signal Processing Toolbox, which provides an efficient implementation of the discrete Hilbert transforms, at the heart of the numerical evaluation of the Kramers-Kronig relationships. Nevertheless I provide also a FOSS options, through GNU Octave packages.
First of all you need to install the main software. The easiest way that I know is through Homebrew (you won't need sudo rights, they just take care of everything):
brew install octave
Then run an instance of Octave in your shell (just type octave
) and install the control package, by typing:
pkg install -forge control
Finally proceed to install the signal package, which provides a FOSS implementation1 of the hilbert()
function:
pkg install -forge signal
You should now be set... enjoy!
This code has been implemented taking inspiration from these didactic sources:
- Kristjan Haule lecture on lattice vs local SOPT (local copy).
- Marcelo Rozenberg lecture on DMFT and the MIT (local copy) and the hands-on material linked therein, in particular a tutorial-intended jupyter notebook provided by Óscar Nájera under the BSD 3-Clause License.
Here we provide an efficient pure MATLAB rewrite of the original real-axis IPT algorithm, complemented by basic phase-diagram workflows, convergence and self-mixing control and various post-processing tools. Further material is being added gradually, with the aim to explore novel research ideas. You can find here a roadmap of the project, with a concise description of each addition and references to the relevant research papers.
Everything mantains the original BSD 3-Clause License. You can read more about permitted use and conditions in the LICENSE file.