Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
EffectiveMassModel.h
Go to the documentation of this file.
1#ifndef EFFECTIVEMASSMODEL_H
2#define EFFECTIVEMASSMODEL_H
3#include <map>
4
6#include "HRGBase/Broyden.h"
7
8namespace thermalfist {
9
14
20 protected:
21 double m_mass;
22 double m_c;
23 public:
30 EMMFieldPressure(double mass = 0.135, double c = 0)
31 : m_mass(mass),
32 m_c(c) {}
33
37 virtual ~EMMFieldPressure() {}
38
44 virtual EMMFieldPressure *clone() const { return new EMMFieldPressure(*this); }
45
52 virtual double pf(double x) const { return (m_mass - x) * (m_mass - x) / 2. / m_c; }
53
60 virtual double Dpf(double x) const { return -(m_mass - x) / m_c; }
61
68 virtual double D2pf(double x) const { return 1. / m_c; }
69 };
70
76 protected:
77 double m_fpi;
78 public:
85 EMMFieldPressureChPT(double mass = 0.135, double fpi = 0.133) : EMMFieldPressure(mass), m_fpi(fpi) {}
86
91
97 virtual EMMFieldPressure *clone() const { return new EMMFieldPressureChPT(*this); }
98
105 virtual double pf(double x) const {
106 return x * x * m_fpi * m_fpi / 4. * (1 - m_mass * m_mass / x / x) * (1 - m_mass * m_mass / x / x) *
107 pow(xMath::GeVtoifm(), 3);
108 }
109
116 virtual double Dpf(double x) const {
117 return x * m_fpi * m_fpi / 2. * (1 - pow(m_mass / x, 4)) * pow(xMath::GeVtoifm(), 3);
118 }
119
126 virtual double D2pf(double x) const {
127 return m_fpi * m_fpi / 2. * (1. + 3. * pow(m_mass / x, 4)) * pow(xMath::GeVtoifm(), 3);
128 }
129 };
130
136 ThermalParticle m_Particle;
137 EMMFieldPressure *m_FieldPressure;
138
139 double m_T, m_Mu;
140 bool m_isSolved;
141 bool m_isBEC;
142
143 double m_TBEC;
144
145 double m_Meff;
146 double m_Pressure;
147 double m_Density;
148 double m_DensityScalar;
149 double m_EntropyDensity;
150 double m_Chi2;
151 public:
159 const ThermalParticle &particle = ThermalParticle(true, "pi", 211, 1.0, -1, 0.135, 0, 0, 1),
160 EMMFieldPressure *FieldPressure = NULL);
161
165 virtual ~EffectiveMassModel(void);
166
173
179 bool IsSolved() const { return m_isSolved; }
180
186 virtual bool IsBECPhase() const { return m_isBEC; }
187
195 double ComputeTBEC(double Mu, double TBECinit = -1.) const;
196
203 void SetParameters(double T, double Mu);
204
210 double Temperature() const { return m_T; }
211
217 double ChemicalPotential() const { return m_Mu; }
218
224 void SolveMeff(double meffinit = -1.);
225
231 void SetMeff(double meff) { m_Meff = meff; }
232
238 double Meff() const { return m_Meff; }
239
245 double Pressure() const;
246
252 double Density() const;
253
259 double EntropyDensity() const;
260
266 double EnergyDensity() const;
267
276 virtual double Quantity(IdealGasFunctions::Quantity quantity, double T, double mu);
277
283 virtual double EffectiveMass() const { return Meff(); }
284
290 virtual double BECFraction() const;
291
297 public:
304 BroydenEquationsEMMTBEC(const EffectiveMassModel *model, double MuBEC)
305 : BroydenEquations(), m_EMM(model), m_MuBEC(MuBEC) { m_N = 1; }
306
313 std::vector<double> Equations(const std::vector<double> &x);
314
315 private:
316 const EffectiveMassModel *m_EMM;
317 double m_MuBEC;
318 };
319
325 public:
331 BroydenEquationsEMMMeff(const EffectiveMassModel *model) : BroydenEquations(), m_EMM(model) { m_N = 1; }
332
339 std::vector<double> Equations(const std::vector<double> &x);
340
341 private:
342 const EffectiveMassModel *m_EMM;
343 };
344
351 public:
358 : BroydenEquations(), m_EMM(model) { m_N = 1; }
359
366 std::vector<double> Equations(const std::vector<double> &x);
367
368 private:
369 const EffectiveMassModel *m_EMM;
370 };
371
372 };
373
374} // namespace thermalfist
375
376#endif
Implementation of the generic Broyden's method routines.
int m_N
The number of equations.
Definition Broyden.h:66
BroydenEquations()=default
Default constructor. Does nothing.
virtual EMMFieldPressure * clone() const
Creates a clone of this EMMFieldPressureChPT object.
EMMFieldPressureChPT(double mass=0.135, double fpi=0.133)
Constructor for the EMMFieldPressureChPT class.
virtual double Dpf(double x) const
Derivative of the field pressure with respect to effective mass x according to ChPT.
virtual ~EMMFieldPressureChPT()
Virtual destructor for the EMMFieldPressureChPT class.
virtual double pf(double x) const
Field pressure as a function of effective mass x according to ChPT.
virtual double D2pf(double x) const
Second derivative of the field pressure with respect to effective mass x according to ChPT.
Base class implementing field pressure contribution function in the effective mass model....
EMMFieldPressure(double mass=0.135, double c=0)
Constructor for the EMMFieldPressure class.
virtual double pf(double x) const
Field pressure as a function of effective mass x.
virtual ~EMMFieldPressure()
Virtual destructor for the EMMFieldPressure class.
virtual double D2pf(double x) const
Second derivative of the field pressure with respect to effective mass x.
virtual EMMFieldPressure * clone() const
Creates a clone of this EMMFieldPressure object.
virtual double Dpf(double x) const
Derivative of the field pressure with respect to effective mass x.
BroydenEquationsEMMMeffConstrained(const EffectiveMassModel *model)
Constructor for the BroydenEquationsEMMMeffConstrained class.
std::vector< double > Equations(const std::vector< double > &x)
Implements the equations to be solved.
BroydenEquationsEMMMeff(const EffectiveMassModel *model)
Constructor for the BroydenEquationsEMMMeff class.
std::vector< double > Equations(const std::vector< double > &x)
Implements the equations to be solved.
std::vector< double > Equations(const std::vector< double > &x)
Implements the equations to be solved.
BroydenEquationsEMMTBEC(const EffectiveMassModel *model, double MuBEC)
Constructor for the BroydenEquationsEMMTBEC class.
double ComputeTBEC(double Mu, double TBECinit=-1.) const
Calculates the temperature of BEC formation for a given chemical potential.
bool IsSolved() const
Checks if the EMM equations are solved.
void SetParameters(double T, double Mu)
Sets the temperature and chemical potential of the particle.
virtual bool IsBECPhase() const
Checks if the particle is in a Bose-Einstein condensed phase.
void SetMeff(double meff)
Sets the effective mass manually.
void SolveMeff(double meffinit=-1.)
Solves for the effective mass using the given parameters.
double Density() const
Calculates the number density in 1/fm^3.
double EnergyDensity() const
Calculates the energy density in GeV/fm^3.
virtual double EffectiveMass() const
Gets the effective mass.
double ChemicalPotential() const
Gets the current chemical potential.
EffectiveMassModel(const ThermalParticle &particle=ThermalParticle(true, "pi", 211, 1.0, -1, 0.135, 0, 0, 1), EMMFieldPressure *FieldPressure=NULL)
Constructor for the EffectiveMassModel class.
double Pressure() const
Calculates the pressure in GeV/fm^3.
virtual double Quantity(IdealGasFunctions::Quantity quantity, double T, double mu)
Calculates a thermodynamic quantity.
virtual double BECFraction() const
Calculates the fraction of particles in the BEC phase.
double EntropyDensity() const
Calculates the entropy density in 1/fm^3.
double Meff() const
Gets the current effective mass.
double Temperature() const
Gets the current temperature.
virtual ~EffectiveMassModel(void)
Destructor for the EffectiveMassModel class.
Class containing all information about a particle specie.
Quantity
Identifies the thermodynamic function.
constexpr double GeVtoifm()
A constant to transform GeV into fm .
Definition xMath.h:25
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9