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
top_source.h
Go to the documentation of this file.
1#ifndef TOP_SOURCE_H
2#define TOP_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;
32class top_source : public gen_fluid
33{
34private:
35public:
36 [[deprecated("Will call top_source with GetSMConstants(). Please use the "
37 "detailed overload "
38 "to ensure consistent SM constants through all "
39 "routines.")]] top_source();
40 top_source(const ISMConstants &smConstants);
49 void operator()(const state_type &omega, state_type &domega, const double z);
59 double Calc_nL(double z_start, double z_end) const;
60};
61
62} // namespace Baryo
63} // namespace BSMPT
64
65#endif
The gen_fluid class Class instance overhead for all transport classes. Including all common functions...
Definition gen_func_fluid.h:313
The top_source class Class instance for the transport equation system and numerical calculation of th...
Definition top_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 top_source.cpp:29
void operator()(const state_type &omega, state_type &domega, const double z)
operator () Needed for the numerical solution via boost.
Definition top_source.cpp:63
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