Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
ThermalModelPCEAnnihilation.h
Go to the documentation of this file.
1#ifndef THERMALMODELPCEANNIHILATION_H
2#define THERMALMODELPCEANNIHILATION_H
3#include <map>
4
6#include "HRGBase/Broyden.h"
7
8namespace thermalfist {
9
26 {
27 public:
28
36 ThermalModelPCEAnnihilation(ThermalModelBase* THMbase, bool FreezeLonglived = false, double LonglivedResoWidthCut = 0.015);
37
43
44 std::vector<int> RecalculateStabilityFlags(const std::vector<long long>& annihilationpdgs = {2212, 2112});
45
55 virtual void SetStabilityFlags(const std::vector<int>& StabilityFlags);
56
65 virtual void CalculatePCE(double param, PCEMode mode = AtFixedTemperature);
66
72 void SetPionAnnihilationNumber(double npi) { m_PionAnnihilationNumber = npi; }
73
74 protected:
75
77 int StableHadronIndexByGlobalId(int globalid);
78
80 std::vector<double> StableChemsFromBroydenInput(const std::vector<double>& x);
81
82 private:
83
84 std::vector<int> m_StableNormal;
85 std::vector<int> m_StableAnnihilate;
86 std::vector<int> m_Pions;
87 std::vector<int> m_StableAnnihilateAnti;
88
89 double m_PionAnnihilationNumber;
90
91 class BroydenEquationsPCEAnnihilation : public BroydenEquations
92 {
93 public:
94 BroydenEquationsPCEAnnihilation(ThermalModelPCEAnnihilation *model, PCEMode mode = PCEMode::AtFixedTemperature) : BroydenEquations(), m_THM(model), m_Mode(mode) { m_N = m_THM->m_StableNormal.size() + m_THM->m_StableAnnihilate.size() + m_THM->m_Pions.size() + 1; }
95 std::vector<double> Equations(const std::vector<double> &x);
96 private:
98 PCEMode m_Mode;
99 };
100
101 };
102
103} // namespace thermalfist
104
105#endif
106
Implementation of the generic Broyden's method routines.
Abstract class which defines the system of non-linear equations to be solved by the Broyden's method.
Definition Broyden.h:32
int m_N
The number of equations.
Definition Broyden.h:66
Abstract base class for an HRG model implementation.
Class implementing HRG in partial chemical equilibrium with baryon annihilation.
int StableHadronIndexByGlobalId(int globalid)
Returns the PCE-based index of the stable hadron based on its global (particle list) index.
std::vector< int > RecalculateStabilityFlags(const std::vector< long long > &annihilationpdgs={2212, 2112})
ThermalModelPCEAnnihilation(ThermalModelBase *THMbase, bool FreezeLonglived=false, double LonglivedResoWidthCut=0.015)
Construct a new ThermalModelPCEAnnihilation object.
std::vector< double > StableChemsFromBroydenInput(const std::vector< double > &x)
Chemical potentials of all PCE-based hadrons from the solution to PCE equations.
virtual void SetStabilityFlags(const std::vector< int > &StabilityFlags)
Manually set the PCE stability flags for all species.
void SetPionAnnihilationNumber(double npi)
Set the average number of pion produced in baryon-antibaryon annihilations.
virtual void CalculatePCE(double param, PCEMode mode=AtFixedTemperature)
Solves the equations of partial chemical equilibrium at a fixed temperature or a fixed volume.
virtual ~ThermalModelPCEAnnihilation(void)
Destroy the ThermalModelPCEAnnihilation object.
ThermalModelPCE(ThermalModelBase *THMbase, bool FreezeLonglived=false, double LonglivedResoWidthCut=0.015)
Construct a new ThermalModelPCE object.
PCEMode
Whether partial chemical equilibrium should be calculated at a fixed value of the temperature or a fi...
@ AtFixedTemperature
Partial chemical equilibrium at fixed value of the temperature.
const std::vector< int > & StabilityFlags() const
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9