Beta2D¶
-
class
sherpa.astro.models.
Beta2D
(name='beta2d')[source]¶ Bases:
sherpa.models.model.ArithmeticModel
Two-dimensional beta model function.
The beta model is a Lorentz model with a varying power law.
-
r0
¶ The core radius.
-
xpos
¶ The center of the model on the x0 axis.
-
ypos
¶ The center of the model on the x1 axis.
-
ellip
¶ The ellipticity of the model.
-
theta
¶ The angle of the major axis. It is in radians, measured counter-clockwise from the X0 axis (i.e. the line X1=0).
-
ampl
¶ The amplitude refers to the maximum peak of the model.
-
alpha
¶ This parameter controls the slope of the profile at large radii.
See also
Beta1D
,DeVaucouleurs2D
,HubbleReynolds
,Lorentz2D
,Sersic2D
Notes
The functional form of the model for points is:
f(x0,x1) = ampl * (1 + r(x0,x1)^2)^(-alpha) r(x0,x1)^2 = xoff(x0,x1)^2 * (1-ellip)^2 + yoff(x0,x1)^2 ------------------------------------------- r0^2 * (1-ellip)^2 xoff(x0,x1) = (x0 - xpos) * cos(theta) + (x1 - ypos) * sin(theta) yoff(x0,x1) = (x1 - ypos) * cos(theta) - (x0 - xpos) * sin(theta)
The grid version is evaluated by adaptive multidimensional integration scheme on hypercubes using cubature rules, based on code from HIntLib ([1]) and GSL ([2]).
References
[1] HIntLib - High-dimensional Integration Library http://mint.sbg.ac.at/HIntLib/ [2] GSL - GNU Scientific Library http://www.gnu.org/software/gsl/ Attributes Summary
thawedparhardmaxes
thawedparhardmins
thawedparmaxes
thawedparmins
thawedpars
Methods Summary
apply
(outer, \*otherargs, \*\*otherkwargs)calc
(\*args, \*\*kwargs)get_center
()guess
(dep, \*args, \*\*kwargs)reset
()set_center
(xpos, ypos, \*args, \*\*kwargs)startup
()teardown
()Attributes Documentation
-
thawedparhardmaxes
¶
-
thawedparhardmins
¶
-
thawedparmaxes
¶
-
thawedparmins
¶
-
thawedpars
¶
Methods Documentation
-
apply
(outer, *otherargs, **otherkwargs)¶
-
reset
()¶
-
startup
()¶
-
teardown
()¶
-