Emissivity
emissivity
¶
XrayEmissivity
¶
Bases: Module
3D Xray emissivity build with temperature, cooling function, density model. It depends on the redshift of the cluster, since the cooling function is precomputed using XSPEC. The default models are the ones used in the papers i.e. Vikhlinin for density, Ghirardini for temperature and the interpolated cooling function.
Source code in src/emissivity.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
__call__(r, exposure=125000.0, z=0.1, pixsize_cm=1.0, filling_factor=271 / 275 ** 2)
¶
Compute the emissivity at a given radius, including \(N_H\) absorption.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
r
|
array
|
radius in units of \(R_{500}\) |
required |
z
|
float
|
Redshift of the cluster |
0.1
|
pixsize_cm
|
float)
|
Projected of the pixel in the cluster, in centimeters |
1.0
|
filling_factor
|
float)
|
Filling factor of the array (absorber size / pixel pitch) |
271 / 275 ** 2
|
Source code in src/emissivity.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|