Python libraries for irbasis
Project description
irbasis
Open-source database and software for intermediate-representation basis functions of imaginary-time Green's function and Python and C++ libraries
Detailed instructions are available online. Please also check our citation policy.
Below we will briefly describe this software.
Table of Contents
License
This software is released under the MIT License, see LICENSE.txt.
Structure
We briefly describe files constituting this software below.
- c++/irbasis.hpp
C++ library - python/irbasis.py
Python library - database/irbasis.h5
Database file (Lambda=10,102, 103, 104). You can download an extended database file containing data for Lambda = 105, 106, 107 additionally. - sample/
Directory including samples in C++ and Python - test/
Unit tests in C++ and Python
Installation
Python
You need to install only a few standard scientific libraries (such as numpy, h5py) shown in our PyPI project page. If you install irbasis through pip, pip will take care of these dependencies properly.
We strongly recommend to install the irbasis library using the standard Python package system. This package contains the data file (irbasis.h5) as well.
python -mpip install -U pip
python -mpip install -U irbasis
Alternatively, we can put irbasis.py and irbasis.h5 into your working directory. You can load irbasis and use the full functionality.
If you want run sample Python scripts, please also install additional Python packages (scipy, matplotlib) using the following command.
pip install scipy matplotlib
C++
You need a C++03-compatible compiler. The use of the C++ irbasis library requires only the HDF5 C library (not C++).
The C++ library consists of a single header file. All what you need to do is to include irbasis.hpp in your C++ project. The data file irbasis.h5 will be read at runtime. Please do not forget to link your executable to the HDF5 C library.
Usage
In the following, we demonstrate how to use irbasis database. The irbasis database is available in Python and C++. irbasis can calculate the IR basis functions, its Fourier transform, the derivatives and corresponding singular values.
In the following, we assume that you have installed the irbasis Python library via pip. If not, please modify the sample script files appropriately to specify the location of a database file (see a comment in api.py).
Some of sample Python scripts depend on scipy and matplotlib.
For other examples, please refer to our online document.
Python
You can download api.py and save it to your working directory. Then, please run the following command.
python api.py
You can study also our step-by-step examples in a jupyter notebook.
C++
You can download api.cpp and step_by_step_examples.cpp to your working directory. After copying irbasis.hpp into the same directory, you can build the sample program as follows (see compile.sh).
g++ api.cpp -o api -I /usr/local/include -L /usr/local/lib -lhdf5 -DNDEBUG -O3
g++ step_by_step_examples.cpp -o step_by_step_examples -I /usr/local/include -L /usr/local/lib -lhdf5 -DNDEBUG -O3
Here, we assume that the header file and the library file of the HDF5 C library are installed into "/usr/local/include" and "/usr/local/lib", respectively. When running the executable, irbasis.h5 must exist in your working directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file irbasis-2.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: irbasis-2.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 22.6 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.22.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfcc73a272165a6d7d3a38e59cce4609ddd52ae6d9109cf2cdd2fdd16166f878 |
|
MD5 | 53dee1886c69fe8ad445356579fbe90b |
|
BLAKE2b-256 | 5fab21ca86e12c9a291fc95b7b07333297d9b30af890ea9fc48342d2711d521a |