2014年6月17日星期二

Luminosity Fuction


Usually, people use Schechter parameterization to show the luminosity functions.

From WIKI:

Schechter luminosity function[edit]

The Schechter luminosity function provides a parametric description of the space density of galaxies as a function of their luminosity. The form of the function is
n(x) \  \mathrm{d}x = \phi^* x^a \mathrm{e}^{-x} \mathrm{d}x,
where x = L/L^*, and L^* is a characteristic galaxy luminosity where the power-law form of the function cuts off. The parameter \,\!\phi^* has units of number density and provides the normalization. The galaxy luminosity function may have different parameters for different populations and environments; it is not a universal function. One measurement from field galaxies is a=-1.25,\ \phi^* = 1.2 \times 10^{-3} h^3 \mathrm{Mpc}^{-3}.[2]
It is often more convenient to rewrite the Schechter function in terms of magnitudes, rather than luminosities. In this case, the Schechter function becomes:
 n(M) \ \mathrm{d}M = 0.4 \ \ln 10 \ \phi^*  [ 10^{ -0.4 ( M - M^* ) } ]^{ \alpha + 1}  \exp [ -10^{ -0.4 ( M - M^* ) } ] \ \mathrm{d}M .
Note that because the magnitude system is logarithmic, the power law has logarithmic slope  \alpha + 1 . This is why a Schechter function with  \alpha = -1  is said to be flat.

Notice, in the papers, people use a instead of a+1.



Some reference:

(1) In python. you can calculate the n(M) using the parameters of z=1.5 from Oesch et al. 2010
(2) More star formation may occur in even lower-mass galaxies having higher EWHα and that dominate the UV luminosity function at z 2 (Fumagalli et al. 2012; Alavi et al. 2013). 
Fumagalli et al. 2012   Hα Equivalent Widths from the 3D-HST Survey: Evolution with Redshift and Dependence on Stellar Mass 
Alavi et al. 2013   Ultra-faint Ultraviolet Galaxies at z ~ 2 behind the Lensing Cluster A1689: The Luminosity Function, Dust Extinction, and Star Formation Rate Density









1
2
3
4
5
 phi = -2.64 # normalization
 M = -19.82 # the standard luminosity
 a = -1.46 # slope
 X= M  # the luminosity you want to calculate
10**phi*(np.log(10)/2.5) * ((10**(-0.4*(X-M)))**(a)) * np.e**(-10**(-0.4*(X-M)))

2014年6月16日星期一

【英语】英语中的连词

表因果关系或对等关系的连接词:therefore,so,as a result, as the result of…,because of, due to…,owing to,thanks to等。

(1) To ensure acceptable fits, we limit our spectroscopic sample to ...

表示推进,承接

(1) Additionally, we limited our emission-line classification sample



表示转折
Most of the papers conclude that quasars reside in regions of galaxy density that are higher than average, albeit with significant difference among various objects.



To be continued....