Note

You are not reading the most up to date version of Gammapy documentation.
Access the latest stable version v1.3 or the list of Gammapy releases.

NFWProfile

class gammapy.astro.darkmatter.profiles.NFWProfile(r_s=None, rho_s=<Quantity 1. GeV / cm3>)[source]

Bases: gammapy.astro.darkmatter.profiles.DMProfile

NFW Profile.

ρ(r)=ρsrsr(1+rrs)2
Parameters:

r_s : Quantity

Scale radius, rs

rho_s : Quantity

Characteristic density, ρs

References

Attributes Summary

DEFAULT_SCALE_RADIUS Default scale radius as given in reference 2
DISTANCE_GC
LOCAL_DENSITY

Methods Summary

__call__(radius) Call evaluate method of derived classes.
evaluate(radius, r_s, rho_s)
integral(rmin, rmax, **kwargs) Integrate squared dark matter profile numerically.
scale_to_local_density() Scale to local density.

Attributes Documentation

DEFAULT_SCALE_RADIUS = <Quantity 24.42 kpc>

Default scale radius as given in reference 2

DISTANCE_GC = <Quantity 8.33 kpc>
LOCAL_DENSITY = <Quantity 0.3 GeV / cm3>

Methods Documentation

__call__(radius)

Call evaluate method of derived classes.

static evaluate(radius, r_s, rho_s)[source]
integral(rmin, rmax, **kwargs)

Integrate squared dark matter profile numerically.

F(rmin,rmax)=rmaxrminρ(r)2dr
Parameters:

rmin, rmax : Quantity

Lower and upper bound of integration range.

**kwargs : dict

Keyword arguments passed to integrate_spectrum()

scale_to_local_density()

Scale to local density.