Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chianti-atomic/ChiantiPy
ChiantiPy is a python package to calculate the radiative properties of astrophysical plasmas based on the CHIANTI atomic database
https://github.com/chianti-atomic/ChiantiPy
astrophysics chianti chianti-atomic-database python spectroscopy
Last synced: 3 months ago
JSON representation
ChiantiPy is a python package to calculate the radiative properties of astrophysical plasmas based on the CHIANTI atomic database
- Host: GitHub
- URL: https://github.com/chianti-atomic/ChiantiPy
- Owner: chianti-atomic
- Created: 2016-02-17T15:27:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-26T17:41:44.000Z (3 months ago)
- Last Synced: 2024-07-27T23:10:35.501Z (3 months ago)
- Topics: astrophysics, chianti, chianti-atomic-database, python, spectroscopy
- Language: Python
- Size: 10.5 MB
- Stars: 62
- Watchers: 7
- Forks: 33
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: licenses/LICENSE
Awesome Lists containing this project
- awesome-spectra - ChiantiPy
README
# ChiantiPy - Version 0.15.1
[![Documentation Status](http://readthedocs.org/projects/chiantipy/badge/?version=latest)](http://chiantipy.readthedocs.io/en/latest/?badge=latest)
[![Coverage Status](https://coveralls.io/repos/github/chianti-atomic/ChiantiPy/badge.svg?branch=master)](https://coveralls.io/github/chianti-atomic/ChiantiPy?branch=master)
[![ascl:1308.017](https://img.shields.io/badge/ascl-1308.017-blue.svg?colorB=262255)](http://ascl.net/1308.017)ChiantiPy is the Python interface to the [CHIANTI atomic database](http://www.chiantidatabase.org) for astrophysical spectroscopy. It provides the capability to calculate the emission line and continuum spectrum of an optically thin plasma based on the data in the CHIANTI database.
## What is CHIANTI?
CHIANTI provides a database of atomic data that can be used to interpret the emission of spectral lines and continua emitted from high-temperature, optically-thin astrophysical sources. The CHIANTI project provides a suite of routines written in Interactive Data Language (IDL) to access the database and calculate various quantities for use in interpreting observed spectra or producing synthetic spectra. As of ChiantiPy 0.10.0, the CHIANTI database version 10 or later is required## Installation
The following dependencies are required to run ChiantiPy,* [Python3](https://www.python.org/) (Python 3 is now required as of version 0.8.0)
* [Numpy](http://www.numpy.org/)
* [Scipy](https://www.scipy.org/)
* [Matplotlib](http://matplotlib.org/)
* [ipyparallel](https://github.com/ipython/ipyparallel)The following two are extremely useful for running Python programs
* [IPython](http://ipython.org)
* [Jupyter](http://jupyter.org/)Optionally, if you'd like to use the GUI dialogs,
* [PyQt5](https://riverbankcomputing.com/software/pyqt/intro)
If you are not familiar with installing Python and the needed dependencies, we recommend the [Anaconda platform](https://www.continuum.io/downloads). Next, download the [CHIANTI database](http://www.chiantidatabase.org/chianti_download.html), version 10.0 or later. Assuming you've placed the CHIANTI tree in `$HOME`, set the environment variable in your `.bashrc` file,
```Shell
export XUVTOP=$HOME/MY_CHIANTI_DIRECTORY
```
should point to the top directory of your CHIANTI distributionFinally, clone and install the source from GitHub,
```Shell
$ git clone --recursive https://github.com/chianti-atomic/ChiantiPy.git
$ cd ChiantiPy
$ python setup.py install
```
The release is also available on [PyPI](https://pypi.org/project/ChiantiPy/)## Usage
As a quick example, we'll calculate the populations of the top 10 levels of Fe XIV as a function of temperature at constant density and plot them:
```Python
>>> import ChiantiPy.core as ch
>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> temperature = np.logspace(5.8,6.8,21)
>>> fe14 = ch.ion('fe_14',temperature=temperature,eDensity=1.e+9,em=1.e+27)
>>> fe14.popPlot()
>>> plt.show()
```## Help
For more information about installing and using either ChiantiPy or the CHIANTI atomic database, check out the following links:* [ChiantiPy Documentation on ReadTheDocs](https://chiantipy.readthedocs.io/)
* [ChiantiPy Documentation on ChiantiPy.github.io](https://chianti-atomic.github.io/)
* [Chianti Google Mailing List](https://groups.google.com/forum/#!forum/chianti)
* [CHIANTI Atomic Database Webpage](http://www.chiantidatabase.org/)