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
bot_source.h
Go to the documentation of this file.
1// Copyright (C) 2020 Philipp Basler, Margarete Mühlleitner and Jonas Müller
2// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
3// Müller
4//
5// SPDX-License-Identifier: GPL-3.0-or-later
6
7#ifndef BOT_SOURCE_H
8#define BOT_SOURCE_H
9
16#include <boost/numeric/odeint.hpp>
17#include <iostream>
18
23namespace BSMPT
24{
25namespace Baryo
26{
27
28using namespace boost::numeric::odeint;
29typedef std::vector<double> state_type;
30
37class bot_source : public gen_fluid
38{
39private:
40public:
41 [[deprecated("Will call bot_source with GetSMConstants(). Please use the "
42 "detailed overload "
43 "to ensure consistent SM constants through all "
44 "routines.")]] bot_source();
45
46 bot_source(const ISMConstants &smConstants);
55 void operator()(const state_type &omega, state_type &domega, const double z);
65 double Calc_nL(double z_start, double z_end) const;
66};
67
68} // namespace Baryo
69} // namespace BSMPT
70#endif
The bot_source class Class instance for the transport equation system and numerical calculation of th...
Definition bot_source.h:38
void operator()(const state_type &omega, state_type &domega, const double z)
operator () Needed for the numerical solution via boost.
Definition bot_source.cpp:30
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 bot_source.cpp:158
The gen_fluid class Class instance overhead for all transport classes. Including all common functions...
Definition gen_func_fluid.h:313
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