doppler_optical

astropy.units.equivalencies.doppler_optical(rest)[ソース]

戻り速度の光学的約束の等価対。

速度と周波数の関係の光学的約束は

\(V = c \frac{f_0 - f}{f } ; f(V) = f_0 ( 1 + V/c )^{-1}\)

パラメータ
restQuantity

標準スペクトル当量(波長、エネルギー、周波数、周波数)がサポートする任意の量。

参考文献

NRAO site defining the conventions

実例.

>>> import astropy.units as u
>>> CO_restfreq = 115.27120*u.GHz  # rest frequency of 12 CO 1-0 in GHz
>>> optical_CO_equiv = u.doppler_optical(CO_restfreq)
>>> measured_freq = 115.2832*u.GHz
>>> optical_velocity = measured_freq.to(u.km/u.s, equivalencies=optical_CO_equiv)
>>> optical_velocity  
<Quantity -31.20584348799674 km / s>