Atomic model for hydrogen recombination lines.
Project description
HyLight
HyLight (HYdrogen recombination LIne emission from ionized Gas in varying tHermal condiTions) calculates the level population of the excited states in atomic hydrogen and hence the typical recombination line emissivity. The results are accurate under typical photoionised nebular conditions.
Installation
The package can be installed via
pip install hylightpy
Examples
Example usage can be found on Google Colab,
or see the examples/ folder.
Example usage
To import the package, type
import hylightpy
Initialisation
Then initialise the class using
HI = hylightpy.HIAtom(nmax = 50, verbose=True, caseB=True,
recom=True, coll=True,
cache_path='./')
where the user specify the number of levels in the hydrogen atom, the Case, and whether to include radiative processes and collisional processes. The user also have the freedom to specify the cache folder path, which will be storing cascade matrix elements. By default, the code will use the currect working directory as to store the cache.
Line emissivity calculation
We utilise unyt package to specify the gas density and temperature.
import unyt
In the following code block, we specify typical nebular conditions:
ne=unyt.array.unyt_array([1e2], 'cm**(-3)')
nHI=unyt.array.unyt_array([1e-5], 'cm**(-3)')
nHII=unyt.array.unyt_array([1e2], 'cm**(-3)')
temp=unyt.array.unyt_array([1e4], 'K')
Then we use the function get_emissivity to calculate the line emissivity at a given density and temperature.
eps = HI.get_line_emissivity(ne=ne,
nHI=nHI,
nHII=nHII,
temp=temp,
nupper=3, nlower=2)
The above line calculates the H $\alpha$ line emissivity at a given gas density (electron density of 100 $\rm{cm}^{-3}$, proton density of 100 $\rm{cm}^{-3}$ and neutral hydrogen density of 1e-5 $\rm{cm}^{-3}$) and temperature (1e4 K).
Level population
The function compute_level_pop computes the level popualtion density. The following line calculates the 3 $p$ state population density at the same condition:
HI.compute_level_pop(nHII=nHII,
ne=ne,
nHI=nHI,
temp=temp,
n=3, l=1)
More examples can be found in the examples/ folder.
Documentation
The documentation is available here.
Method
The method is described in Liu et al. 2025.
License
This package is released under the permissive MIT license.
How to cite?
If you use this code in your work, we kindly ask you to cite Liu et al. 2025.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hylightpy-0.0.23.tar.gz.
File metadata
- Download URL: hylightpy-0.0.23.tar.gz
- Upload date:
- Size: 11.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecf95ead64e2772aa638d35fe25b6388d376f704879c2a020296ad949bce9c20
|
|
| MD5 |
2cae8807b0b05cb8fc15dedf71a79f77
|
|
| BLAKE2b-256 |
25b3b9435dd84412e20ed811065ed9da93cfbea1eb6b2c798268a0638d38f45e
|
File details
Details for the file hylightpy-0.0.23-py3-none-any.whl.
File metadata
- Download URL: hylightpy-0.0.23-py3-none-any.whl
- Upload date:
- Size: 11.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
906cf23826ce9226bd3e072710fdd2fa43b9859e71a4a99c56f4d988430b0ae7
|
|
| MD5 |
0253f963a6b77adf76fb3e5587d3c072
|
|
| BLAKE2b-256 |
4bbb880133a359bf5f358fc1cef7e517af2e98aa64210a82821f040ca8c3d234
|