wget
and curl
are the two standard tools that are available on most Linux and macOS computers. wget
contains a feature for downloading a list of files:
wget -x -nH -i 'https://opendata.physik.lmu.de/at1en-t9f23/?list'
curl
is missing a feature like that, but the same functionality can be created by combining curl
and xargs
:
curl 'https://opendata.physik.lmu.de/at1en-t9f23/?list' | xargs -I URL -n1 bash -c 'curl --create-dirs -o ${1:31} ${1}' -- URL
This dataset contains the data required to reproduce the plots in the related preprint. The directory data/
is split into two datasets, one at weak and one at strong interaction, corresponding the the two different parameter settings studied. Each of those contains:
siam_****.h5
: This is the vertex as produced by MuNRG, split into all components in such a way that the C++ code (referenced below) can handle it. This data follows the NRG conventions.siam_****_C++.h5
: This is the full NRG state, i.e. the collection of self-energy and vertex and read in by the code. This data follows the QFT conventions.- Another small
.h5
file starting withSIAM
. This file holds the self-energy from an independent 2p NRG calculation. - The other
.h5
files contain the result of an evaluation of the parquet equations or the U(1) WI. Those are needed for the data analysis. - The weak interaction dataset additionally contains a converged solution of the parquet equations. This can be used for benchmark purposes.
- The subdirectory
julia/
contains the data produced by Markus Frankenbach for the NRG vertex, using his julia implementation for computing a vertex from NRG partial spectral functions.
The directory scripts/
contains the the ipython notebook plots_for_paper.ipynb
used for generating the plots for the paper found in the directory plots/
. In addition, the python script arrange_Markus_data.py
is used to bring the data from M.F. (in the julia/
subdirectories) into the form of siam_****.h5
required by the code.
Related Code
N. Ritz and A. Ge, KeldyshQFT
: A C++ Codebase for real-frequency multiloop functional renormalization group and parquet computations for the single impurity Anderson model, https://github.com/NepomukRitz/KeldyshQFT
