Pablo sent us this snippet from the CAMB documentation:
pars.set_matter_power(redshifts=zs)
results = camb.get_results(pars)
transfer = results.get_matter_transfer_data()
s8 = transfer.sigma_8
fs8 = transfer.sigma2_vdelta_8
f = fs8/s8
However, I have a comment and a question:
- It should be
f = transfer.sigma2_vdelta_8 / s8**2 , right? The documentation in CAMB is also incorrect.
- For this “fluid” is this? CDM+baryons (fluid=8) or CDM+baryons+neutrinos (fluid=7)? I find it quite confusing that there is no reference to this in the documentation.
We should track this down, probably email Anthony Lewis.
Pablo sent us this snippet from the CAMB documentation:
However, I have a comment and a question:
f = transfer.sigma2_vdelta_8 / s8**2, right? The documentation in CAMB is also incorrect.We should track this down, probably email Anthony Lewis.