https://github.com/theochem/resummation
https://github.com/theochem/resummation
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/theochem/resummation
- Owner: theochem
- License: mit
- Created: 2022-10-21T13:10:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T01:37:04.000Z (almost 2 years ago)
- Last Synced: 2026-01-01T16:33:54.437Z (6 months ago)
- Language: Python
- Size: 17.1 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Resummation
===========
Perturbation series (really any Taylor series) can be resummed to infinite order. This package offer several resummation methods to do this, including Pade, Borel-Pade and Meijer G resummation techniques.
Installation
------------
* Prerequisties:
- Python 3.5 or above
- numpy 1.13.1
- scipy 0.19.1
- mpmath 1.2.1
* Compile from source
git clone https://github.com/theochem/resummation.git
cd resummation
python3 -m pip install -e .
* Using pip to install python package on GitHub
pip install git+https://github.com/theochem/resummation
Quick Start
-----------
To have quick start of using resummation package, please check the [demonstration](https://github.com/theochem/resummation/tree/master/example/resummation.ipynb) in the [example folder](https://github.com/theochem/resummation/tree/master/example).