There is a newer version of the record available.

Published December 10, 2024 | Version v1.0

MAPPINGS V Ionization Models

  • 1. ROR icon University of Edinburgh

Contributors

  • 1. ROR icon University of Edinburgh

Description

MAPPINGS V v5.2.1 Ionization Models

File Names

File names are meant to be intuitive and indicate the ionization source with a
prefix and the contents with a suffix. A full list of prefixes is provided here.

Model Prefix
AGN Jin+ 2012 agn-jin12
AGN OXAF isobaric agn-oxaf-cpr
AGN OXAF isochoric agn-oxaf-cdn
BPASS isobaric bpass-cpr
BPASS isochoric bpass-cdn
STARBURST99 isobaric sb99-cpr
STARBURST99 isochoric sb99-cdn
shocks shck
precursor prec
shock + precursor shckprec
dusty shocks shck-dst
dusty precursor prec-dst
dusty shock + precursor shckprec-dst

Files ending in _fluxes.csv contain the line fluxes relative to Hβ.
Files ending in _propts.csv contain nebular properties of the model ionized
region.

Table Formats

Formatting is by comma-separated values. The first column will always be the
model identifier, or key. This key is specific to a row in both the flux and
properties tables of the same prefix. Tables are sorted by key identifier, which
can be used to ensure that fluxes and properties are properly matched.

The next few subsequent columns contain the unique assumptions regarding that
particular model, including ionization parameter, metallicity, velocity,
density, magnetic field strength, and ionizing SED.

Future work will enable use of keys to join tables via SQL. Presently, we
recommend users join tables using pandas as in the following example for the
shock+precursor models, eliminating any duplicate column headings.

>> import pandas as pd
>> fluxes = pd.read_csv('shock-precursor_fluxes.csv')
>> propts = pd.read_csv('shock-precursor_propts.csv)
>> joiner = [k for k in fluxes.keys() if k in propts.keys()]
>> shkprc = fluxes.merge(propts, how='inner', on=joiner)

Multiple model sets can also be combined using pandas as in the following
example for BPASS isobaric and isochoric models:

>> import pandas as pd
>> bpass_cpr = pd.read_csv('bpass-cpr_fluxes.csv')
>> bpass_cdn = pd.read_csv('bpass-cdn_fluxes.csv')
>> bpass_tot = pd.concat([bpass_cpr,bpass_cdn])
>> bpass_tot.reset_index(inplace=True)

Lines Included

We include a large suite of lines spanning FUV through the MIR. Only a subset of
these lines were considered for our inaugural publication, which focused on the
stronger FUV lines. These lines include emission from various species of the
following elements:
H, He, C, N, O, S, Ne, Ar, Si, and Fe.

Lines are labeled following PyNeb formatting:

EI_WaveU

where E is the element (e.g., O for oxygen), I is the ion species as an Arabic
numeral, Wave is the wavelength, and U is the unit of the wavelength. If the
line is a recombination line, I will contain the ‘r’ suffix. For wavelengths
less than 1 um, we express Wave in A as a whole number. For wavelengths greater
than 1 um, we express Wave in um with two decimal places. Some
examples:

Emission Line Column
C III] 1909 Å C3_1909A
He II  4686 Å He2r_4686A
[Ar II] 6.98 µm Ar2_0698um
[O IV] 24.89 µm O4_2489um

The full set of lines in this release is included in the aa_line_list.md file
in this repository. If a line of interest is not included, please let us know,
and we will add it as soon as we are able.

Properties Included

Total Hβ flux, metallicity as $\zeta_{\rm O}$, and gas density $\rm n_H$.
For photoionization models, ionization parameter and assumed luminosity
($Q(\rm H)$ for stellar populations, $L_{tot}$ for AGN)
For shock models, shock velocity and magnetic field.

Total and dust-depleted abundances as 12+log(X/H)

Relative ionic abundances as $\chi_i/\chi$

Ionic temperatures and densities in units of K and cm$^{-3}$,
respectively.

Files

shckprec-dust_fluxes.csv

Files (27.4 MB)

Name Size Download all
md5:37a56f27f51c1208219bddb104195294
5.2 kB Preview Download
md5:7b1adf2077dc24e67fa9c65cdc44ec26
3.6 kB Preview Download
md5:cc16f5b1faa33621c8fdaa8c22c1d2f9
3.2 MB Preview Download
md5:be434e54fb06fa3059c3c9c27283b6e6
3.2 MB Preview Download
md5:292b449e23c153141f89cc1226cc4cbc
3.5 MB Preview Download
md5:8e2e0a8df97739845c9867218ef1c557
3.5 MB Preview Download
md5:55afb2911b47edb063e1ebdfbfa0aeda
221.3 kB Preview Download
md5:5168a32d2275b959ba501189a401cf43
2.1 MB Preview Download
md5:d16be83c6ef198417bd0eb6233d66df5
3.4 MB Preview Download
md5:f9263cea8b9bcba6280bcad0b801d415
3.4 MB Preview Download
md5:121c16a567f4a41d766d864ed536004b
247.6 kB Preview Download
md5:415b2315483d453eb49a374a86981037
2.2 MB Preview Download
md5:3735cda6eefa4e0947d78d0a1c73d8ff
249.0 kB Preview Download
md5:b26e3f6912b14d92a40bd91ccbe8630b
2.2 MB Preview Download

Additional details

Identifiers

Related works

Is supplement to
Journal article: arXiv:2412.06763 (arXiv)

Dates

Submitted
2024-12-09