BSMPT 3.0.7
BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models
|
#include <cmath>
#include <gsl/gsl_interp2d.h>
#include <gsl/gsl_spline2d.h>
#include <memory>
Go to the source code of this file.
Namespaces | |
namespace | BSMPT |
This classes calculates the Bounce action of the potential with a set temperature. | |
Typedefs | |
using | BSMPT::Kfactors::GSLAcclType = std::unique_ptr< gsl_interp_accel, decltype(&gsl_interp_accel_free)> |
GSLAcclType Type used by the interpolations of the Kfunctions. | |
Functions | |
double | BSMPT::Kfactors::CalculateNorm1 (const double &T) |
double | BSMPT::Kfactors::CalculateNorm2 (const double &msquared, const double &T, const int &s) |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK1fermionGrid () |
initializeK1fermionGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK1bosonGrid () |
initializeK1bosonGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK2fermionGrid () |
initializeK2fermionGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK4fermionGrid () |
initializeK4fermionGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK4bosonGrid () |
initializeK4bosonGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK5fermionGrid () |
initializeK5fermionGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK5bosonGrid () |
initializeK5bosonGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK6fermionGrid () |
initializeK6fermionGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK8fermionGrid () |
initializeK8fermionGrid | |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> | BSMPT::Kfactors::initializeK9fermionGrid () |
initializeK9fermionGrid | |
double | BSMPT::Kfactors::K1fermion (double msquared, double T) |
double | BSMPT::Kfactors::K1boson (double msquared, double T) |
double | BSMPT::Kfactors::K2fermion (double msquared, double T) |
double | BSMPT::Kfactors::K4fermion (double msquared, double T) |
double | BSMPT::Kfactors::K4boson (double msquared, double T) |
double | BSMPT::Kfactors::K5fermion (double msquared, double T) |
double | BSMPT::Kfactors::K5boson (double msquared, double T) |
double | BSMPT::Kfactors::K6fermion (double msquared, double T) |
double | BSMPT::Kfactors::K8fermion (double msquared, double T) |
double | BSMPT::Kfactors::K9fermion (double msquared, double T) |
double | BSMPT::Kfactors::K1fermion_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K1boson_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K2fermion_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K4fermion_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K4boson_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K5fermion_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K5boson_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K6fermion_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K8fermion_normalized (double msquared, double T) |
double | BSMPT::Kfactors::K9fermion_normalized (double msquared, double T) |
These functions use the gsl_interp2d_bicubic interpolation routine from GSL to calculate the K-functions defined in arXiv:hep-ph/0604159v2 Eq. (23). These are needed in the transport equations which are implemented in transport_equations. For this a the integrals (without their normalisation) were evaluated numerically in a grid and stored in the header Kfunctions_grid.h
double BSMPT::Kfactors::CalculateNorm1 | ( | const double & | T | ) |
Calculates the norm for < > Integrals
T | temperature at which the normalisation should be evaluated |
double BSMPT::Kfactors::CalculateNorm2 | ( | const double & | msquared, |
const double & | T, | ||
const int & | s | ||
) |
Calculates the norm for [] Integrals
msquared | m^2 value at which the normalisation should be evaluated |
T | temperature at which the normalisation should be evaluated |
s | switch for bosons (s=-1) and fermions (s=1) |
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK1bosonGrid | ( | ) |
initializeK1bosonGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK1fermionGrid | ( | ) |
initializeK1fermionGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK2fermionGrid | ( | ) |
initializeK2fermionGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK4bosonGrid | ( | ) |
initializeK4bosonGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK4fermionGrid | ( | ) |
initializeK4fermionGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK5bosonGrid | ( | ) |
initializeK5bosonGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK5fermionGrid | ( | ) |
initializeK5fermionGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK6fermionGrid | ( | ) |
initializeK6fermionGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK8fermionGrid | ( | ) |
initializeK8fermionGrid
std::unique_ptr< gsl_spline2d, decltype(&gsl_spline2d_free)> BSMPT::Kfactors::initializeK9fermionGrid | ( | ) |
initializeK9fermionGrid
double BSMPT::Kfactors::K1boson | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K1 for bosons
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K1boson_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K1 for bosons
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K1fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K1 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K1fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K1 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K2fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K2 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K2fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K2 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K4boson | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K4 for bosons
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K4boson_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K4 for bosons
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K4fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K4 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K4fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K4 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K5boson | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K5 for bosons
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K5boson_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K5 for bosons
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K5fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K5 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K5fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K5 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K6fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K6 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K6fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K6 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K8fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K8 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K8fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K8 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K9fermion | ( | double | msquared, |
double | T | ||
) |
Calculates the non normalised function K9 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |
double BSMPT::Kfactors::K9fermion_normalized | ( | double | msquared, |
double | T | ||
) |
Calculates the normalised function K9 for fermions
msquared | m^2 [GeV^2] |
T | temperature [GeV] |