.. |quantity| replace:: :class:`~astropy.units.Quantity` .. _unit_equivalencies: Equivalencies ============= The unit module has machinery for supporting equivalences between different units in certain contexts. Namely when equations can uniquely relate a value in one unit to a different unit. A good example is the equivalence between wavelength, frequency and energy for specifying a wavelength of radiation. Normally these units are not convertible, but when understood as representing light, they are convertible in certain contexts. This will describe how to use the equivalencies included in `astropy.units` and then describe how to define new equivalencies. Equivalencies are used by passing a list of equivalency pairs to the ``equivalencies`` keyword argument of :meth:`Quantity.to `, :meth:`Unit.to ` or :meth:`Unit.get_converter ` methods. Alternatively, if a larger piece of code needs the same equivalencies, one can set them for a :ref:`given context `. Built-in equivalencies ---------------------- Parallax Units ^^^^^^^^^^^^^^ :func:`~astropy.units.equivalencies.parallax` is a function that returns an equivalency list to handle conversions between angles and length. Length and angles are not normally convertible, so :meth:`~astropy.units.core.UnitBase.to` raises an exception:: >>> from astropy import units as u >>> (8.0 * u.arcsec).to(u.parsec) Traceback (most recent call last): ... UnitsError: 'arcsec' (angle) and 'pc' (length) are not convertible However, when passing the result of :func:`~astropy.units.equivalencies.parallax` as the third argument to the :meth:`~astropy.units.core.UnitBase.to` method, angles can be converted into units of length (and vice versa). >>> (8.0 * u.arcsec).to(u.parsec, equivalencies=u.parallax()) >>> u.AU.to(u.arcminute, equivalencies=u.parallax()) 3437.7467707580054 Angles as Dimensionless Units ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Angles are treated as a physically distinct type, which usually helps to avoid mistakes. For units such as rotational energy, however, it is not very handy. (Indeed, this double-sidedness underlies why radian went from `supplementary to derived unit `__.) The function :func:`~astropy.units.equivalencies.dimensionless_angles` provides the required equivalency list that helps convert between angles and dimensionless units. It is somewhat different from all others in that it allows an arbitrary change in the number of powers to which radian is raised (i.e., including zero and thus dimensionless). For instance, normally the following raise exceptions:: >>> from astropy import units as u >>> u.degree.to('') Traceback (most recent call last): ... UnitsError: 'deg' (angle) and '' (dimensionless) are not convertible >>> (u.kg * u.m**2 * (u.cycle / u.s)**2).to(u.J) Traceback (most recent call last): ... UnitsError: 'cycle2 kg m2 / s2' and 'J' (energy) are not convertible But when passing we pass the proper conversion function, :func:`~astropy.units.equivalencies.dimensionless_angles`, it works. >>> u.deg.to('', equivalencies=u.dimensionless_angles()) 0.01745329... >>> (0.5e38 * u.kg * u.m**2 * (u.cycle / u.s)**2).to(u.J, ... equivalencies=u.dimensionless_angles()) >>> import numpy as np >>> np.exp((1j*0.125*u.cycle).to('', equivalencies=u.dimensionless_angles())) The example with complex numbers is also one may well be doing a fair number of similar calculations. For such situations, there is the option to :ref:`set default equivalencies `. Spectral Units ^^^^^^^^^^^^^^ :func:`~astropy.units.equivalencies.spectral` is a function that returns an equivalency list to handle conversions between wavelength, frequency, energy, and wave number. As mentioned above with parallax units, we simply pass a list of equivalencies (in this case, the result of :func:`~astropy.units.equivalencies.spectral`) as the third argument to the :meth:`~astropy.units.core.UnitBase.to` method and wavelength, frequency and energy can be converted. >>> ([1000, 2000] * u.nm).to(u.Hz, equivalencies=u.spectral()) >>> ([1000, 2000] * u.nm).to(u.eV, equivalencies=u.spectral()) These equivalencies even work with non-base units:: >>> # Inches to calories >>> from astropy.units import imperial >>> imperial.inch.to(imperial.Cal, equivalencies=u.spectral()) 1.8691807591...e-27 Spectral (Doppler) equivalencies ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Spectral equivalencies allow you to convert between wavelength, frequency, energy, and wave number but not to velocity, which is frequently the quantity of interest. It is fairly straightforward to define the equivalency, but note that there are different `conventions `__. In these conventions :math:`f_0` is the rest frequency, :math:`f` is the observed frequency, :math:`V` is the velocity, and :math:`c` is the speed of light: * Radio :math:`V = c \frac{f_0 - f}{f_0} ; f(V) = f_0 ( 1 - V/c )` * Optical :math:`V = c \frac{f_0 - f}{f } ; f(V) = f_0 ( 1 + V/c )^{-1}` * Relativistic :math:`V = c \frac{f_0^2 - f^2}{f_0^2 + f^2} ; f(V) = f_0 \frac{\left(1 - (V/c)^2\right)^{1/2}}{(1+V/c)}` These three conventions are implemented in :mod:`astropy.units.equivalencies` as :func:`~astropy.units.equivalencies.doppler_optical`, :func:`~astropy.units.equivalencies.doppler_radio`, and :func:`~astropy.units.equivalencies.doppler_relativistic`. Example use:: >>> restfreq = 115.27120 * u.GHz # rest frequency of 12 CO 1-0 in GHz >>> freq_to_vel = u.doppler_radio(restfreq) >>> (116e9 * u.Hz).to(u.km / u.s, equivalencies=freq_to_vel) Spectral Flux Density Units ^^^^^^^^^^^^^^^^^^^^^^^^^^^ There is also support for spectral flux density units. Their use is more complex, since it is necessary to also supply the location in the spectrum for which the conversions will be done, and the units of those spectral locations. The function that handles these unit conversions is :func:`~astropy.units.equivalencies.spectral_density`. This function takes as its arguments the |quantity| for the spectral location. For example:: >>> (1.5 * u.Jy).to(u.erg / u.cm**2 / u.s / u.Hz, ... equivalencies=u.spectral_density(3500 * u.AA)) >>> (1.5 * u.Jy).to(u.erg / u.cm**2 / u.s / u.micron, ... equivalencies=u.spectral_density(3500 * u.AA)) Brightness Temperature / Flux Density Equivalency ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There is an equivalency for brightness temperature and flux density. This equivalency is often referred to as "Antenna Gain" since, at a given frequency, telescope brightness sensitivity is unrelated to aperture size, but flux density sensitivity is, so this equivalency is only dependent on the aperture size. See `Tools of Radio Astronomy `__ for details. The `~astropy.units.equivalencies.brightness_temperature` equivalency requires the beam area and frequency as arguments. Example:: >>> import numpy as np >>> omega_B = np.pi * (50 * u.arcsec)**2 >>> freq = 5 * u.GHz >>> u.Jy.to(u.K, equivalencies=u.brightness_temperature(omega_B, freq)) 7.052588858... Temperature Energy Equivalency ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This equivalency allows conversion between temperature and its equivalent in energy (i.e., the temperature multiplied by the Boltzmann constant), usually expressed in electronvolts. This is used frequently for observations at high-energy, be it for solar or X-ray astronomy. Example:: >>> import astropy.units as u >>> t_k = 1e6 * u.K >>> t_k.to(u.eV, equivalencies=u.temperature_energy()) Writing new equivalencies ------------------------- An equivalence list is just a list of tuples, where each tuple has 4 elements:: (from_unit, to_unit, forward, backward) ``from_unit`` and ``to_unit`` are the equivalent units. ``forward`` and ``backward`` are functions that convert values between those units. For example, until 1964 the metric liter was defined as the volume of 1kg of water at 4°C at 760mm mercury pressure. Volumes and masses are not normally directly convertible, but if we hold the constants in the 1964 definition of the liter as true, we could build an equivalency for them:: >>> liters_water = [ ... (u.l, u.g, lambda x: 1000.0 * x, lambda x: x / 1000.0) ... ] >>> u.l.to(u.kg, 1, equivalencies=liters_water) 1.0 Note that the equivalency can be used with any other compatible units:: >>> from astropy.units import imperial >>> imperial.gallon.to(imperial.pound, 1, equivalencies=liters_water) 8.3454044633335... And it also works in the other direction:: >>> imperial.lb.to(imperial.pint, 1, equivalencies=liters_water) 0.9586114172355... A slightly more complicated example: Spectral Doppler Equivalencies ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ We show how to define an equivalency using the radio convention for CO 1-0. This function is already defined in :func:`~astropy.units.equivalencies.doppler_radio`, but this example is illustrative:: >>> from astropy.constants import si >>> restfreq = 115.27120 # rest frequency of 12 CO 1-0 in GHz >>> freq_to_vel = [(u.GHz, u.km/u.s, ... lambda x: (restfreq-x) / restfreq * si.c.to('km/s').value, ... lambda x: (1-x/si.c.to('km/s').value) * restfreq )] >>> u.Hz.to(u.km / u.s, 116e9, equivalencies=freq_to_vel) -1895.432192... >>> (116e9 * u.Hz).to(u.km / u.s, equivalencies=freq_to_vel) Note that once this is defined for GHz and km/s, it will work for all other units of frequency and velocity. ``x`` is converted from the input frequency unit (e.g., Hz) to GHz before being passed to ``lambda x:``. Similarly, the return value is assumed to be in units of ``km/s``, which is why the ``.value`` of ``c`` is used instead of the constant. Displaying available equivalencies ---------------------------------- The :meth:`~astropy.units.core.UnitBase.find_equivalent_units` method also understands equivalencies. For example, without passing equivalencies, there are three compatible units for ``Hz`` in the standard set:: >>> u.Hz.find_equivalent_units() Primary name | Unit definition | Aliases [ Bq | 1 / s | becquerel , Ci | 2.7027e-11 / s | curie , Hz | 1 / s | Hertz, hertz , ] However, when passing the spectral equivalency, you can see there are all kinds of things that ``Hz`` can be converted to:: >>> u.Hz.find_equivalent_units(equivalencies=u.spectral()) Primary name | Unit definition | Aliases [ AU | 1.49598e+11 m | au , Angstrom | 1e-10 m | AA, angstrom , Bq | 1 / s | becquerel , Ci | 2.7027e-11 / s | curie , Hz | 1 / s | Hertz, hertz , J | kg m2 / s2 | Joule, joule , Ry | 2.17987e-18 kg m2 / s2 | rydberg , cm | 0.01 m | centimeter , eV | 1.60218e-19 kg m2 / s2 | electronvolt , erg | 1e-07 kg m2 / s2 | , k | 100 / m | Kayser, kayser , lyr | 9.46073e+15 m | lightyear , m | irreducible | meter , micron | 1e-06 m | , pc | 3.08568e+16 m | parsec , solRad | 6.95508e+08 m | R_sun, Rsun , ] .. _equivalency-context: Using equivalencies in larger pieces of code -------------------------------------------- Sometimes one has an involved calculation where one is regularly switching back between equivalent units. For these cases, one can set equivalencies that will by default be used, in a way similar to which one can :ref:`enable other units `. For instance, to enable radian to be treated as a dimensionless unit, simply do: .. doctest-skip:: >>> import astropy.units as u >>> u.set_enabled_equivalencies(u.dimensionless_angles()) >>> u.deg.to('') 0.01745329... Here, any list of equivalencies could be used, or one could add, e.g., :func:`~astropy.units.equivalencies.spectral` and :func:`~astropy.units.equivalencies.spectral_density` (since these return lists, they should indeed be combined by adding them together). The disadvantage of the above approach is that you may forget to turn the default off (done by giving an empty argument). To automate this, a context manager is provided: .. doctest-skip:: >>> import astropy.units as u >>> with u.set_enabled_equivalencies(u.dimensionless_angles()): ... phase = 0.5 * u.cycle ... c = np.exp(1j*phase) >>> c