https://github.com/joezuntz/pycamb
Raw File
Tip revision: 87eb6c74be40784d6a0d3a1c323c1a66f7bb7a8e authored by joezuntz on 09 December 2015, 13:29:59 UTC
Update README
Tip revision: 87eb6c7
README
Don't use this code
-------------------

This code is out of data and no longer works with recent versions of camb.  Since camb itself now ships with python bindings you should use those instead.



Pycamb
------


This code is a python scripts that generates python bindings for the main functions of CAMB,
the Code for Anisotropies in the Microwave Background.  See http://camb.info for more details on CAMB.

The python language can let you more flexibly and easily vary the parameters of CAMB, exposed by this code.  You can easily modify which variables are accessible.  For example, if you have modified CAMB to add a new parameter, you can easily add it to pycamb.


Pre-requisites
--------------

1) CAMB.  

This version of pycamb is designed for the January 2010 of CAMB, but unless the code changes significantly it will probably continue to work for later versions.  

NB.  You need to compile CAMB with the same compiler set used to compile Python.  Unless you are a bit of a masochist and want to try building python with something else, this probably means gcc/gfortran.  Ensure that both are the same 32/64 bitness.

2) Python

This comes pre-installed on most systems these days.  You need a version 2.5 - 2.7 (not version 3 yet).  If you need a newer version it can be found in most package managers on linux, or built very easily from source.

3) Numerical python (numpy)

This python package can be installed by package managers on linux or easily from source.  I do not know how old a version will still work with this code, but there's no harm in going for something recent.  This code was built for 2.5.
If you update this you will need to rebuild pycamb.

Check these are both correctly installed by running
> python
# Some text about the python version will appear.
>>>import numpy

Also check that the installation of numpy has put the utility f2py on your path.  If not, find out where it went and add that dir to your PATh.


4) Optional
If you want to plot your results quickly and easily, install the matplotlib python package.



Building
--------
python setup.py install --user
or 
python setup.py install --inplace

Check if the installation has worked correctly using:
> python
>>> import pycamb

If no error messages are reported, pycamb built correctly.


Using
-----

The functions currently available in the code are:
pycamb.camb             #Get CMB power spectra; returns T,E,B,X
pycamb.matter_power     #Get P(k); returns k,P(k)
pycamb.transfers        #Get transfer functions; returns k,T_i(k,z), sigma8(z)
pycamb.age              #Get age of universe at z=0
pycamb.angular_diameter #Get angular diameter distance to given redshift

All of them are called in a similar way; read the documentation string for pycamb.camb to find out more, using:
> python
>>> import pycamb
>>> help(pycamb.camb)

The two methods are explicitly passing the parameters when calling the functions, and constructing a dictionary to pass, e.g.:
method 1:
> python
>>> import pycamb
>>> T,E,B,X = pycamb.camb(2000,H0=72, scalar_index=0.95)

method 2:
> python
>>> params = {"H0":72.0, scalar_index:0.95}
>>> T,E,B,X = pycamb.camb(2000,**params)


Interactive Mode
----------------

You can use this module either interactively or in a script.  If in interactive mode you probably want to install matplotlib (pylab) to plot your results.  The ipython module is also very useful for making interactive mode easier - it has a pylab mode where mathematical and plotting tools are already imported.

To start most simply in interactive mode, run python at the command line and import everything from the module:
> python   #Or ipython
>>> from pylab import *
>>> from pycamb import *
>>> lmax=2000
>>> T,E,B,X = camb(lmax, H0=70., omegab=0.04,omegav=0.6,omegac=0.36)
>>> ell = arange(1,lmax)
>>> loglog(ell,T,label="TT")
>>> loglog(ell,E, label="EE")
>>> legend()
>>> show() #May not be necessary


Scripts
-------

You can put more complex sets of commands in a script ending in .py, e.g. plot.py

import pycamb
import pylab
lmax=2000
ns_values = [0.8,0.9,1.0,1.1]
ell = pylab.arange(1,lmax)
for ns in ns_values:
    T,E,B,X = pycamb.camb(lmax, scalar_index=ns)
    pylab.semilogx(ell,T,label="%.2f"%ns)
pylab.legend()
pylab.xlabel("$\ell$", fontsize=20)
pylab.ylabel("$\ell (\ell+1) C_\ell / 2\pi \quad [\mu K^2]$", fontsize=20)
pylab.title("Varying Spectral Index $n_s$")
pylab.xlim(1,2000)
pylab.savefig("spectral_index.eps")

Then run with:
python plot.py


Modifying
---------
There is no point modifying either pycamb.py or py_camb_wrap.f90 directly; they are generated by generatePyCamb.py and any changes will be lost.

To simply include new parameters that you have already added to camb, read the top of generatePyCamb.py, there are instructions there.  

Other modifications will be a little more difficult, as the code is rather messy.  Basically you need to write a piece of fortran code for python to output, and the a piece of python code for python to output, and add both to the generating code at the foot of the file.  Also, add your new python functions to the __all__ variable generated in the python header.


Bugs & Issues
-------------
Anything error which causes CAMB to exit at a "STOP" statement will also cause python to exit.  In particular, setting lmax too low does this.

If you get any weird errors in your scripts about indentation, check whether you have mixed tabs and spaces somewhere.


Joe Zuntz
jaz@astro.ox.ac.uk
September 2010

back to top