BSMPT 3.0.7
BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models
Loading...
Searching...
No Matches
tau_source.h
Go to the documentation of this file.
1#ifndef TAU_SOURCE_H
2#define TAU_SOURCE_H
3
4// Copyright (C) 2020 Philipp Basler, Margarete Mühlleitner and Jonas Müller
5// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
6// Müller
7//
8// SPDX-License-Identifier: GPL-3.0-or-later
9
12#include <boost/numeric/odeint.hpp>
13#include <iostream>
14
19namespace BSMPT
20{
21namespace Baryo
22{
23
24using namespace boost::numeric::odeint;
25typedef std::vector<double> state_type;
26
32class tau_source : public gen_fluid
33{
34private:
35public:
36 [[deprecated("Will call tau_source with GetSMConstants(). Please use the "
37 "detailed overload "
38 "to ensure consistent SM constants through all "
39 "routines.")]] tau_source();
40
41 tau_source(const ISMConstants &smConstants);
50 void operator()(const state_type &omega, state_type &domega, const double z);
60 double Calc_nL(double z_start, double z_end) const;
61};
62
63} // namespace Baryo
64} // namespace BSMPT
65
66#endif
The gen_fluid class Class instance overhead for all transport classes. Including all common functions...
Definition gen_func_fluid.h:313
The tau_source class Class instance for the transport equation system and numerical calculation of th...
Definition tau_source.h:33
double Calc_nL(double z_start, double z_end) const
Calc_nL Calculates the sum of all left-handed fermions in front of the bubble wall contributing to th...
Definition tau_source.cpp:211
void operator()(const state_type &omega, state_type &domega, const double z)
operator () Needed for the numerical solution via boost.
Definition tau_source.cpp:30
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24
The ISMConstants struct containing all necessary SM constants.
Definition SMparam.h:24