neutronpy.functions.gaussian_ring

neutronpy.functions.gaussian_ring(p, q)[source]

Returns a two dimensional gaussian ellipse profile.

Parameters:
p : ndarray

Parameters for the gaussian ellipse function, in the following format:

p[0] Constant background
p[1] Linear background slope
p[2] Volume under first ellipse
p[3] X position of first ellipse
p[4] Y position of first ellipse
p[5] Radius of first ellipse
p[6] Eccentricity of first ellipse
p[7] FWHM of first ellipse
p[8] Volume under second ellipse
p[…] etc.
q : tuple of ndarray

Two input arrays of equivalent size and shape, e.g. formed with numpy.meshgrid.

Returns:
out : ndarray

Two dimensional gaussian ellipse profile.

Notes

A gaussian ellipse profile is defined as

f(x,y)=1Ne12((xx0)2+α2(yy0)2r0)22σ,

where FWHM=22ln(2)σ, and N is the normalization pre-factor given by

N=2πα(σ2er202σ2+π2r0σ(1+Erf(r02σ))).