Skip to content

Commit

Permalink
Merge pull request #83 from eelregit/eelregit_f_de_patch
Browse files Browse the repository at this point in the history
Change f_de parametrization to avoid division by log(1)
  • Loading branch information
EiffL authored Jan 20, 2022
2 parents d5c7464 + 09d6b09 commit 52ca009
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 16 deletions.
29 changes: 13 additions & 16 deletions jax_cosmo/background.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def w(cosmo, a):
.. math::
w(a) = w_0 + w (1 -a)
w(a) = w_0 + w_a (1 - a)
"""
return cosmo.w0 + (1.0 - a) * cosmo.wa # Equation (6) in Linder (2003)

Expand All @@ -75,22 +75,19 @@ def f_de(cosmo, a):
.. math::
\rho_{de}(a) \propto a^{f(a)}
\rho_{de}(a) = \rho_{de}(a=1) e^{f(a)}
(see :cite:`2005:Percival`) where :math:`f(a)` is computed as
:math:`f(a) = \frac{-3}{\ln(a)} \int_0^{\ln(a)} [1 + w(a^\prime)]
d \ln(a^\prime)`. In the case of Linder's parametrisation for the
dark energy in Eq. :eq:`linderParam` :math:`f(a)` becomes:
(see :cite:`2005:Percival` and note the difference in the exponent base
in the parametrizations) where :math:`f(a)` is computed as
:math:`f(a) = -3 \int_0^{\ln(a)} [1 + w(a')] d \ln(a')`.
In the case of Linder's parametrisation for the dark energy
in Eq. :eq:`linderParam` :math:`f(a)` becomes:
.. math::
f(a) = -3(1 + w_0) + 3 w \left[ \frac{a - 1}{ \ln(a) } - 1 \right]
f(a) = -3 (1 + w_0 + w_a) \ln(a) + 3 w_a (a - 1)
"""
# Just to make sure we are not diving by 0
epsilon = np.finfo(np.float32).eps
return -3.0 * (1.0 + cosmo.w0) + 3.0 * cosmo.wa * (
(a - 1.0) / np.log(a - epsilon) - 1.0
)
return -3.0 * (1.0 + cosmo.w0 + cosmo.wa) * np.log(a) + 3.0 * cosmo.wa * (a - 1.0)


def Esqr(cosmo, a):
Expand All @@ -117,15 +114,15 @@ def Esqr(cosmo, a):
.. math::
E^2(a) = \Omega_m a^{-3} + \Omega_k a^{-2} + \Omega_{de} a^{f(a)}
E^2(a) = \Omega_m a^{-3} + \Omega_k a^{-2} + \Omega_{de} e^{f(a)}
where :math:`f(a)` is the Dark Energy evolution parameter computed
by :py:meth:`.f_de`.
"""
return (
cosmo.Omega_m * np.power(a, -3)
+ cosmo.Omega_k * np.power(a, -2)
+ cosmo.Omega_de * np.power(a, f_de(cosmo, a))
+ cosmo.Omega_de * np.exp(f_de(cosmo, a))
)


Expand Down Expand Up @@ -191,12 +188,12 @@ def Omega_de_a(cosmo, a):
.. math::
\Omega_{de}(a) = \frac{\Omega_{de} a^{f(a)}}{E^2(a)}
\Omega_{de}(a) = \frac{\Omega_{de} e^{f(a)}}{E^2(a)}
where :math:`f(a)` is the Dark Energy evolution parameter computed by
:py:meth:`.f_de` (see :cite:`2005:Percival` Eq. (6)).
"""
return cosmo.Omega_de * np.power(a, f_de(cosmo, a)) / Esqr(cosmo, a)
return cosmo.Omega_de * np.exp(f_de(cosmo, a)) / Esqr(cosmo, a)


def radial_comoving_distance(cosmo, a, log10_amin=-3, steps=256):
Expand Down
33 changes: 33 additions & 0 deletions tests/test_background.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,39 @@
from jax_cosmo import Cosmology


def test_H():
# We first define equivalent CCL and jax_cosmo cosmologies
cosmo_ccl = ccl.Cosmology(
Omega_c=0.3,
Omega_b=0.05,
h=0.7,
sigma8=0.8,
n_s=0.96,
Neff=0,
transfer_function="eisenstein_hu",
matter_power_spectrum="linear",
wa=2.0, # non-zero wa
)

cosmo_jax = Cosmology(
Omega_c=0.3,
Omega_b=0.05,
h=0.7,
sigma8=0.8,
n_s=0.96,
Omega_k=0.0,
w0=-1.0,
wa=2.0, # non-zero wa
)

# Test array of scale factors
a = np.linspace(0.01, 1.0)

H_ccl = ccl.h_over_h0(cosmo_ccl, a)
H_jax = bkgrd.H(cosmo_jax, a) / 100.0
assert_allclose(H_ccl, H_jax, rtol=1.0e-3)


def test_distances_flat():
# We first define equivalent CCL and jax_cosmo cosmologies
cosmo_ccl = ccl.Cosmology(
Expand Down

0 comments on commit 52ca009

Please sign in to comment.