2Center for Computational Quantum Physics, Flatiron Institute, New York, USA
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/xeqvs-w3p49/?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/xeqvs-w3p49/?list' | xargs -I URL -n1 bash -c 'curl --create-dirs -o ${1:31} ${1}' -- URL
Contact: nepomuk.ritz@physik.uni-muenchen.de
This dataset contains the data required to reproduce the plots in the related preprint.
The directory data/
includes the raw data, in .hdf5
format, for the two-point functions from fRG, PA, K1SF, PT2 and NRG computations needed to extract the response functions studied in the paper, as well as data for the two-particle (i.e. four-point) vertex. The NRG data for the four-point vertex are provided in .mat
and .npy
format.
The notebook data_analysis.ipynb
together with the module data_container.py
provides all details, including the full data analysis and the plotting scripts to reproduce the plots, which themselves can be found in the directory plots/
.
Related preprint
Anxiang Ge, Nepomuk Ritz, Elias Walter, Santiago Aguirre, Jan von Delft and Fabian B. Kugler, Real-frequency quantum field theory applied to the single-impurity Anderson model, arXiv:2307.10791, https://doi.org/10.48550/arXiv.2307.10791