Added new class to isolate cosmology/powerspectra
This commit is contained in:
parent
975156d1f3
commit
052bc78e5f
@ -8,6 +8,7 @@ SET(CosmoTool_SRCS
|
||||
powerSpectrum.cpp
|
||||
miniargs.cpp
|
||||
growthFactor.cpp
|
||||
cosmopower.cpp
|
||||
)
|
||||
|
||||
IF(FOUND_NETCDF3)
|
||||
|
250
src/cosmopower.cpp
Normal file
250
src/cosmopower.cpp
Normal file
@ -0,0 +1,250 @@
|
||||
#include <cassert>
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <cmath>
|
||||
#include <fstream>
|
||||
#include <gsl/gsl_integration.h>
|
||||
#include "cosmopower.hpp"
|
||||
|
||||
using namespace std;
|
||||
using namespace CosmoTool;
|
||||
|
||||
#define USE_GSL
|
||||
#define TOLERANCE 1e-6
|
||||
#define NUM_ITERATION 8000
|
||||
|
||||
|
||||
CosmoPower::CosmoPower()
|
||||
{
|
||||
eval = &CosmoPower::powerEfstathiou;
|
||||
|
||||
n = 1.0;
|
||||
K0 = 1;
|
||||
V_LG_CMB = 627;
|
||||
|
||||
CMB_VECTOR[0] = 56.759;
|
||||
CMB_VECTOR[1] = -540.02;
|
||||
CMB_VECTOR[2] = 313.50;
|
||||
|
||||
h = 0.719;
|
||||
SIGMA8 = 0.77;
|
||||
OMEGA_B = 0.043969;
|
||||
OMEGA_C = 0.21259;
|
||||
|
||||
Theta_27 = 2.728/2.7;
|
||||
|
||||
updateCosmology();
|
||||
}
|
||||
|
||||
/*
|
||||
* This is \hat{tophat}
|
||||
*/
|
||||
static double tophatFilter(double u)
|
||||
{
|
||||
if (u != 0)
|
||||
return 3 / (u*u*u) * (sin(u) - u * cos(u));
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
|
||||
static double powC(double q, double alpha_c)
|
||||
{
|
||||
return 14.2 / alpha_c + 386 / (1 + 69.9 * pow(q, 1.08));
|
||||
}
|
||||
|
||||
static double T_tilde_0(double q, double alpha_c, double beta_c)
|
||||
{
|
||||
double a = log(M_E + 1.8 * beta_c * q);
|
||||
return a / ( a + powC(q, alpha_c) * q * q);
|
||||
}
|
||||
|
||||
static double j_0(double x)
|
||||
{
|
||||
if (x == 0)
|
||||
return 1.0;
|
||||
return sin(x)/x;
|
||||
}
|
||||
|
||||
static double powG(double y)
|
||||
{
|
||||
double a = sqrt(1 + y);
|
||||
|
||||
return y * (-6 * a + (2 + 3 * y) *log((a + 1)/(a - 1)));
|
||||
}
|
||||
|
||||
double CosmoPower::powerEfstathiou(double k)
|
||||
{
|
||||
double a = 6.4/Gamma0;
|
||||
double b = 3/Gamma0;
|
||||
double c = 1.7/Gamma0;
|
||||
double nu = 1.13;
|
||||
|
||||
double f = (a*k) + pow(b*k,1.5) + pow(c*k,2);
|
||||
|
||||
// EFSTATHIOU ET AL. (1992)
|
||||
return normPower * pow(k,n) * pow(1+pow(f,nu),(-2/nu));
|
||||
}
|
||||
|
||||
double CosmoPower::powerHuWiggles(double k)
|
||||
{
|
||||
// EISENSTEIN ET HU (1998)
|
||||
// FULL POWER SPECTRUM WITH BARYONS AND WIGGLES
|
||||
|
||||
double k_silk = 1.6 * pow(OMEGA_B * h * h, 0.52) * pow(OmegaEff, 0.73) * (1 + pow(10.4 * OmegaEff, -0.95));
|
||||
double z_eq = 2.50e4 * OmegaEff * pow(Theta_27, -4);
|
||||
double s = 44.5 * log(9.83 / OmegaEff) / (sqrt(1 + 10 * pow(OMEGA_B * h * h, 0.75)));
|
||||
double f = 1 / (1 + pow(k * s / 5.4, 4));
|
||||
double k_eq = 7.46e-2 * OmegaEff * pow(Theta_27, -2);
|
||||
double a1 = pow(46.9 * OmegaEff, 0.670) * (1 + pow(32.1 * OmegaEff, -0.532));
|
||||
double a2 = pow(12.0 * OmegaEff, 0.424) * (1 + pow(45.0 * OmegaEff, -0.582));
|
||||
double alpha_c = pow(a1, -OMEGA_B/ OMEGA_0) * pow(a2, -pow(OMEGA_B / OMEGA_0, 3));
|
||||
|
||||
double q = k / (13.41 * k_eq);
|
||||
double b1_betac = 0.944 * 1/(1 + pow(458 * OmegaEff, -0.708));
|
||||
double b2_betac = pow(0.395 * OmegaEff, -0.0266);
|
||||
double beta_c = 1/ ( 1 + b1_betac * (pow(OMEGA_C / OMEGA_0, b2_betac) - 1) );
|
||||
double T_c = f * T_tilde_0(q, 1, beta_c) + (1 - f) * T_tilde_0(q, alpha_c, beta_c);
|
||||
|
||||
double b1_zd = 0.313 * pow(OmegaEff, -0.419) * (1 + 0.607 * pow(OmegaEff, 0.674));
|
||||
double b2_zd = 0.238 * pow(OmegaEff, 0.223);
|
||||
double z_d = 1291 * pow(OmegaEff, 0.251) / (1 + 0.659 * pow(OmegaEff, 0.828)) * (1 + b1_zd * pow(OmegaEff, b2_zd));
|
||||
double R_d = 31.5 * OMEGA_B * h * h * pow(Theta_27, -4) * 1e3 / z_d;
|
||||
|
||||
double alpha_b = 2.07 * k_eq * s * pow(1 + R_d, -0.75) * powG((1 + z_eq)/(1 + z_d));
|
||||
double beta_b = 0.5 + OMEGA_B / OMEGA_0 + (3 - 2 * OMEGA_B / OMEGA_0) * sqrt(pow(17.2 * OmegaEff, 2) + 1);
|
||||
double beta_node = 8.41 * pow(OmegaEff, 0.435);
|
||||
double s_tilde = s * pow(1 + pow(beta_node / (k * s), 3), -1./3);
|
||||
|
||||
double T_b = (T_tilde_0(q, 1, 1) / (1 + pow(k * s / 5.2, 2)) + alpha_b / (1 + pow(beta_b / (k * s), 3)) * exp(-pow(k/k_silk, 1.4))) * j_0(k * s_tilde);
|
||||
|
||||
double T_k = OMEGA_B/OMEGA_0 * T_b + OMEGA_C/OMEGA_0 * T_c;
|
||||
|
||||
return normPower * pow(k,n) * T_k * T_k;
|
||||
}
|
||||
|
||||
double CosmoPower::powerHuBaryons(double k)
|
||||
{
|
||||
double s = 44.5 * log(9.83 / OmegaEff) / (sqrt(1 + 10 * pow(OMEGA_B * h * h, 0.75)));
|
||||
double alpha_Gamma = 1 - 0.328 * log(431 * OmegaEff) * OMEGA_B / OMEGA_0 + 0.38 * log(22.3 * OmegaEff) * pow(OMEGA_B / OMEGA_0, 2);
|
||||
double GammaEff = OMEGA_0 * h * (alpha_Gamma + (1 - alpha_Gamma)/(1 + pow(0.43 * k * s, 4)));
|
||||
double q = k/(h*GammaEff) * pow(Theta_27, 2);
|
||||
double L_0 = log(2 * M_E + 1.8 * q);
|
||||
double C_0 = 14.2 + 731 / (1 + 62.5 * q);
|
||||
double T0 = L_0 / (L_0 + C_0 * q * q);
|
||||
|
||||
return normPower * pow(k,n) * T0 * T0;
|
||||
}
|
||||
|
||||
double CosmoPower::powerOld(double k)
|
||||
{
|
||||
static const double l = 1/(Omega * h*h);
|
||||
static const double alpha = 1.7 * l, beta = 9.0 * pow(l, 1.5), gamma = l*l;
|
||||
return normPower * pow(k,n) * pow(1 + alpha * k + beta * pow(k,1.5) + gamma *k*k,-2);
|
||||
}
|
||||
|
||||
double CosmoPower::powerSugiyama(double k)
|
||||
{
|
||||
double q = k * Theta_27*Theta_27 / (OmegaEff * exp(-OMEGA_B - sqrt(h/0.5)*OMEGA_B/OMEGA_0));
|
||||
double L0 = log(2*M_E + 1.8 * q);
|
||||
double C0 = 14.2 + 731 / (1 + 62.5 * q);
|
||||
double T_k = L0 / (L0 + C0 * q*q);
|
||||
|
||||
return normPower * pow(k,n) * T_k * T_k;
|
||||
}
|
||||
|
||||
double CosmoPower::powerBardeen(double k)
|
||||
{
|
||||
double q = k / (OmegaEff);
|
||||
|
||||
double poly = 1 + 3.89 * q + pow(16.1*q,2) + pow(5.46*q,3) + pow(6.71*q,4);
|
||||
double T_k = log(1+2.34*q)/(2.34*q) * pow(poly,-0.25);
|
||||
|
||||
return normPower * pow(k,n) * T_k * T_k;
|
||||
}
|
||||
|
||||
double CosmoPower::powerBDM(double k)
|
||||
{
|
||||
k /= h*h;
|
||||
double alpha1 = 190;
|
||||
double Gmu = 4.6;
|
||||
double alpha2 = 11.5;
|
||||
double alpha3 = 11;
|
||||
double alpha4 = 12.55;
|
||||
double alpha5 = 0.0004;
|
||||
return normPower*k*alpha1*alpha1*Gmu*Gmu/(1+(alpha2*k)+pow(alpha3*k,2)+pow(alpha4*k,3))*pow(1+pow(alpha5/k,2), -2);
|
||||
}
|
||||
|
||||
double CosmoPower::powerTest(double k)
|
||||
{
|
||||
return 1/(1+k*k);
|
||||
}
|
||||
|
||||
/*
|
||||
* This function computes the normalization of the power spectrum. It requests
|
||||
* a sigma8 (density fluctuations within 8 Mpc/h)
|
||||
*/
|
||||
static double gslPowSpecNorm(double k, void *params)
|
||||
{
|
||||
CosmoPower *c = (CosmoPower *)params;
|
||||
|
||||
return c->integrandNormalize(k);
|
||||
}
|
||||
|
||||
double CosmoPower::integrandNormalize(double k)
|
||||
{
|
||||
double f = tophatFilter(k*8.0/h);
|
||||
return power(k)*k*k*f*f;
|
||||
}
|
||||
|
||||
void CosmoPower::normalize(double sigma8)
|
||||
{
|
||||
int Nsteps = 30000;
|
||||
double normVal = 0;
|
||||
double abserr;
|
||||
gsl_integration_workspace *w = gsl_integration_workspace_alloc(NUM_ITERATION);
|
||||
gsl_function f;
|
||||
|
||||
f.function = gslPowSpecNorm;
|
||||
f.params = this;
|
||||
|
||||
normPower = 1;
|
||||
|
||||
gsl_integration_qagiu(&f, 0, 0, TOLERANCE, NUM_ITERATION, w, &normVal, &abserr);
|
||||
|
||||
gsl_integration_workspace_free(w);
|
||||
|
||||
normVal /= (2*M_PI*M_PI);
|
||||
|
||||
normPower = sigma8*sigma8/normVal;
|
||||
}
|
||||
|
||||
void CosmoPower::updateCosmology()
|
||||
{
|
||||
OMEGA_0 = OMEGA_B+OMEGA_C;
|
||||
Omega = OMEGA_0;
|
||||
beta = pow(OMEGA_0, 5./9);
|
||||
OmegaEff = OMEGA_0 * h * h;
|
||||
Gamma0 = OMEGA_0 * h * h;
|
||||
}
|
||||
|
||||
double CosmoPower::eval_theta_theta(double k)
|
||||
{
|
||||
// Jennings (2012) fit
|
||||
double P_deltadelta = power(k);
|
||||
|
||||
static const double alpha0 = -12480.5, alpha1 = 1.824, alpha2 = 2165.87, alpha3=1.796;
|
||||
if (k > 0.3)
|
||||
return 0;
|
||||
double r =(alpha0*sqrt(P_deltadelta) + alpha1*P_deltadelta*P_deltadelta)/(alpha2 + alpha3*P_deltadelta);
|
||||
assert(P_deltadelta > 0);
|
||||
|
||||
if (r < 0)
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
double CosmoPower::power(double k)
|
||||
{
|
||||
return (this->*eval)(k);
|
||||
}
|
70
src/cosmopower.hpp
Normal file
70
src/cosmopower.hpp
Normal file
@ -0,0 +1,70 @@
|
||||
#ifndef _COSMOPOWER_HPP
|
||||
#define _COSMOPOWER_HPP
|
||||
|
||||
namespace CosmoTool {
|
||||
|
||||
class CosmoPower
|
||||
{
|
||||
public:
|
||||
// PRIMARY VARIABLES
|
||||
double n;
|
||||
double K0;
|
||||
double V_LG_CMB;
|
||||
|
||||
double CMB_VECTOR[3];
|
||||
|
||||
double h;
|
||||
double SIGMA8;
|
||||
double OMEGA_B;
|
||||
double OMEGA_C;
|
||||
double Theta_27;
|
||||
|
||||
// DERIVED VARIABLES
|
||||
double OMEGA_0;
|
||||
double Omega;
|
||||
double beta;
|
||||
double OmegaEff;
|
||||
double Gamma0;
|
||||
double normPower;
|
||||
|
||||
enum CosmoFunction
|
||||
{
|
||||
POWER_EFSTATHIOU,
|
||||
HU_WIGGLES,
|
||||
HU_BARYON,
|
||||
OLD_POWERSPECTRUM,
|
||||
POWER_BARDEEN,
|
||||
POWER_SUGIYAMA,
|
||||
POWER_BDM,
|
||||
POWER_TEST
|
||||
};
|
||||
|
||||
CosmoPower();
|
||||
|
||||
void setFunction();
|
||||
|
||||
void updateCosmology();
|
||||
void normalize(double sigma8);
|
||||
|
||||
|
||||
double eval_theta_theta(double k);
|
||||
double power(double k);
|
||||
|
||||
double integrandNormalize(double k);
|
||||
private:
|
||||
double (CosmoPower::*eval)(double);
|
||||
|
||||
double powerEfstathiou(double k);
|
||||
double powerHuWiggles(double k);
|
||||
double powerHuBaryons(double k);
|
||||
double powerOld(double k);
|
||||
double powerBardeen(double k);
|
||||
double powerSugiyama(double k);
|
||||
double powerBDM(double k);
|
||||
double powerTest(double k);
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user