Rosseland And Planck Opacity Converter
Project description
RAPOC: Rosseland And Planck Opacity Converter
The RAPOC
code is written by Lorenzo V. Mugnai and Darius Modirrousta-Galian and is the product
of a collaboration between Sapienza Università di Roma, Università degli Studi di Palermo and
INAF - Osservatorio Astronomico di Palermo. It uses molecular absorption measurements
(i.e. wavelength-dependent opacities) to calculate Rosseland and
Planck mean opacities that are commonly used in atmospheric modelling.
RAPOC
is designed to be simple, straightforward, and easily incorporated
into other codes. It is completely written in Python and documented with docstrings.
In addition, a Sphinx version of the documentation with a full user guide
that includes examples is available in html format.
Reports
RAPOC
is under development, please report any issues or inaccuracies
to the developers to support the implementation.
Cite
If you use this code or its results, please cite RAPOC: the Rosseland and Planck opacity converter
by Mugnai L. V. and Modirrousta-Galian D. (submitted).
Installation
Installing from Pypi
RAPOC
can be installed from the Pypi repository with the following script::
pip install rapoc
Installing from git
RAPOC
may also be cloned from the main git repository::
git clone https://github.com/ExObsSim/Rapoc-public.git
The next step is to move into the RAPOC
folder::
cd /your_path/Rapoc
Then::
pip install .
To check if one has the correct setup::
python -c "import rapoc"
Use
RAPOC
is designed to be used on its own or in conjunction with other Python
codes. Given an ExoMol file in the TauREx.h5 format, Rosseland and Planck mean opacities can be calculated.
For example, in order to estimate the mean opacities at a temperature (T) of 1000 K with a pressure (P) of
10,000 Pa in the wavelength range of 0.3-50 micron the following script is used,
from rapoc import Rosseland, Planck
r_model = Rosseland(input_data='exomol_file.TauREx.h5')
opacity = r_model.estimate(P_input=10000 * u.Pa, T_input=1000 * u.K, band=(0.3 *u.um, 50*u.um))
p_model = Planck(input_data='exomol_file.TauREx.h5')
opacity = p_model.estimate(P_input=10000 * u.Pa, T_input=1000 * u.K, band=(0.3 *u.um, 50*u.um))
Inputs
To run the code you need measured data. The supported file formats are:
- ExoMol opacities (downloadable here) with the
TauREx.h5
format.
Documentation
The full documentation is available here
Alternatively, RAPOC
accepts user-defined documentation by using sphinx
. To install it run
pip install sphinx sphinx_rtd_theme
From the Rapoc/docs
folder running
cd docs
make html
This will create a html version of the documentation in Rapoc/doc/build/html/index.html
.
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 Distribution
Built Distribution
File details
Details for the file rapoc-1.0.5.tar.gz
.
File metadata
- Download URL: rapoc-1.0.5.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/51.3.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4b9dcbf1ef6c80456e0a9da1d8f5bbf48a4fd570854320940d0c770404e07b5 |
|
MD5 | 746927f86be0783be0dd96f139786f0f |
|
BLAKE2b-256 | 6e470d657bfa874ba30e2175c635a5b97edf855d13d9d5a6b074c60d100deb5b |
File details
Details for the file rapoc-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: rapoc-1.0.5-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/51.3.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63a6a65c3f5502156df054ec233106a8eb620e5c8bb9e7c8cfbad301751cc58a |
|
MD5 | 32d7405de393ee174c0ba3c7791654a5 |
|
BLAKE2b-256 | 373d81d97ae69825f66898c8f50216c2e04ac8860bb3e23842ff9e575ee4b55e |