Example #1
0
def test_pycamb_dict():
    bits = [
        "w_lam", "TCMB", "yhe", "reion__redshift", "Num_Nu_massless", "omegab",
        "omegac", "H0", "omegav", "omegak", "omegan", "cs2_lam",
        "scalar_index", "Num_Nu_massive"
    ]
    c = Cosmology(w=-1,
                  t_cmb=2.74,
                  y_he=0.24,
                  z_reion=10,
                  N_nu=3.04,
                  omegab=0.2,
                  omegac=0.25,
                  h=0.7,
                  force_flat=True,
                  omegan=0.0,
                  cs2_lam=-1,
                  n=1,
                  N_nu_massive=0)

    for bit in bits:
        assert bit in c.pycamb_dict
Example #2
0
def test_cosmolopy_dict():
    bits = [
        "tau", "w", "z_reion", "omega_b_0", "h", "omega_lambda_0", "omega_k_0",
        "omega_n_0", "n", "N_nu", "omega_M_0", "sigma_8"
    ]
    c = Cosmology(w=-1,
                  t_cmb=2.74,
                  y_he=0.24,
                  z_reion=10,
                  N_nu=3.04,
                  omegab=0.2,
                  omegac=0.25,
                  h=0.7,
                  force_flat=True,
                  omegan=0.0,
                  cs2_lam=-1,
                  n=1,
                  N_nu_massive=0,
                  tau=0.85,
                  sigma_8=0.8)

    for bit in bits:
        assert bit in c.cosmolopy_dict
Example #3
0
class TestUpdate():
    def __init__(self):
        self.c = Cosmology(cosmo_model="Planck13")

    def test_cosmo_model(self):
        self.c.update(cosmo_model=WMAP7)

        assert self.c.cosmo.Om0 == 0.272
        print(self.c.mean_density0)
        assert np.isclose(self.c.mean_density0, 75489962610.27452, atol=1e-3) # this number *can* change when updated constants are used.

    def test_cosmo_params(self):
        self.c.update(cosmo_params={"H0":0.6})
        print((self.c.cosmo.H0.value))
        assert self.c.cosmo.H0.value == 0.6
        self.c.update(cosmo_params={"Om0":0.2})
        assert self.c.cosmo.Om0 == 0.2
        assert self.c.cosmo.H0.value == 0.6
        assert self.c.cosmo_params == {"Om0":0.2, "H0":0.6}
Example #4
0
class TestUpdate():
    def __init__(self):
        self.c = Cosmology(cosmo_model="Planck13")

    def test_cosmo_model(self):
        self.c.update(cosmo_model=WMAP7)

        assert self.c.cosmo.Om0 == 0.272
        print self.c.mean_density0
        assert np.isclose(self.c.mean_density0, 75468972351.60081)

    def test_cosmo_params(self):
        self.c.update(cosmo_params={"H0":0.6})
        print self.c.cosmo.H0.value
        assert self.c.cosmo.H0.value == 0.6
        self.c.update(cosmo_params={"Om0":0.2})
        assert self.c.cosmo.Om0 == 0.2
        assert self.c.cosmo.H0.value == 0.6
        assert self.c.cosmo_params == {"Om0":0.2, "H0":0.6}
Example #5
0
class TestUpdate():
    def __init__(self):
        self.c = Cosmology(cosmo_model="Planck13")

    def test_cosmo_model(self):
        self.c.update(cosmo_model=WMAP7)

        assert self.c.cosmo.Om0 == 0.272
        print(self.c.mean_density0)
        assert np.isclose(
            self.c.mean_density0, 75489962610.27452, atol=1e-3
        )  # this number *can* change when updated constants are used.

    def test_cosmo_params(self):
        self.c.update(cosmo_params={"H0": 0.6})
        print((self.c.cosmo.H0.value))
        assert self.c.cosmo.H0.value == 0.6
        self.c.update(cosmo_params={"Om0": 0.2})
        assert self.c.cosmo.Om0 == 0.2
        assert self.c.cosmo.H0.value == 0.6
        assert self.c.cosmo_params == {"Om0": 0.2, "H0": 0.6}
Example #6
0
def test_string_cosmo():
    c = Cosmology(cosmo_model="WMAP7")
    assert c.cosmo.Ob0 > 0
Example #7
0
def test_force_flat_after():
    c = Cosmology(omegab=0.05, omegac=0.25, force_flat=True)
    assert c.omegav == 0.7 and c.omegak == 0.0
Example #8
0
def test_get_h_from_non_h():
    c = Cosmology(omegab=0.05, omegac=0.24, h=0.5)
    assert eq(c.omegab_h2, 0.0125) and eq(c.omegac_h2, 0.06) and eq(
        c.omegam, 0.29)
Example #9
0
def test_get_non_h_from_h():
    c = Cosmology(omegab_h2=0.02, omegac_h2=0.15, h=0.5)
    print c.omegab, c.omegac, c.omegam
    assert eq(c.omegab, 0.08) and eq(c.omegac, 0.6) and eq(c.omegam, 0.68)
Example #10
0
def test_invalid_omegax():
    c = Cosmology(omegab_h2=0.02, omegac=0.25)
    assert c.omegam == 0.3
Example #11
0
def test_force_flat_omegav():
    c = Cosmology(force_flat=True, omegav=0.7)
    print c.omegav
    print c.omegam
    assert eq(c.omegav, 0.7) and eq(c.omegam, 0.3)
Example #12
0
def test_h_and_H0_different():
    c = Cosmology(h=0.8, H0=60)
    assert c.h == 0.8 and c.H0 == 80
Example #13
0
def test_h_and_H0_same():
    c = Cosmology(h=0.7, H0=70)
    assert c.h == 0.7
Example #14
0
def test_silly_parameter():
    c = Cosmology(a_stupid_param=85)
    assert c.a_stupid_param == 85
Example #15
0
def test_bounds_high():
    c = Cosmology(sigma_8=400)
    assert c.sigma_8 == 400
Example #16
0
def test_bounds_low():
    c = Cosmology(omegab=0, omegac=0.25)
    assert c.omegab == 0
Example #17
0
 def __init__(self):
     self.c = Cosmology(cosmo_model="Planck13")
Example #18
0
def test_omegam_only():
    c = Cosmology(omegam=0.3, force_flat=True)
    assert c.omegam == 0.3 and c.omegav == 0.7