pyratbay 2.0.0b3__tar.gz → 2.0.0b4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyratbay might be problematic. Click here for more details.
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/PKG-INFO +3 -2
- pyratbay-2.0.0b4/docs/.index.rst.swp +0 -0
- pyratbay-2.0.0b4/docs/figures/HCN_partition_functions.png +0 -0
- pyratbay-2.0.0b4/docs/figures/VO_cross_section.png +0 -0
- pyratbay-2.0.0b4/docs/figures/pyrat_spectrum_demo.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/getstarted.rst +38 -32
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/index.rst +3 -4
- pyratbay-2.0.0b4/docs/line_sampling.rst +222 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/references.rst +28 -12
- pyratbay-2.0.0b4/docs/specral_synthesis.rst +689 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/__main__.py +12 -2
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/atmosphere.py +17 -15
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/constants/astrophysical_constants.py +2 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/constants/code_constants.py +2 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/isotopes.dat +7 -7
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/molecules.dat +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/io/io.py +15 -9
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/line_sampling.py +112 -13
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/driver.py +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/hitran.py +18 -7
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/partitions/partitions.py +194 -68
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/rayleigh/rayleigh.py +11 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/argum.py +5 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/atmosphere.py +1 -4
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/line_by_line.py +17 -2
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/objects.py +3 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/observation.py +4 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/opacity.py +2 -2
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/pyrat_obj.py +30 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/retrieval.py +6 -2
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/spectrum.py +2 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/kurucz.py +1 -5
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/spec_tools.py +99 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/tools/data.py +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/tools/parser.py +35 -7
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/tools/retrieval_tools.py +2 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/tools/tools.py +8 -53
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/version.py +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay.egg-info/PKG-INFO +3 -2
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay.egg-info/SOURCES.txt +9 -7
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/opacity_test.cfg +1 -1
- pyratbay-2.0.0b4/tests/configs/opacity_test_single_iso.cfg +34 -0
- pyratbay-2.0.0b4/tests/configs/opacity_test_single_iso_fail.cfg +34 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_emission_test.cfg +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_interp_press.cfg +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_interp_temp.cfg +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_test.cfg +1 -1
- pyratbay-2.0.0b4/tests/inputs/1H-12C-14N__MockHarris.states +100 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_atmosphere.py +9 -12
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_fails.py +11 -6
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_opacity_alkali.py +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_opacity_cia.py +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_opacity_rayleigh.py +22 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_partitions.py +89 -13
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_pbay.py +14 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_plots.py +1 -1
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_spectrum.py +37 -5
- pyratbay-2.0.0b3/docs/figures/pyrat_spectrum_demo.png +0 -0
- pyratbay-2.0.0b3/docs/opac_tutorial.rst +0 -102
- pyratbay-2.0.0b3/examples/demo/demo_spectrum-emission.cfg +0 -51
- pyratbay-2.0.0b3/examples/demo/demo_spectrum-transmission.cfg +0 -51
- pyratbay-2.0.0b3/examples/demo/demo_tli-hitran.cfg +0 -24
- pyratbay-2.0.0b3/examples/demo/uniform.atm +0 -119
- pyratbay-2.0.0b3/examples/tutorial/tli_hitran_H2O.cfg +0 -24
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/.readthedocs.yml +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/.travis.yml +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/CHANGELOG.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/CONTRIBUTING.md +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/LICENSE +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/MANIFEST.in +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/README.md +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/Makefile +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/api.rst +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/atm_tutorial.rst +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/conf.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/contributing.rst +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/custom_style.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/docs_requirements.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/broadening.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/favicon.ico +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/pyrat_PT_tutorial.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/pyrat_atmosphere_tutorial.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/pyrat_hydrostatic_tutorial.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/pyrat_logo.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/pyrat_transmission-spectrum_tutorial.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/figures/pyrat_user_case.png +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/license.rst +0 -0
- /pyratbay-2.0.0b3/docs/tli_tutorial.rst → /pyratbay-2.0.0b4/docs/line_sampling.rst~ +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/make.bat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/retrieval_tutorial.rst +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/spec_tutorial.rst +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/docs/units.rst +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/atmosphere_hydro_g.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/atmosphere_hydro_m.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/observation_file.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/opacity.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/pt_guillot.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/pt_isothermal.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/pt_isothermal_tutorial.log +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/pt_madhu.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/retrieval_eclipse.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/examples/tutorial/spectrum_transmission.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyproject.toml +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/tmodels/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/tmodels/tmodels.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/vmr_models/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/vmr_models/vmr_models.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/atmosphere/vmr_scaling.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/constants/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/AsplundEtal2009.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/CIA/CIA_Borysow_H2H2_0060-7000K_0.6-500um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/CIA/CIA_Borysow_H2He_0050-3000K_0.3-030um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/CIA/CIA_Borysow_H2He_0050-7000K_0.5-031um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/CIA/CIA_Borysow_H2He_1000-7000K_0.5-400um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/atoms.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/cheops.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/kepler.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/spitzer_irac1.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/spitzer_irac2.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/spitzer_irac3.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/spitzer_irac4.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/spitzer_mips.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/filters/tess.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/data/tips_2021.pkl +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/driver.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/io/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/alkali/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/alkali/alkali.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/broadening/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/broadening/broadening.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/cia.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/clouds/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/clouds/gray.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/hydrogen_ion.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/exomol.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/pands.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/repack.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/tioschwenke.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/vald.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/linelist/voplez.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/lread.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/partitions/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/opacity/rayleigh/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/plots/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/plots/plots.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/extinction.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/optical_depth.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/pyrat/voigt.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/blackbody.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/contribution_funcs.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/convection.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/phoenix.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/spectrum/radiative_transfer.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/tools/__init__.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay/tools/mpi_tools.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay.egg-info/dependency_links.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay.egg-info/entry_points.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay.egg-info/requires.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/pyratbay.egg-info/top_level.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/requirements.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/setup.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/setup.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_alkali.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_blackbody.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_extcoeff.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_indices.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_pt.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_simpson.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_spline.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_trapz.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/_two_stream.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/cutils.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/constants.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/expn.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/expn_tmp.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/ind.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/simpson.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/spline.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/utils.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/include/voigt.h +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/src_c/vprofile.c +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/atmosphere_hydro_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/atmosphere_jupiter_calc.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/atmosphere_jupiter_read.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/atmosphere_tea_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/atmosphere_uniform_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/mcmc_transmission_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/opacity_multiple.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/pt_guillot.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/pt_isothermal.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/pt_madhu.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/retrieval_emission_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/retrieval_transmission_tea.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_emission_filters_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_extfile.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_filters_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_h_ion.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/spectrum_transmission_multiple_opacities.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_exomol_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_hitran_1.1-1.7um_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_hitran_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_hitran_two_files_one_db_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_hitran_two_files_one_dbtype.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_hitran_two_files_one_pflist.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_hitran_two_files_two_db_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_multiple_opacity_CH4.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_multiple_opacity_CO2.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_multiple_opacity_H2O.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_pands_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/configs/tli_repack_test.cfg +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/conftest.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_alkali_K_opacity.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_alkali_Na_opacity.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_cia_H2H2_opacity.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_get_ec_lbl.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_get_ec_ls.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_ls_H2O_opacity.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_gauss_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_lorentz_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_voigt0.01_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_voigt0.1_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_voigt1.0_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_voigt10.0_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_profile_voigt100.0_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_alkali_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_all_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_cia_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_deck_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_etable_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_lec_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_quadrature_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_resolution_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_scale_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_tli_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_tmodel_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_two_stream_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_emission_vert_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_alkali_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_all_ls_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_all_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_bandflux4_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_cia_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_deck_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_etable_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_fit1_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_fit2_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_fit3_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_fit4_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_h_ion_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_lec_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_patchy_clear_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_patchy_cloudy_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_patchy_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_resolution_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_scale_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_H2_H2_cia_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_alkali_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_cia_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_cloud_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_dalgarno_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_deck_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_lbl_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_ls_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_rayleigh_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_skip_sodium_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_tli_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_tmodel_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_vert_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_spectrum_transmission_wl_step_test.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_tea_profile.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/expected/expected_tea_sub_solar_profile.npz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.133um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.158um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.183um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.209um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.235um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.260um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.285um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.310um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.336um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.361um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.387um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.413um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.438um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.464um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.489um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.515um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.540um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.565um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.591um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/filters/filter_test_WFC3_G141_1.616um.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/01_hit12.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/14N-1H3__MockBYTe.states +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/14N-1H3__MockBYTe__04999-05000.trans +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/15N-1H3__MockBYTe-15.states +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/15N-1H3__MockBYTe-15__04999-05000.trans +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/CO2_hitran_2.50-2.52um_repack-0.01_lbl.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/Mock_HITRAN_H2O_1.00-1.01um.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/PF_Exomol_NH3.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/PF_tips_CO2.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/TESS_passband.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/atmosphere_uniform_even_layers.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/atmosphere_uniform_no_potassium.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/atmosphere_uniform_radius.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/atmosphere_uniform_radius.log +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/atmosphere_uniform_test.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/edit_01_hit12.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/jupiter_isothermal_uniform_vmr.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/jupiter_isothermal_uniform_vmr.log +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/jupiter_isothermal_uniform_vmr_read.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_01_hit12.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_02_3750-4000_HITEMP2010.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_02_3750-4000_HITEMP2010.tar.gz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_02_4000-4500_HITEMP2010.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_02_4000-4500_HITEMP2010.tar.gz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_02_hit12.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_02_hit12.tar.gz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_06_hit12.par +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_06_hit12.tar.gz +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_H2-H2_2011.cia +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_fp00k0odfnew.pck +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_h2ofastfix.bin +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_h2opartfn.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/mock_tiopart.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/multinest_output.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/multinest_outputstats.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/multinest_outputstats_2modes.txt +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_WFC3.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_data_mix.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_data_passband_file.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_data_tophat.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_data_tophat_named.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_err_scaling.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_extra_depth_flag.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_missing_depth_flag.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_passband_file.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_tophat.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/obs_file_tophat_named.dat +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/inputs/uniform_notemp_test.atm +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/outputs/.gitignore +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/revise_spectra.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_broadening.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_data.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_emission.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_io.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_mpi.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_opacity_H_ion.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_opacity_line_sample.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_pyrat.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_retrieval.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_run_atmosphere.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_src.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_str.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_tli.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_tools.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_transmission.py +0 -0
- {pyratbay-2.0.0b3 → pyratbay-2.0.0b4}/tests/test_vmr_models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyratbay
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0b4
|
|
4
4
|
Summary: Python Radiative Transfer in a Bayesian Framework
|
|
5
5
|
Author-email: Patricio Cubillos <patricio.cubillos@oeaw.ac.at>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -356,6 +356,7 @@ Requires-Dist: h5py>=3.10.0
|
|
|
356
356
|
Provides-Extra: test
|
|
357
357
|
Requires-Dist: pytest>=3.9; extra == "test"
|
|
358
358
|
Requires-Dist: mpi4py>=3.1.4; extra == "test"
|
|
359
|
+
Dynamic: license-file
|
|
359
360
|
|
|
360
361
|
# Pyrat Bay: Python Radiative Transfer in a Bayesian framework
|
|
361
362
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -36,7 +36,7 @@ The following table details what each of these steps do.
|
|
|
36
36
|
| ``spectrum`` | Compute forward-modeling spectra (transmission or |
|
|
37
37
|
| | emission) |
|
|
38
38
|
+----------------+------------------------------------------------------------+
|
|
39
|
-
| ``
|
|
39
|
+
| ``retrieval`` | Run an atmospheric retrievals |
|
|
40
40
|
+----------------+------------------------------------------------------------+
|
|
41
41
|
|
|
42
42
|
Any of these steps can be run either interactively though the Python
|
|
@@ -85,7 +85,7 @@ To install ``Pyrat Bay`` run the following command from the terminal:
|
|
|
85
85
|
|
|
86
86
|
.. code-block:: shell
|
|
87
87
|
|
|
88
|
-
pip install pyratbay
|
|
88
|
+
pip install pyratbay>=2.0.0b3
|
|
89
89
|
|
|
90
90
|
Or if you prefer conda:
|
|
91
91
|
|
|
@@ -134,16 +134,15 @@ Download the water line-transition database from the HITRAN server and unzip it:
|
|
|
134
134
|
|
|
135
135
|
Copy the input and configuration files for the demo from the `examples
|
|
136
136
|
folder
|
|
137
|
-
<https://github.com/pcubillos/pyratbay/tree/
|
|
137
|
+
<https://github.com/pcubillos/pyratbay/tree/ver2.0/examples/>`_ to
|
|
138
138
|
your working directory. For example, use the following shell commands:
|
|
139
139
|
|
|
140
140
|
.. code-block:: shell
|
|
141
141
|
|
|
142
|
-
|
|
143
|
-
wget $
|
|
144
|
-
wget $
|
|
145
|
-
wget $
|
|
146
|
-
wget $demo_path/uniform.atm
|
|
142
|
+
demo=https://raw.githubusercontent.com/pcubillos/pyratbay/ver2.0/tutorials/
|
|
143
|
+
wget $demo/tutorial_tli_hitran_H2O.cfg
|
|
144
|
+
wget $demo/tutorial_spectrum_emission.cfg
|
|
145
|
+
wget $demo/tutorial_spectrum_transmission.cfg
|
|
147
146
|
|
|
148
147
|
|
|
149
148
|
Execute these commands from the shell to create a
|
|
@@ -153,11 +152,11 @@ transmission and emission spectra:
|
|
|
153
152
|
.. code-block:: shell
|
|
154
153
|
|
|
155
154
|
# Format line-by-line opacity:
|
|
156
|
-
pbay -c
|
|
155
|
+
pbay -c tutorial_tli_hitran_H2O.cfg
|
|
157
156
|
|
|
158
157
|
# Compute transmission and emission spectra:
|
|
159
|
-
pbay -c
|
|
160
|
-
pbay -c
|
|
158
|
+
pbay -c tutorial_spectrum_transmission.cfg
|
|
159
|
+
pbay -c tutorial_spectrum_emission.cfg
|
|
161
160
|
|
|
162
161
|
.. Outputs
|
|
163
162
|
^^^^^^^
|
|
@@ -172,44 +171,51 @@ interactive mode, I suggest starting the session with ``ipython
|
|
|
172
171
|
|
|
173
172
|
.. code-block:: python
|
|
174
173
|
|
|
174
|
+
import pyratbay as pb
|
|
175
|
+
import pyratbay.spectrum as ps
|
|
176
|
+
import pyratbay.io as io
|
|
175
177
|
import matplotlib
|
|
176
|
-
from scipy.ndimage.filters import gaussian_filter1d as gaussf
|
|
177
178
|
import matplotlib.pyplot as plt
|
|
178
179
|
plt.ion()
|
|
179
180
|
|
|
180
|
-
import pyratbay as pb
|
|
181
|
-
import pyratbay.io as io
|
|
182
181
|
|
|
183
|
-
wl, transmission = io.read_spectrum("./
|
|
184
|
-
wl, emission
|
|
182
|
+
wl, transmission = io.read_spectrum("./transmission_spectrum_tutorial.dat", wn=False)
|
|
183
|
+
wl, emission = io.read_spectrum("./emission_spectrum_tutorial.dat", wn=False)
|
|
184
|
+
|
|
185
|
+
bin_wl = ps.constant_resolution_spectrum(0.3, 8.0, resolution=200)
|
|
186
|
+
bin_transit = ps.bin_spectrum(bin_wl, wl, transmission)
|
|
187
|
+
bin_emission = ps.bin_spectrum(bin_wl, wl, emission)
|
|
185
188
|
|
|
186
|
-
plt.figure(0
|
|
189
|
+
fig = plt.figure(0)
|
|
187
190
|
plt.clf()
|
|
188
|
-
|
|
191
|
+
fig.set_size_inches(7,5)
|
|
192
|
+
plt.subplots_adjust(0.12, 0.1, 0.98, 0.95, hspace=0.15)
|
|
189
193
|
ax = plt.subplot(211)
|
|
190
|
-
plt.plot(wl, 100*transmission, "
|
|
191
|
-
plt.plot(
|
|
194
|
+
plt.plot(wl, 100*transmission, color="royalblue", label="transmission model", lw=1.0)
|
|
195
|
+
plt.plot(bin_wl, 100*bin_transit, "salmon", lw=1.5)
|
|
192
196
|
plt.xscale('log')
|
|
193
|
-
plt.ylabel(
|
|
197
|
+
plt.ylabel('Transit depth (%)')
|
|
194
198
|
ax.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter())
|
|
195
|
-
ax.set_xticks([0.5, 0.7, 1.0, 2.0, 3.0,
|
|
196
|
-
|
|
197
|
-
plt.
|
|
199
|
+
ax.set_xticks([0.3, 0.5, 0.7, 1.0, 2.0, 3.0, 5.0, 7.0])
|
|
200
|
+
ax.tick_params(which='both', direction='in')
|
|
201
|
+
plt.xlim(0.3, 8.0)
|
|
202
|
+
plt.ylim(1.88, 2.17)
|
|
198
203
|
plt.legend(loc="upper left")
|
|
199
204
|
|
|
200
205
|
ax = plt.subplot(212)
|
|
201
|
-
plt.plot(wl, emission, "
|
|
202
|
-
plt.plot(
|
|
206
|
+
plt.plot(wl, emission, "royalblue", label="emission model", lw=1.0)
|
|
207
|
+
plt.plot(bin_wl, bin_emission, "salmon", lw=1.5)
|
|
203
208
|
plt.xscale('log')
|
|
204
209
|
plt.xlabel(r"Wavelength (um)")
|
|
205
|
-
plt.ylabel(r"$F_{\rm
|
|
210
|
+
plt.ylabel(r"$F_{\rm p}$ (erg s$^{-1}$ cm$^{-2}$ cm)")
|
|
206
211
|
ax.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter())
|
|
207
|
-
ax.set_xticks([0.5, 0.7, 1.0, 2.0, 3.0,
|
|
208
|
-
|
|
209
|
-
plt.
|
|
212
|
+
ax.set_xticks([0.3, 0.5, 0.7, 1.0, 2.0, 3.0, 5.0, 7.0])
|
|
213
|
+
ax.tick_params(which='both', direction='in')
|
|
214
|
+
plt.ylim(0, 52000)
|
|
215
|
+
plt.xlim(0.3, 8.0)
|
|
210
216
|
plt.legend(loc="upper left")
|
|
211
217
|
plt.draw()
|
|
212
|
-
plt.savefig("pyrat_spectrum_demo.
|
|
218
|
+
plt.savefig("pyrat_spectrum_demo.png", dpi=300)
|
|
213
219
|
|
|
214
220
|
The output figure should look like this:
|
|
215
221
|
|
|
@@ -249,7 +255,7 @@ importing the ``Pyrat Bay`` package:
|
|
|
249
255
|
.. code-block:: python
|
|
250
256
|
|
|
251
257
|
import pyratbay as pb
|
|
252
|
-
pyrat = pb.run('
|
|
258
|
+
pyrat = pb.run('tutorial_spectrum_transmission.cfg')
|
|
253
259
|
ax = pyrat.plot_spectrum()
|
|
254
260
|
|
|
255
261
|
The output vary depending on the selected run mode. Additional low-
|
|
@@ -57,7 +57,7 @@ The radiative-transfer include opacity sources from:
|
|
|
57
57
|
- Na and K alkali resonant lines
|
|
58
58
|
- Gray and Mie (soon) aerosol opacities
|
|
59
59
|
|
|
60
|
-
Bayesian (MCMC) posterior sampling of atmospheric parameters:
|
|
60
|
+
Bayesian (MCMC and Nested sampling) posterior sampling of atmospheric parameters:
|
|
61
61
|
|
|
62
62
|
- Molecular abundances
|
|
63
63
|
- Temperature profile
|
|
@@ -81,10 +81,9 @@ Documentation
|
|
|
81
81
|
:includehidden:
|
|
82
82
|
|
|
83
83
|
getstarted
|
|
84
|
-
|
|
84
|
+
line_sampling
|
|
85
85
|
atm_tutorial
|
|
86
86
|
spec_tutorial
|
|
87
|
-
opac_tutorial
|
|
88
87
|
retrieval_tutorial
|
|
89
88
|
cookbooks/recipes
|
|
90
89
|
api
|
|
@@ -103,7 +102,7 @@ If you found ``Pyrat Bay`` useful for your research, please cite this article:
|
|
|
103
102
|
Please prefer to channel your feedback or inquiries through the Github issue tracker: `<https://github.com/pcubillos/pyratbay>`_, or alternatively through this email: `patricio.cubillos[at]oeaw.ac.at`_.
|
|
104
103
|
|
|
105
104
|
``Pyrat Bay`` is open-source software under the GNU GPL v2 license (see
|
|
106
|
-
:ref:`license`) and is compatible with Python>=3.
|
|
105
|
+
:ref:`license`) and is compatible with Python>=3.9.
|
|
107
106
|
|
|
108
107
|
|
|
109
108
|
.. _Patricio Cubillos: https://github.com/pcubillos/
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
.. |H2O| replace:: H\ :sub:`2`\ O
|
|
2
|
+
.. |CO2| replace:: CO\ :sub:`2`
|
|
3
|
+
.. |CH4| replace:: CH\ :sub:`4`
|
|
4
|
+
.. |H2| replace:: H\ :sub:`2`
|
|
5
|
+
.. |N2O| replace:: N\ :sub:`2`\ O
|
|
6
|
+
.. |NO2| replace:: NO\ :sub:`2`
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
.. _line_sampling:
|
|
10
|
+
|
|
11
|
+
Line Sampling
|
|
12
|
+
=============
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
`Pyrat Bay` enable users to generate their own line-sampled
|
|
16
|
+
cross-section files out of line-by-line data. In this process, users
|
|
17
|
+
can make all the customization that they deem necessary (e.g.,
|
|
18
|
+
line-wing cutoffs, sampling rates, wavelength ranges, temperature
|
|
19
|
+
ranges, pressure ranges).
|
|
20
|
+
|
|
21
|
+
There are two steps needed to compute cross sections:
|
|
22
|
+
|
|
23
|
+
1. Convert line lists from their **original format** (e.g., HITRAN or
|
|
24
|
+
ExoMol) into transition-line information files (**TLI**).
|
|
25
|
+
|
|
26
|
+
2. Conver **TLI** files into **cross-section tables** (saved as Numpy
|
|
27
|
+
``.npz`` files).
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Available Databases
|
|
32
|
+
-------------------
|
|
33
|
+
|
|
34
|
+
``Pyrat Bay`` can process line-lists from the two main sources of
|
|
35
|
+
line-transition data of interest for exoplanet atmospheres: HITRAN [Gordon2022]_ and
|
|
36
|
+
Exomol [Tennyson2016]_. Additionally, ``Pyrat Bay`` is also compatible with
|
|
37
|
+
``repack`` [Cubillos2017b]_, a package extracting only the strong line
|
|
38
|
+
transitions from large HITEMP, ExoMol, or AMES databases (reducing
|
|
39
|
+
from billions to millions of lines).
|
|
40
|
+
|
|
41
|
+
The tables below show the main species of interest to model exoplanet
|
|
42
|
+
atmospheres from each database (non-exhaustive, there are move species
|
|
43
|
+
available in each database).
|
|
44
|
+
|
|
45
|
+
.. list-table:: Available linelists from HITRAN
|
|
46
|
+
:header-rows: 1
|
|
47
|
+
:widths: 7, 20, 25
|
|
48
|
+
|
|
49
|
+
* - Source
|
|
50
|
+
- Species (label)
|
|
51
|
+
- References
|
|
52
|
+
* - HITEMP
|
|
53
|
+
- `H2O <https://hitran.org/hitemp/>`__ (2010)
|
|
54
|
+
- [Rothman2010]_
|
|
55
|
+
* -
|
|
56
|
+
- `CO2 <https://hitran.org/hitemp/>`__ (2024)
|
|
57
|
+
- [Hargreaves2025]_
|
|
58
|
+
* -
|
|
59
|
+
- `CO <https://hitran.org/hitemp/>`__ (2019)
|
|
60
|
+
- [Li2015]_
|
|
61
|
+
* -
|
|
62
|
+
- `CH4 <https://hitran.org/hitemp/>`__ (2020)
|
|
63
|
+
- [Hargreaves2020]_
|
|
64
|
+
* -
|
|
65
|
+
- `N2O <https://hitran.org/hitemp/>`__ (2019)
|
|
66
|
+
- [Hargreaves2019]_
|
|
67
|
+
* -
|
|
68
|
+
- `NO <https://hitran.org/hitemp/>`__ (2019)
|
|
69
|
+
- [Hargreaves2019]_
|
|
70
|
+
* - HITRAN
|
|
71
|
+
- `H2O, NH3, and many others <https://hitran.org/lbl/>`__
|
|
72
|
+
- [Gordon2022]_
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
.. list-table:: Available linelists from ExoMol
|
|
77
|
+
:header-rows: 1
|
|
78
|
+
:widths: 7, 20, 25
|
|
79
|
+
|
|
80
|
+
* - Source
|
|
81
|
+
- Species (label)
|
|
82
|
+
- References
|
|
83
|
+
* - ExoMol
|
|
84
|
+
- `H2O <https://www.exomol.com/data/molecules/H2O/>`__ (pokazatel)
|
|
85
|
+
- [Polyansky2018]_
|
|
86
|
+
* -
|
|
87
|
+
- `CO2 <https://www.exomol.com/data/molecules/CO2/12C-16O2/UCL-4000/>`__ (ucl4000)
|
|
88
|
+
- [Yurchenko2020]_
|
|
89
|
+
* -
|
|
90
|
+
- `CH4 <https://www.exomol.com/data/molecules/CH4/12C-1H4/MM/>`__ (mm)
|
|
91
|
+
- [Yurchenko2024a]_
|
|
92
|
+
* -
|
|
93
|
+
- `NH3 <https://www.exomol.com/data/molecules/NH3/>`__ (coyute)
|
|
94
|
+
- [Coles2019]_ [Yurchenko2024b]_
|
|
95
|
+
* -
|
|
96
|
+
- `TiO <https://www.exomol.com/data/molecules/TiO/>`__ (toto)
|
|
97
|
+
- [McKemmish2019]_
|
|
98
|
+
* -
|
|
99
|
+
- `VO <https://www.exomol.com/data/molecules/VO/51V-16O/HyVO/>`__ (hyvo)
|
|
100
|
+
- [Bowesman2024]_
|
|
101
|
+
* -
|
|
102
|
+
- `HCN <https://www.exomol.com/data/molecules/HCN/>`__ (harris & larner)
|
|
103
|
+
- [Harris2008]_ [Barber2014]_
|
|
104
|
+
* -
|
|
105
|
+
- `SO2 <https://www.exomol.com/data/molecules/SO2/32S-16O2/ExoAmes/>`__ (exoames)
|
|
106
|
+
- [Underwood2016]_
|
|
107
|
+
* -
|
|
108
|
+
- `H2S <https://www.exomol.com/data/molecules/H2S/1H2-32S/AYT2/>`__ (ayt2)
|
|
109
|
+
- [Azzam2016]_ [Chubb2018]_
|
|
110
|
+
* -
|
|
111
|
+
- `C2H2 <https://www.exomol.com/data/molecules/C2H2/12C2-1H2/aCeTY/>`__ (acety)
|
|
112
|
+
- [Chubb2020]_
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
.. list-table:: Available linelists from repack
|
|
117
|
+
:header-rows: 1
|
|
118
|
+
:widths: 7, 20, 25
|
|
119
|
+
|
|
120
|
+
* - Source
|
|
121
|
+
- Species (label)
|
|
122
|
+
- References
|
|
123
|
+
* - repack
|
|
124
|
+
- `H2O <https://zenodo.org/api/records/14266247/draft/files/H2O_exomol_pokazatel_0.24-500.0um_100-3500K_threshold_0.01_lbl.dat>`__ (exomol, pokazatel)
|
|
125
|
+
- [Cubillos2017b]_ [Polyansky2018]_
|
|
126
|
+
* -
|
|
127
|
+
- `CO2 <https://zenodo.org/api/records/14266247/draft/files/CO2_exomol_ucl4000_0.5-500.0um_100-3500K_threshold_0.01_lbl.dat>`__ (exomol, ucl4000)
|
|
128
|
+
- [Cubillos2017b]_ [Yurchenko2020]_
|
|
129
|
+
* -
|
|
130
|
+
- `CO2 <https://zenodo.org/api/records/14266247/draft/files/CO2_ames_ai3000k_0.5-50.0um_100-3500K_threshold_0.01_lbl.dat>`__ (ames, ai3000k)
|
|
131
|
+
- [Cubillos2017b]_
|
|
132
|
+
* -
|
|
133
|
+
- `CH4 <https://zenodo.org/api/records/14266247/draft/files/CH4_exomol_mm_0.83-50.0um_100-3000K_threshold_0.03_lbl.dat>`__ (exomol, mm)
|
|
134
|
+
- [Cubillos2017b]_ [Yurchenko2024a]_
|
|
135
|
+
* -
|
|
136
|
+
- `NH3 <https://zenodo.org/api/records/14266247/draft/files/NH3_exomol_coyute_0.5-500.0um_100-3000K_threshold_0.01_lbl.dat>`__ (exomol, coyute)
|
|
137
|
+
- [Cubillos2017b]_ [Coles2019]_ [Yurchenko2024b]_
|
|
138
|
+
* -
|
|
139
|
+
- `TiO <https://zenodo.org/api/records/14266247/draft/files/TiO_exomol_toto_0.33-500um_100-3500K_threshold_0.01_lbl.dat>`__ (exomol, toto)
|
|
140
|
+
- [Cubillos2017b]_ [McKemmish2019]_
|
|
141
|
+
* -
|
|
142
|
+
- `VO <https://zenodo.org/api/records/14266247/draft/files/VO_exomol_hyvo_0.22-50um_100-3500K_threshold_0.01_lbl.dat>`__ (exomol, hyvo)
|
|
143
|
+
- [Cubillos2017b]_ [Bowesman2024]_
|
|
144
|
+
* -
|
|
145
|
+
- `HCN <https://zenodo.org/api/records/14266247/draft/files/HCN_exomol_harris-larner_0.56-500um_100-3500K_threshold_0.01_lbl.dat>`__ (exomol, harris larner)
|
|
146
|
+
- [Cubillos2017b]_ [Harris2008]_ [Barber2014]_
|
|
147
|
+
* -
|
|
148
|
+
- `SO2 <https://zenodo.org/api/records/14266247/draft/files/SO2_exomol_exoames_1.25-100.0um_100-3500K_threshold_0.03_lbl.dat>`__ (exomol, exoames)
|
|
149
|
+
- [Cubillos2017b]_ [Underwood2016]_
|
|
150
|
+
* -
|
|
151
|
+
- `H2S <https://zenodo.org/api/records/14266247/draft/files/H2S_exomol_ayt2_0.28-500.0um_100-3500K_threshold_0.01_lbl.dat>`__ (exomol, ayt2)
|
|
152
|
+
- [Cubillos2017b]_ [Azzam2016]_ [Chubb2018]_
|
|
153
|
+
* -
|
|
154
|
+
- `C2H2 <https://zenodo.org/api/records/14266247/draft/files/C2H2_exomol_acety_1.0-500.0um_100-3500K_threshold_0.03_lbl.dat>`__ (exomol, acety)
|
|
155
|
+
- [Cubillos2017b]_ [Chubb2020]_
|
|
156
|
+
* -
|
|
157
|
+
- `C2H4 <https://zenodo.org/api/records/14266247/draft/files/C2H4_exomol_mayty_1.4-500um_100-3500K_threshold_0.03_lbl.dat>`__ (exomol, mayty)
|
|
158
|
+
- [Cubillos2017b]_ [Mant2018]_
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
.. _sample_tli_cfg:
|
|
163
|
+
|
|
164
|
+
Line-sampling Tutorials
|
|
165
|
+
-----------------------
|
|
166
|
+
|
|
167
|
+
The following links show step-by-step tutorials to compute
|
|
168
|
+
cross-section tables (i.e., line sampling) from each database:
|
|
169
|
+
|
|
170
|
+
- :doc:`cookbooks/line_sampling/line_list_hitran`
|
|
171
|
+
- :doc:`cookbooks/line_sampling/line_list_exomol`
|
|
172
|
+
- :doc:`cookbooks/line_sampling/line_list_repack`
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
Computing cross sections often require to sample millions-to-billions
|
|
176
|
+
of line transitions. Thus, it can both become a computer-intensive
|
|
177
|
+
calculation and require/produce large files. ``Pyrat Bay`` was
|
|
178
|
+
designed with this two-step approach to optimize these calculations.
|
|
179
|
+
|
|
180
|
+
Below there are a few useful notes to keep in mind when computing
|
|
181
|
+
cross sections.
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
Partition functions
|
|
185
|
+
~~~~~~~~~~~~~~~~~~~
|
|
186
|
+
|
|
187
|
+
While line-list databases do not change often with time, thus, TLI
|
|
188
|
+
files containing the line transitions can typically be computed only
|
|
189
|
+
once, and being used for many projects. For this reason, it is
|
|
190
|
+
recommended to compute TLI files with the widest possible available
|
|
191
|
+
wavelength range.
|
|
192
|
+
|
|
193
|
+
TLI calculations also requires the input of partition functions, which
|
|
194
|
+
depend on the temperature. Ideally, you also want to compute TLI
|
|
195
|
+
files with the widest temperature range. The tutorials above show how
|
|
196
|
+
to obtain partition functions from each database. In addition, this
|
|
197
|
+
tutorial below shows more in general how to handle partition functions
|
|
198
|
+
(e.g., how to compute PFs at high temperatures):
|
|
199
|
+
|
|
200
|
+
- :doc:`cookbooks/partition_functions`
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
Cross sections
|
|
204
|
+
~~~~~~~~~~~~~~
|
|
205
|
+
|
|
206
|
+
In contrast, cross sections might need to be more frequently
|
|
207
|
+
re-computed for specific project to adjust, for example, to the
|
|
208
|
+
sampling resolution or grid boundaries (in `T`, `p`, or
|
|
209
|
+
:math:`\lambda`), or need to separate between different isotopes of a
|
|
210
|
+
same species. Use the tutorials above as a template, and modifies
|
|
211
|
+
them to adjust to the scientific requirements/machine capabilities
|
|
212
|
+
that each project requires.
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
If in a hurry and want to immediately start computing spectra, ``Pyrat
|
|
216
|
+
Bay`` is also compatible with the `petitRADTRANS
|
|
217
|
+
<https://petitradtrans.readthedocs.io/en/latest/content/available_opacities.html#high-resolution-opacities-lbl-lambda-delta-lambda-10-6>`_
|
|
218
|
+
cross section files [Molliere2019]_. These files can be directly used
|
|
219
|
+
as input in spectrum or retrieval calculations (and can be used in
|
|
220
|
+
combination with the ``wn_thinning`` argument of the configuration
|
|
221
|
+
files to reduce the sampling resolution). More documentation on this
|
|
222
|
+
is coming `soon`.
|
|
@@ -3,12 +3,14 @@
|
|
|
3
3
|
References
|
|
4
4
|
==========
|
|
5
5
|
|
|
6
|
-
.. [Asplund2009] `Asplund et al. (2009): The Chemical Composition of the Sun <https://ui.adsabs.harvard.edu/abs/2009ARA&A..47..481A>`_
|
|
6
|
+
.. .. [Asplund2009] `Asplund et al. (2009): The Chemical Composition of the Sun <https://ui.adsabs.harvard.edu/abs/2009ARA&A..47..481A>`_
|
|
7
7
|
|
|
8
8
|
.. [Asplund2021] `Asplund et al. (2021): The chemical make-up of the Sun: A 2020 vision <https://ui.adsabs.harvard.edu/abs/2021A%26A...653A.141A>`_
|
|
9
9
|
|
|
10
10
|
.. [Azzam2016] `Azzam et al. (2016): ExoMol molecular line lists - XVI. The rotation-vibration spectrum of hot H2S <https://ui.adsabs.harvard.edu/abs/2016MNRAS.460.4063A>`_
|
|
11
11
|
|
|
12
|
+
.. [Barber2014] `Barber et al (2014): ExoMol line lists - III. An improved hot rotation-vibration line list for HCN and HNC <https://ui.adsabs.harvard.edu/abs/2014MNRAS.437.1828B>`_
|
|
13
|
+
|
|
12
14
|
.. [Blecic2016] `Blecic et al (2016): TEA: A Code Calculating Thermochemical Equilibrium Abundances <https://ui.adsabs.harvard.edu/abs/2016ApJS..225....4B>`_
|
|
13
15
|
|
|
14
16
|
.. [Borysow1988] `Borysow et al. (1988): Collision-induced Rototranslational Absorption Spectra of H2-He Pairs at Temperatures from 40 to 3000 K <https://ui.adsabs.harvard.edu/abs/1988ApJ...326..509B>`_
|
|
@@ -21,6 +23,8 @@ References
|
|
|
21
23
|
|
|
22
24
|
.. [Borysow2002] `Borysow (2002): Collision-induced absorption coefficients of H$_2$ pairs at temperatures from 60 K to 1000 K <https://ui.adsabs.harvard.edu/abs/2002A&A...390..779B>`_
|
|
23
25
|
|
|
26
|
+
.. [Bowesman2024] `Bowesman et al. (2024): ExoMol line lists - LV: hyperfine-resolved molecular line list for vanadium monoxide VO <https://ui.adsabs.harvard.edu/abs/2024MNRAS.529.1321B>`_
|
|
27
|
+
|
|
24
28
|
.. [Burrows2000] `Burrows et al. (2000): The Near-Infrared and Optical Spectra of Methane Dwarfs and Brown Dwarfs <http://ui.adsabs.harvard.edu/abs/2000ApJ...531..438B>`_
|
|
25
29
|
|
|
26
30
|
.. [Castelli2003] `Castelli & Krucz (2003): New Grids of ATLAS9 Model Atmospheres <https://ui.adsabs.harvard.edu/abs/2003IAUS..210P.A20C>`_
|
|
@@ -39,14 +43,26 @@ References
|
|
|
39
43
|
|
|
40
44
|
.. [Dalgarno1962] `Dalgarno & Williams (1962): Rayleigh Scattering by Molecular Hydrogen <http://ui.adsabs.harvard.edu/abs/1962ApJ...136..690D>`_
|
|
41
45
|
|
|
46
|
+
.. [Gamache2017] `Gamache et al. (2017): Total internal partition sums for 166 isotopologues of 51 molecules important in planetary atmospheres: Application to HITRAN2016 and beyond <https://ui.adsabs.harvard.edu/abs/2017JQSRT.203...70G>`_
|
|
47
|
+
|
|
48
|
+
.. [Gamache2021] `Gamache et al. (2021): Total internal partition sums for the HITRAN2020 database <https://ui.adsabs.harvard.edu/abs/2021JQSRT.27107713G>`_
|
|
49
|
+
|
|
50
|
+
.. [Gordon2022] `Gordon et al. (2022): The HITRAN2020 molecular spectroscopic database <https://ui.adsabs.harvard.edu/abs/2022JQSRT.27707949G>`_
|
|
51
|
+
|
|
42
52
|
.. [Griffith2014] `Griffith (2014): Disentangling degenerate solutions from primary transit and secondary eclipse spectroscopy of exoplanets <https://ui.adsabs.harvard.edu/abs/2014RSPTA.37230086G>`_
|
|
43
53
|
|
|
44
54
|
.. [Hargreaves2019] `Hargreaves et al. (2019): Spectroscopic line parameters of NO, NO2, and N2O for the HITEMP database <https://ui.adsabs.harvard.edu/abs/2019JQSRT.232...35H>`_
|
|
45
55
|
|
|
56
|
+
.. [Hargreaves2020] `Hargreaves et al. (2020): An Accurate, Extensive, and Practical Line List of Methane for the HITEMP Database <https://ui.adsabs.harvard.edu/abs/2020ApJS..247...55H>`_
|
|
57
|
+
|
|
58
|
+
.. [Hargreaves2025] `Hargreaves et al. (2025): Updating the carbon dioxide line list in HITEMP <https://ui.adsabs.harvard.edu/abs/2025JQSRT.33309324H>`_
|
|
59
|
+
|
|
46
60
|
.. [Harris2006] `Harris et al. (2006): Improved HCN/HNC linelist, model atmospheres and synthetic spectra for WZ Cas <https://ui.adsabs.harvard.edu/abs/2006MNRAS.367..400H>`_
|
|
47
61
|
|
|
48
62
|
.. [Harris2008] `Harris et al. (2008): A HCN/HNC linelist, model atmospheres and synthetic spectra for carbon stars <https://ui.adsabs.harvard.edu/abs/2008MNRAS.390..143H>`_
|
|
49
63
|
|
|
64
|
+
.. [Huang2023] `Huang et al. (2023): AI-3000K Infrared Line List for Hot CO2 <https://ui.adsabs.harvard.edu/abs/2023JMoSp.39211748H>`_
|
|
65
|
+
|
|
50
66
|
.. [Iro2005] `Iro et al. (2005): A time-dependent radiative model of HD 209458b <https://ui.adsabs.harvard.edu/abs/2005A&A...436..719I>`_
|
|
51
67
|
|
|
52
68
|
.. [Jorgensen2000] `Jorgensen et al. (2000): The atmospheres of cool, helium-rich white dwarfs <https://ui.adsabs.harvard.edu/abs/2000A%26A...361..283J/abstract>`_
|
|
@@ -55,7 +71,7 @@ References
|
|
|
55
71
|
|
|
56
72
|
.. [Kurucz1970] `Kurucz (1970): Atlas: a Computer Program for Calculating Model Stellar Atmospheres <http://ui.adsabs.harvard.edu/abs/1970SAOSR.309.....K>`_
|
|
57
73
|
|
|
58
|
-
.. [Laraia2011] `Laraia et al. (2011): Total internal partition sums to support planetary remote sensing <http://ui.adsabs.harvard.edu/abs/2011Icar..215..391L>`_
|
|
74
|
+
.. .. [Laraia2011] `Laraia et al. (2011): Total internal partition sums to support planetary remote sensing <http://ui.adsabs.harvard.edu/abs/2011Icar..215..391L>`_
|
|
59
75
|
|
|
60
76
|
.. [Lecavelier2008] `Lecavelier des Etangs et al. (2008): Rayleigh Scattering in the Transit Spectrum of HD 189733b <http://ui.adsabs.harvard.edu/abs/2008A%26A...481L..83L>`_
|
|
61
77
|
|
|
@@ -71,11 +87,14 @@ References
|
|
|
71
87
|
|
|
72
88
|
.. [McKemmish2019] `McKemmish et al. (2019): ExoMol molecular line lists - XXXIII. The spectrum of Titanium Oxide <https://ui.adsabs.harvard.edu/abs/2019MNRAS.488.2836M>`_
|
|
73
89
|
|
|
74
|
-
|
|
90
|
+
|
|
91
|
+
.. [Molliere2019] `Molliere et al. (2019): petitRADTRANS. A Python radiative transfer package for exoplanet characterization and retrieval <https://ui.adsabs.harvard.edu/abs/2019A&A...627A..67M>`_
|
|
92
|
+
|
|
93
|
+
.. .. [PS1997] `Partridge & Schwenke (1997): The determination of an accurate isotope dependent potential energy surface for water from extensive ab initio calculations and experimental data <http://ui.adsabs.harvard.edu/abs/1997JChPh.106.4618P>`_
|
|
75
94
|
|
|
76
95
|
.. [Piskunov1995] `Piskunov et al. (1995): VALD: The Vienna Atomic Line Data Base. <https://ui.adsabs.harvard.edu/abs/1995A&AS..112..525P>`_
|
|
77
96
|
|
|
78
|
-
.. [Plez1998] `Plez (1998): A new TiO line list <http://ui.adsabs.harvard.edu/abs/1998A%26A...337..495P>`_
|
|
97
|
+
.. .. [Plez1998] `Plez (1998): A new TiO line list <http://ui.adsabs.harvard.edu/abs/1998A%26A...337..495P>`_
|
|
79
98
|
|
|
80
99
|
.. [Polyansky2018] `Polyansky et al. (2018): ExoMol molecular line lists XXX: a complete high-accuracy line list for water <https://ui.adsabs.harvard.edu/abs/2018MNRAS.480.2597P>`_
|
|
81
100
|
|
|
@@ -85,15 +104,9 @@ References
|
|
|
85
104
|
|
|
86
105
|
.. [Rothman2010] `Rothman et al. (2010): HITEMP, the high-temperature molecular spectroscopic database <http://ui.adsabs.harvard.edu/abs/2010JQSRT.111.2139R>`_
|
|
87
106
|
|
|
88
|
-
.. [
|
|
89
|
-
|
|
90
|
-
.. [Gordon2017] `Gordon et al. (2017): The HITRAN2016 molecular spectroscopic database <https://ui.adsabs.harvard.edu/abs/2017JQSRT.203....3G>`_
|
|
91
|
-
|
|
92
|
-
.. [Rothman2013] `Rothman et al. (2013): The HITRAN2012 molecular spectroscopic database <http://ui.adsabs.harvard.edu/abs/2013JQSRT.130....4R>`_
|
|
107
|
+
.. .. [Rothman2013] `Rothman et al. (2013): The HITRAN2012 molecular spectroscopic database <http://ui.adsabs.harvard.edu/abs/2013JQSRT.130....4R>`_
|
|
93
108
|
|
|
94
|
-
.. [Schwenke1998] `Schwenke (19988): Opacity of TiO from a coupled electronic state calculation parametrized by AB initio and experimental data <http://ui.adsabs.harvard.edu/abs/1998FaDi..109..321S>`_
|
|
95
|
-
|
|
96
|
-
.. [Speagle2019] `Speagle (2019): dynesty: A Dynamic Nested Sampling Package for Estimating Bayesian Posteriors and Evidences <https://ui.adsabs.harvard.edu/abs/2019arXiv190402180S>`_
|
|
109
|
+
.. .. [Schwenke1998] `Schwenke (19988): Opacity of TiO from a coupled electronic state calculation parametrized by AB initio and experimental data <http://ui.adsabs.harvard.edu/abs/1998FaDi..109..321S>`_
|
|
97
110
|
|
|
98
111
|
.. [Taylor2020] `Taylor et al. (2020): Understanding and mitigating biases when studying inhomogeneous emission spectra with JWST <https://ui.adsabs.harvard.edu/abs/2020MNRAS.493.4342T>`_
|
|
99
112
|
|
|
@@ -113,4 +126,7 @@ References
|
|
|
113
126
|
|
|
114
127
|
.. [Yurchenko2020] `Yurchenko et al. (2020): ExoMol line lists - XXXIX. Ro-vibrational molecular line list for CO2 <https://ui.adsabs.harvard.edu/abs/2020MNRAS.496.5282Y>`_
|
|
115
128
|
|
|
129
|
+
.. [Yurchenko2024a] `Yurchenko et al. (2024): ExoMol line lists - LVII. High accuracy ro-vibrational line list for methane (CH4) <https://ui.adsabs.harvard.edu/abs/2024MNRAS.528.3719Y>`_
|
|
130
|
+
|
|
131
|
+
.. [Yurchenko2024b] `Yurchenko et al. (2024): ExoMol line lists - LX. Molecular line list for the ammonia isotopologue 15NH3 <https://ui.adsabs.harvard.edu/abs/2024MNRAS.533.3442Y>`_
|
|
116
132
|
|