Temperature
temperature
¶
GhirardiniModel
¶
Bases: Module
Universal temperature profile as defined in Ghirardini 2018+ in the X-COP cluster sample
Source code in src/temperature.py
8 9 10 11 12 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 50 51 52 |
|
__call__(r, z=0.1)
¶
Compute the temperature function for a given radius.
\[\dfrac{T(x)}{T_{500}} = T_0 \dfrac{\frac{T_\mathrm{min}}{T_0} + (\frac{x}{r_\mathrm{cool}})^{a_\mathrm{cool}}}{1 + (\frac{x}{r_\mathrm{cool}})^{a_\mathrm{cool}}} \frac{1}{(1 + (\frac{x}{r_t})^2)^{\frac{c}{2}}}\]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
r
|
array
|
Radius at which to compute the temperature, in kpc |
required |
z
|
float
|
Redshift of cluster |
0.1
|
Returns: (jnp.array): Temperature function evaluated at the given radius in keV
Source code in src/temperature.py
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 50 51 52 |
|