Skip to main content

Sersic

Usage

sersic  
x1c # x-coordinate of centroid
x2c # y-coordinate of centroid
q # axis ratio (minor/major)
pa # position angle (in radians; counter-clockwise from +x)
Amp # amplitude (normalisation, surface brightness at $r = R_{\text{eff}}$)
reff # effective radius (half-light radius)
nsersic # Sersic index

Surface Brightness Profile

After rotating by pa-\text{pa} into the frame of the Sersic light (so the major axis lies along x1x_1 and minor axis along x2x_2), define:

r=x12+x22q2r = \sqrt{x_1^2 + \frac{x_2^2}{q^2}}

The Sersic intensity is approximated using the expression from Dutton et al. (2011), based on Ciotti & Bertin (1999). The approximation for κ\kappa is:

κ=2n13+4405n+4625515n2\kappa = 2n - \frac{1}{3} + \frac{4}{405n} + \frac{46}{25515n^2}

Then, the surface brightness is:

I(r)=Aexp[κ((rreff)1/n1)]I(r) = A \cdot \exp\left[-\kappa \left( \left( \frac{r}{r_{\text{eff}}} \right)^{1/n} - 1 \right) \right]

where:

  • AA is the amplitude (Amp), the surface brightness at r=reffr = r_{\text{eff}}
  • nn is the Sersic index (nsersic)
  • reffr_{\text{eff}} is the effective (half-light) radius

Notes on Accuracy

  • The truncated expansion of κ\kappa is accurate to within 103\sim10^{-3} for n>0.36n > 0.36 and n<10n < 10
  • Intensity I(r)I(r) is in surface brightness per arcsec²

Usage in simulate with sersic_mag

When using sersic_mag (Sersic profile via integrated magnitude), amplitude is calculated as:

Amp = texpo * pow(10, -0.4 * (mag - mzpt)) / 
(2 * M_PI * exp(kap) * n * kap^{-2n} * r_eff^2 * q * Gamma(2n));
Amp *= dx * dy; // convert to counts per pixel

Where:

  • mag is the total integrated magnitude
  • mzpt is the magnitude zeropoint
  • texpo is the exposure time
  • dx, dy are pixel scales
  • Gamma is the gamma function

The approximation for κ\kappa in this context is:
κ=2n13+4405n+4625515n2\kappa = 2n - \frac{1}{3} + \frac{4}{405n} + \frac{46}{25515n^2}

This gives a robust conversion from magnitude to amplitude for use in image simulations with GLEE.

Citations for Profile

@ARTICLE{Sersic63,
author = {{S{\'e}rsic}, J.~L.},
title = "{Influencia de la dispersión atmosférica e instrumental en la distribución de brillo de una galaxia [Influence of the atmospheric and instrumental dispersion on the brightness distribution in a galaxy]}",
journal = {Boletin de la Asociacion Argentina de Astronomia La Plata Argentina},
year = 1963,
month = feb,
volume = {6},
pages = {41-43},
url={http://sedici.unlp.edu.ar/handle/10915/91601}
}