Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Adding in Y24 #228

Merged
merged 3 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/dust_extinction/choose_model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ observationally (e.g., in the extreme UV below 912 A).
+--------------+----------------+------------------+--------------+
| HD23 MWRV31 | 0.000033 - 10 | 0.1 - 30000 | MW R(V)=3.1 |
+--------------+----------------+------------------+--------------+
| Y24 MWRV31 | 0.00001 - 25 | 0.04 - 100000 | MW R(V)=3.1 |
+--------------+----------------+------------------+--------------+

Shape Models
============
Expand Down
12 changes: 8 additions & 4 deletions docs/dust_extinction/model_flavors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ Grain models
import matplotlib.pyplot as plt
import astropy.units as u

from dust_extinction.grain_models import DBP90, WD01, D03, ZDA04, C11, J13, HD23
from dust_extinction.grain_models import DBP90, WD01, D03, ZDA04, C11, J13, HD23, Y24

fig, ax = plt.subplots()

Expand All @@ -369,12 +369,14 @@ Grain models
D03, D03, D03,
ZDA04,
C11, J13,
HD23]
HD23,
Y24]
modelnames = ["MWRV31",
"MWRV31", "MWRV40", "MWRV55",
"MWRV31", "MWRV40", "MWRV55",
"BARE-GR-S",
"MWRV31", "MWRV31",
"MWRV31",
"MWRV31"]

for cmodel, cname in zip(models, modelnames):
Expand Down Expand Up @@ -407,7 +409,7 @@ Grain models
from matplotlib.ticker import ScalarFormatter
import astropy.units as u

from dust_extinction.grain_models import DBP90, WD01, D03, ZDA04, C11, J13, HD23
from dust_extinction.grain_models import DBP90, WD01, D03, ZDA04, C11, J13, HD23, Y24

fig, ax = plt.subplots()

Expand All @@ -420,12 +422,14 @@ Grain models
D03, D03, D03,
ZDA04,
C11, J13,
HD23]
HD23,
Y24]
modelnames = ["MWRV31",
"MWRV31", "MWRV40", "MWRV55",
"MWRV31", "MWRV40", "MWRV55",
"BARE-GR-S",
"MWRV31", "MWRV31",
"MWRV31",
"MWRV31"]

for cmodel, cname in zip(models, modelnames):
Expand Down
3 changes: 3 additions & 0 deletions docs/dust_extinction/references.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ VCG04: `Valencic, Clayton, & Gordon 2014, 616, 912
WD01: `Weingartner & Draine 2001, ApJ, 548, 296
<https://ui.adsabs.harvard.edu/abs/2001ApJ...548..296W>`_

Y24: `Ysard et al. 2024, A&A, 684, 34
<https://ui.adsabs.harvard.edu/abs/2024A%26A...684A..34Y>`_

ZDA04: `Zubko, Dwek, & Arendt 2004, ApJS, 152, 211
<https://ui.adsabs.harvard.edu/abs/2004ApJS..152..211Z>`_

Loading
Loading