diff options
author | Aaron LI <aly@aaronly.me> | 2018-02-01 21:54:52 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-02-01 21:54:52 +0800 |
commit | 2b8dda20b1737794c82ab29a0221e3ffe96cd26c (patch) | |
tree | 47c99cdbf6e2a5e2ee160bc342930921155d9da9 /fg21sim/utils | |
parent | 45da74a53536e8fc59e0a77b939a0bd24647ee61 (diff) | |
download | fg21sim-2b8dda20b1737794c82ab29a0221e3ffe96cd26c.tar.bz2 |
utils/convert.py: Add flux_to_power() to calculate power from flux density
Diffstat (limited to 'fg21sim/utils')
-rw-r--r-- | fg21sim/utils/convert.py | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/fg21sim/utils/convert.py b/fg21sim/utils/convert.py index 0fd08b4..85240f8 100644 --- a/fg21sim/utils/convert.py +++ b/fg21sim/utils/convert.py @@ -1,11 +1,14 @@ -# Copyright (c) 2016-2017 Weitian LI <weitian@aaronly.me> +# Copyright (c) 2016-2018 Weitian LI <weitian@aaronly.me> # MIT license """ Utilities for conversion among common astronomical quantities. """ +import numpy as np + from .units import (UnitConversions as AUC, Constants as AC) +from ..share import COSMO def Sb_to_Tb(Sb, freq): @@ -108,3 +111,33 @@ def JyPerPix_to_K(freq, pixelsize): """ factor = Fnu_to_Tb(Fnu=1.0, omega=pixelsize**2, freq=freq) return factor + + +def flux_to_power(flux, z, index=1.0): + """ + Calculate the (spectral) power from the measured flux density at + the same frequency with K-correction taking into account, if the + spectral index is given. + + Parameters + ---------- + flux : float + The measured flux density at a frequency. + Unit: [mJy] + z : float + The redshift to the source. + index : float, optional + The spectral index (α) of the source flux: S(ν) ∝ ν^(-α) + If given, the K-correction is taken into account. + + Returns + ------- + power : float + The calculated (spectral) power at the same frequency as + the flux density measured. + Unit: [W/Hz] + """ + flux *= 1e-29 # [mJy] -> [W/Hz/m^2] + DL = COSMO.DL(z) * AUC.Mpc2m # [m] + power = 4*np.pi * DL**2 * (1+z)**(index-1) * flux # [W/Hz] + return power |