1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-18 15:53:45 +02:00

set ZeroRadiation by default to 'true'

This commit is contained in:
Oliver Hahn 2023-03-08 20:06:04 +01:00
parent e2fd52f7bd
commit 34e0b88661

View file

@ -187,7 +187,7 @@ namespace cosmology
// compute amount of cold dark matter as the rest
pmap_["Omega_c"] = this->get("Omega_m") - this->get("Omega_b") - this->get("Omega_nu_massive");
if (cf.get_value_safe<bool>("cosmology", "ZeroRadiation", false))
if (cf.get_value_safe<bool>("cosmology", "ZeroRadiation", true))
{
pmap_["Omega_r"] = 0.0;
}