Skip to content

RyoTerasawa/CAMB_DETG

 
 

Repository files navigation

CAMB_DETG


This is a fork of the original CAMB code, whose original README.srt reads as below this box. We modify the original code such that the nonlinear P(k,z) accounts for modified linear power spectrum of the form P_L(k,z) = P_L(k,z)_{LCDM} (1 - \beta (Omega_{DE}(z)/Omega_{DE}(z=0))^p). This phenomenological model, named "Dark Energy Tracking Growth (DETG) model" was proposed in Lin et al. (https://arxiv.org/abs/2308.16183).

The two model parameters, beta and p can be passed to the code via:

camb.nonlinear.Halofit("HMCode_A_baryon": A, "HMCode_eta_baryon":eta, 'HMCode_DETG_beta': beta, 'HMCode_DETG_p': p)

We name this modified version CAMB_DETG. If you use it for your research, please consider citing the paper below in yours:

https://arxiv.org/abs/2505.09176


CAMB:Code for Anisotropies in the Microwave Background
Author:Antony Lewis and Anthony Challinor
Homepage:https://camb.info/
https://img.shields.io/pypi/v/camb.svg?style=flat https://readthedocs.org/projects/camb/badge/?version=latest https://github.com/cmbant/camb/actions/workflows/tests.yml/badge.svg?branch=master

Description and installation

CAMB is a cosmology code for calculating cosmological observables, including CMB, lensing, source count and 21cm angular power spectra, matter power spectra, transfer functions and background evolution. The code is in Python, with numerical code implemented in fast modern Fortran.

See the CAMB python example notebook for a quick introduction to how to use the CAMB Python package.

For a standard non-editable installation use:

pip install camb [--user]

The --user is optional and only required if you don't have write permission to your main python installation. To install from source, clone from github using:

git clone --recursive https://github.com/cmbant/CAMB

Then install using:

pip install -e ./CAMB [--user]

You will need gfortran 6 or higher installed to compile (usually included with gcc by default). If you have gfortran installed, "python setup.py make" (and other standard setup commands) will build the Fortran library on all systems (including Windows without directly using a Makefile).

The python wrapper provides a module called "camb" documented in the Python CAMB documentation.

After installation you can also run CAMB from the command line reading parameters from a .ini file, e.g.:

camb inifiles/planck_2018.ini

To compile the Fortran command-line code run "make camb" in the fortran directory. For full details see the ReadMe.

Branches

The master branch contains latest changes to the main release version.

There is a test suite, which runs automatically on GitHub actions for new commits and pull requests. Reference results and test outputs are stored in the test outputs repository. Tests can also be run locally.

To reproduce legacy results, see these branches:

  • CAMB_sources is the old public CAMB Sources code.
  • CAMB_v0 is the old Fortran-oriented (gfortran 4.8-compatible) version as used by the Planck 2018 analysis.
  • rayleigh includes frequency-dependent Rayleigh scattering
  • python2 is the last Python 2 compatible version

About

Code for Anisotropies in the Microwave Background

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Fortran 72.5%
  • Python 27.3%
  • Other 0.2%