thermodynamic_temperature#
- astropy.units.thermodynamic_temperature(frequency, T_cmb=None)[source]#
Defines the conversion between Jy/sr and “thermodynamic temperature”,
, in Kelvins. The thermodynamic temperature is a unit very commonly used in cosmology. See eqn 8 in [1].with
where- Parameters:
Notes
For broad band receivers, this conversion do not hold as it highly depends on the frequency
References
[1]Planck 2013 results. IX. HFI spectral response https://arxiv.org/abs/1303.5070
Examples
Planck HFI 143 GHz:
>>> from astropy import units as u >>> from astropy.cosmology import Planck15 >>> freq = 143 * u.GHz >>> equiv = u.thermodynamic_temperature(freq, Planck15.Tcmb0) >>> (1. * u.mK).to(u.MJy / u.sr, equivalencies=equiv) <Quantity 0.37993172 MJy / sr>