Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
CosmicEoS.cpp
Go to the documentation of this file.
2
3#include <iostream>
4#include <stdexcept>
5
7
8using namespace std;
9
10namespace thermalfist {
11
13 double CosmicEoS::fpi = 0.133;
14
15// Deprecated, the masses and quantum numbers are now taken from ExtraParticles.h/cpp
17 double LeptonFlavor::m_e = 0.000511;
18
20 double LeptonFlavor::m_mu = 0.105658;
21
23 double LeptonFlavor::m_tau = 1.77684;
24
25 CosmicEoS::CosmicEoS(ThermalModelBase* THMbase, bool pionsinteract) :
26 m_modelHRG(THMbase)
27 {
28 // No strangeness of charm conservation
29 m_modelHRG->SetStrangenessChemicalPotential(0.);
30 m_modelHRG->SetCharmChemicalPotential(0.);
31
32 m_ChemCurrent = std::vector<double>(2 + LeptonFlavor::NumberOfFlavors, 0.);
33 m_Asymmetries = std::vector<double>(2 + LeptonFlavor::NumberOfFlavors, 0.);
34
35 // Default baryon asymmetry
36 double b = 8.6e-11;
37
38 // Default lepton asymmetry (uniform across the three flavors)
39 double l = -(51. / 28.) * b;
40 m_Asymmetries[0] = b;
41 m_Asymmetries[1] = 0.;
42 m_Asymmetries[2] = l / 3.;
43 m_Asymmetries[3] = l / 3.;
44 m_Asymmetries[4] = l / 3.;
45
46 if (true) {
47 vector<long long> pdgs = {22, // photon
48 11, 13, 15, // charged leptons
49 12, 14, 16 // neutrinos
50 };
51 m_ChargedLeptons.resize(3);
52 m_Neutrinos.resize(3);
53
54 std::vector<ThermalParticle *> parts = {
55 &m_Photon,
58 };
59 std::vector<double> degeneracies = {
60 2., 2., 2., 2., 1., 1., 1.
61 };
62 //for (auto pdg : pdgs) {
63 for (int ipdg = 0; ipdg < pdgs.size(); ++ipdg) {
64 long long pdg = pdgs[ipdg];
65
66 *parts[ipdg] = ExtraParticles::ParticleByPdg(pdg);
67 // Check if the particle is already in the "HRG" particle list
68 // if so, take it from there and set its degeneracy to zero in "HRG" to avoid double counting
70 if (m_modelHRG->TPS()->PdgToId(pdg) != -1) {
71 *parts[ipdg] = m_modelHRG->TPS()->Particle(m_modelHRG->TPS()->PdgToId(pdg));
72 m_modelHRG->TPS()->ParticleByPDG(pdg).SetDegeneracy(0.);
73 if (m_modelHRG->TPS()->PdgToId(-pdg) != -1)
74 m_modelHRG->TPS()->ParticleByPDG(-pdg).SetDegeneracy(0.);
75 }
76 if (parts[ipdg]->Degeneracy() == 0)
77 parts[ipdg]->SetDegeneracy(degeneracies[ipdg]);
78 }
79 }
80 else { // Legacy implementation
81
82 // Photon
83 m_Photon = ThermalParticle(true, "photon", 22, 2., -1, 0.);
84
85 // Charged leptons
86 m_ChargedLeptons.push_back(ThermalParticle(true, "e", 11, 2., 1, LeptonFlavor::m_e, 0, 0, -1));
87 m_ChargedLeptons.push_back(ThermalParticle(true, "mu", 13, 2., 1, LeptonFlavor::m_mu, 0, 0, -1));
88 m_ChargedLeptons.push_back(ThermalParticle(true, "tau", 15, 2., 1, LeptonFlavor::m_tau, 0, 0, -1));
89
90 // Neutrinos
91 m_Neutrinos.push_back(ThermalParticle(true, "nu_e", 12, 1., 1, 0.));
92 m_Neutrinos.push_back(ThermalParticle(true, "nu_m", 14, 1., 1, 0.));
93 m_Neutrinos.push_back(ThermalParticle(true, "nu_t", 16, 1., 1, 0.));
94 }
95
96 SetPionsInteracting(pionsinteract);
97 }
98
100 {
101 m_T = T;
102 m_modelHRG->SetTemperature(T);
103 }
104
106 {
107 m_ChemCurrent[1] = muQ;
108 m_modelHRG->SetElectricChemicalPotential(muQ);
109 }
110
112 {
113 m_modelHRG->CalculatePrimordialDensities();
114 }
115
117 {
118 double ret = EntropyDensityHRG();
119
120 ret += m_Photon.Density(m_modelHRG->Parameters(), IdealGasFunctions::EntropyDensity, false, 0.0);
121
122 double muB = m_ChemCurrent[0];
123 double muQ = m_ChemCurrent[1];
124 for (int iL = 0; iL < 3; ++iL) {
125 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EntropyDensity, false, m_ChemCurrent[2 + iL] - muQ);
126 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EntropyDensity, false, -(m_ChemCurrent[2 + iL] - muQ));
127 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EntropyDensity, false, m_ChemCurrent[2 + iL]);
128 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EntropyDensity, false, -m_ChemCurrent[2 + iL]);
129 }
130
131 return ret;
132 }
133
135 {
136 double ret = m_modelHRG->EntropyDensity();
137
138 return ret;
139 }
140
142 {
143 //double ret = m_modelHRG->Pressure();
144 double ret = PressureHRG();
145
146 ret += m_Photon.Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, 0.0);
147
148 double muB = m_ChemCurrent[0];
149 double muQ = m_ChemCurrent[1];
150 for (int iL = 0; iL < 3; ++iL) {
151 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, m_ChemCurrent[2 + iL] - muQ);
152 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, -(m_ChemCurrent[2 + iL] - muQ));
153 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, m_ChemCurrent[2 + iL]);
154 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, -m_ChemCurrent[2 + iL]);
155 }
156
157 return ret;
158 }
159
161 {
162 double ret = m_modelHRG->Pressure();
163
164 return ret;
165 }
166
168 {
169 double ret = EnergyDensityHRG();
170
171 ret += m_Photon.Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, 0.0);
172
173 double muB = m_ChemCurrent[0];
174 double muQ = m_ChemCurrent[1];
175 for (int iL = 0; iL < 3; ++iL) {
176 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, m_ChemCurrent[2 + iL] - muQ);
177 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, -(m_ChemCurrent[2 + iL] - muQ));
178 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, m_ChemCurrent[2 + iL]);
179 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, -m_ChemCurrent[2 + iL]);
180 }
181
182 return ret;
183 }
184
186 {
187 double ret = m_modelHRG->EnergyDensity();
188
189 return ret;
190 }
191
193 {
194 double ret = 0.0;
195
196 double muQ = m_ChemCurrent[1];
197 ret += (-1.) * m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, m_ChemCurrent[2 + iL] - muQ);
198 ret += ( 1.) * m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, -(m_ChemCurrent[2 + iL] - muQ));
199
200 return ret;
201 }
202
204 {
205 double ret = 0.0;
206 double muQ = m_ChemCurrent[1];
207 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, m_ChemCurrent[2 + iL] - muQ);
208 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::Pressure, false, -(m_ChemCurrent[2 + iL] - muQ));
209 return ret;
210 }
211
213 {
214 double ret = 0.0;
215 double muQ = m_ChemCurrent[1];
216 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, m_ChemCurrent[2 + iL] - muQ);
217 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::EnergyDensity, false, -(m_ChemCurrent[2 + iL] - muQ));
218 return ret;
219 }
220
221 double CosmicEoS::BaryonDensity(bool absolute)
222 {
223 if (!absolute) return m_modelHRG->BaryonDensity();
224 else return m_modelHRG->AbsoluteBaryonDensity();
225 }
226
228 {
229 double ret = ElectricChargeDensityHRG(absolute);
230
231 double mn = -1.;
232 if (absolute)
233 mn = 1.;
234
235 double muB = m_ChemCurrent[0];
236 double muQ = m_ChemCurrent[1];
237 for (int iL = 0; iL < 3; ++iL) {
238 ret += mn * m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, m_ChemCurrent[2 + iL] - muQ);
239 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, -(m_ChemCurrent[2 + iL] - muQ));
240 }
241
242 return ret;
243 }
244
246 {
247 double ret = 0.;
248 if (!absolute) ret = m_modelHRG->ElectricChargeDensity();
249 else ret = m_modelHRG->AbsoluteElectricChargeDensity();
250
251 return ret;
252 }
253
255 {
256 double nI = 0.0;
257 for (int ipart = 0; ipart < HRGModel()->TPS()->Particles().size(); ++ipart) {
258 double iso_chg = IsospinCharge(HRGModel()->TPS()->Particle(ipart));
259 if (absolute)
260 iso_chg = abs(iso_chg);
261 nI += iso_chg * HRGModel()->Densities()[ipart];
262 }
263
264 return nI;
265 }
266
268 {
269 double ret = 0.0;
270
271 double mn = -1.;
272 if (absolute)
273 mn = 1.;
274
275 double muQ = m_ChemCurrent[1];
276 {
277 int iL = static_cast<int>(flavor);
278 ret += m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, m_ChemCurrent[2 + iL] - muQ);
279 ret += mn * m_ChargedLeptons[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, -(m_ChemCurrent[2 + iL] - muQ));
280 ret += m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, m_ChemCurrent[2 + iL]);
281 ret += mn * m_Neutrinos[iL].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, -m_ChemCurrent[2 + iL]);
282 }
283
284 return ret;
285 }
286
287 std::vector<double> CosmicEoS::SolveChemicalPotentials(double T, const std::vector<double>& muInit)
288 {
289 std::vector<double> ret = m_ChemCurrent;
290
291 if (muInit.size() == m_Asymmetries.size())
292 m_ChemCurrent = muInit;
293 else
294 m_ChemCurrent = std::vector<double>(m_Asymmetries.size(), 0);
295
297
299 Broyden broydn(&eqs);
300 //broydn.UseNewton(true);
301
302 Broyden::BroydenSolutionCriterium criterium(1.e-6);
303
304 return broydn.Solve(m_ChemCurrent, &criterium);
305 }
306
308 {
309 int pionid = m_modelHRG->TPS()->PdgToId(211);
310 if (pionid != -1)
311 return m_modelHRG->TPS()->Particle(pionid).Mass();
312 return 0.138;
313 }
314
315 void CosmicEoS::SetPionsInteracting(bool pionsinteract, double fpiChPT)
316 {
317 m_InteractingPions = pionsinteract;
318 ClearEMMs();
319 if (pionsinteract) {
320 HRGModel()->TPS()->ParticleByPDG(211).SetGeneralizedDensity(
322 HRGModel()->TPS()->ParticleByPDG(211),
323 new EMMFieldPressureChPT(HRGModel()->TPS()->ParticleByPDG(211).Mass(), fpiChPT)
324 ));
325 HRGModel()->TPS()->ParticleByPDG(111).SetGeneralizedDensity(
327 HRGModel()->TPS()->ParticleByPDG(111),
328 new EMMFieldPressureChPT(HRGModel()->TPS()->ParticleByPDG(111).Mass(), fpiChPT)
329 ));
330 HRGModel()->TPS()->ParticleByPDG(-211).SetGeneralizedDensity(
332 HRGModel()->TPS()->ParticleByPDG(-211),
333 new EMMFieldPressureChPT(HRGModel()->TPS()->ParticleByPDG(-211).Mass(), fpiChPT)
334 ));
335 }
336 }
337
339 {
340 if (!InteractingPions())
341 return abs(ElectricChemicalPotential()) >= GetPionMass();
342 else {
343 return HRGModel()->TPS()->ParticleByPDG(211).GetGeneralizedDensity()->IsBECPhase()
344 || HRGModel()->TPS()->ParticleByPDG(111).GetGeneralizedDensity()->IsBECPhase()
345 || HRGModel()->TPS()->ParticleByPDG(-211).GetGeneralizedDensity()->IsBECPhase();
346 }
347 return false;
348 }
349
350 std::string CosmicEoS::GetSpeciesName(int id) const
351 {
352 if (id == 0)
353 return m_Photon.Name();
354 else {
355 int iL = id - 1;
356 if (iL/2 < m_ChargedLeptons.size())
357 if (iL % 2 == 0)
358 return m_ChargedLeptons[iL/2].Name();
359 else
360 return "anti-" + m_ChargedLeptons[iL/2].Name();
361 else {
362 iL -= 2 * m_ChargedLeptons.size();
363 if (iL/2 < m_Neutrinos.size())
364 if (iL % 2 == 0)
365 return m_Neutrinos[iL/2].Name();
366 else
367 return "anti-" + m_Neutrinos[iL/2].Name();
368 else {
369 throw std::out_of_range("CosmicEoS::GetSpeciesName: id = " + std::to_string(id) + " is out of range!");
370 }
371 }
372 }
373 }
374
375 double CosmicEoS::GetDensity(int id) const
376 {
377 if (id == 0)
378 return m_Photon.Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, 0.);
379 else {
380 double muQ = m_ChemCurrent[1];
381 int iL = id - 1;
382 if (iL/2 < m_ChargedLeptons.size())
383 if (iL % 2 == 0)
384 return m_ChargedLeptons[iL/2].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, m_ChemCurrent[2 + iL/2] - muQ);
385 else
386 return m_ChargedLeptons[iL/2].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, -(m_ChemCurrent[2 + iL/2] - muQ));
387 else {
388 iL -= 2 * m_ChargedLeptons.size();
389 if (iL/2 < m_Neutrinos.size())
390 if (iL % 2 == 0)
391 return m_Neutrinos[iL/2].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, m_ChemCurrent[2 + iL/2]);
392 else
393 return m_Neutrinos[iL/2].Density(m_modelHRG->Parameters(), IdealGasFunctions::ParticleDensity, false, -m_ChemCurrent[2 + iL/2]);
394 else {
395 throw std::out_of_range("CosmicEoS::GetDensity: id = " + std::to_string(id) + " is out of range!");
396 }
397 }
398 }
399 }
400
402 {
403 for (auto& part :m_modelHRG->TPS()->Particles()) {
404 part.ClearGeneralizedDensity();
405 }
406 }
407
408 std::vector<double> CosmicEoS::BroydenEquationsCosmology::Equations(const std::vector<double>& x)
409 {
410 std::vector<double> ret(x.size(), 0.);
411
412 double muB = x[0];
413 double muQ = x[1];
414
415 m_THM->SetBaryonChemicalPotential(muB);
416 m_THM->SetElectricChemicalPotential(muQ);
417 for (int iL = 0; iL < LeptonFlavor::NumberOfFlavors; iL++)
418 {
419 auto flavor = static_cast<LeptonFlavor::Name>(iL);
420 m_THM->SetLeptonChemicalPotential(flavor, x[2 + iL]);
421 }
422
423 m_THM->CalculatePrimordialDensities();
424
425
426 vector<double> constraints = m_THM->m_Asymmetries;
427
428 double s = m_THM->EntropyDensity();
429 double nB = m_THM->BaryonDensity();
430
431 if (constraints[0] != 0.0)
432 ret[0] = (nB / s - constraints[0]) / constraints[0];
433 else
434 ret[0] = nB / m_THM->BaryonDensity(true);
435
436 double nQ = m_THM->ElectricChargeDensity();
437
438 if (constraints[1] != 0.0)
439 ret[1] = (nQ / s - constraints[1]) / constraints[1];
440 // else if (constraints[0] != 0.0)
441 // ret[1] = nQ / nB;
442 else
443 ret[1] = nQ / m_THM->ElectricChargeDensity(true);
444
445 vector<double> nLs(LeptonFlavor::NumberOfFlavors, 0.);
446
447 for (int iL = 0; iL < LeptonFlavor::NumberOfFlavors; iL++)
448 {
449 auto flavor = static_cast<LeptonFlavor::Name>(iL);
450 nLs[iL] = m_THM->LeptonFlavorDensity(flavor);
451
452 if (constraints[2 + iL] != 0.0)
453 ret[2 + iL] = (nLs[iL] / s - constraints[2 + iL]) / constraints[2 + iL];
454 else
455 ret[2 + iL] = nLs[iL] / m_THM->LeptonFlavorDensity(flavor, true);
456 }
457
458 return ret;
459 }
460
461 double IsospinCharge(const ThermalParticle& part)
462 {
463 return 0.5 * (2. * part.ElectricCharge() - part.BaryonCharge() - part.Strangeness() - part.Charm());
464 }
465}
Sub-class where it is determined whether the required accuracy is achieved in the Broyden's method.
Definition Broyden.h:144
Class implementing the Broyden method to solve a system of non-linear equations.
Definition Broyden.h:132
virtual std::vector< double > Solve(const std::vector< double > &x0, BroydenSolutionCriterium *solcrit=NULL, int max_iterations=MAX_ITERS)
Definition Broyden.cpp:83
Class implementing the Broyden equations for cosmology.
Definition CosmicEoS.h:430
std::vector< double > Equations(const std::vector< double > &x)
Implements the equations to be solved.
double PressureHRG()
Calculates the partial pressure of the HRG part.
std::string GetSpeciesName(int id) const
Gets the name of particle species of given id.
bool m_InteractingPions
Whether to include pion interactions.
Definition CosmicEoS.h:404
std::vector< double > SolveChemicalPotentials(double T, const std::vector< double > &muInit=std::vector< double >())
Calculates the values of the chemical potential (B,Q,{L}) that satisfy the given asymmetry constraint...
double EnergyDensity()
Calculates the total energy density.
virtual void SetElectricChemicalPotential(double muQ)
Set the electric chemical potential.
std::vector< ThermalParticle > m_Neutrinos
Neutrinos.
Definition CosmicEoS.h:398
ThermalParticle m_Photon
Photons.
Definition CosmicEoS.h:392
static double fpi
Pion decay constant for pion interactions a la ChPT.
Definition CosmicEoS.h:321
double EntropyDensityHRG()
Calculates the entropy density of the HRG part.
std::vector< double > m_Asymmetries
Vector of asymmetries (baryon, charge, lepton flavors)
Definition CosmicEoS.h:416
CosmicEoS(ThermalModelBase *THMbase, bool pionsinteract=false)
Constructor.
Definition CosmicEoS.cpp:25
std::vector< double > m_ChemCurrent
Vector of chemical potentials (baryon, charge, lepton flavors)
Definition CosmicEoS.h:413
double ElectricChargeDensity(bool absolute=false)
Calculates the electric charge density.
ThermalModelBase * HRGModel() const
Gets the pointer to the HRG model object.
Definition CosmicEoS.h:78
double PressureChargedLepton(int iL)
Calculates the partial pressure of charged lepton flavor.
std::vector< ThermalParticle > m_ChargedLeptons
Charged leptons.
Definition CosmicEoS.h:395
double EnergyDensityHRG()
Calculates the energy density of the HRG part.
bool InPionCondensedPhase() const
Checks if the system has non-zero BEC of pions.
double ElectricChargeDensityHRG(bool absolute=false)
Calculates the electric charge density of the HRG part.
void SetPionsInteracting(bool pionsinteract=true, double fpiChPT=fpi)
Sets whether to include pion interactions via effective mass model.
virtual void SetTemperature(double T)
Set the temperature.
Definition CosmicEoS.cpp:99
double EnergyDensityChargedLepton(int iL)
Calculates the energy density of charged lepton flavor.
void CalculatePrimordialDensities()
Calculates number densities of all particle species.
double NetDensityChargedLepton(int iL)
Calculates the net density of charged lepton flavor.
void ClearEMMs()
Clears the effective mass models.
double BaryonDensity(bool absolute=false)
Calculates the total baryon density.
double GetPionMass() const
Gets the mass of pi+.
double Pressure()
Calculates the total pressure.
bool InteractingPions() const
Checks if pions are interacting in the model.
Definition CosmicEoS.h:345
double ElectricChemicalPotential() const
Gets the current electric chemical potential.
Definition CosmicEoS.h:127
double LeptonFlavorDensity(LeptonFlavor::Name flavor, bool absolute=false)
Calculates the lepton flavor density.
double EntropyDensity()
Calculates the total entropy density.
ThermalModelBase * m_modelHRG
Pointer to an HRG model object.
Definition CosmicEoS.h:389
double IsospinChargeDensity(bool absolute=false)
Calculates the isospin charge density.
double GetDensity(int id) const
Gets the number density for given species.
double m_T
Temperature in GeV.
Definition CosmicEoS.h:410
Effective mass model matched to chiral perturbation theory for pions at T = 0. See supplemental mater...
Class implementing an effective mass model for single particle species.
Abstract base class for an HRG model implementation.
Class containing all information about a particle specie.
int BaryonCharge() const
Particle's baryon number.
int Strangeness() const
Particle's strangeness.
int ElectricCharge() const
Particle's electric charge.
int Charm() const
Particle's charm.
const ThermalParticle & ParticleByPdg(long long pdg)
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9
double IsospinCharge(const ThermalParticle &part)
Calculates the isospin charge of a particle.
static const int NumberOfFlavors
Number of lepton flavors.
Definition CosmicEoS.h:38
static double m_mu
Muon mass.
Definition CosmicEoS.h:44
Name
Set of all conserved charges considered.
Definition CosmicEoS.h:31
static double m_e
Electron mass.
Definition CosmicEoS.h:41
static double m_tau
Tauon mass.
Definition CosmicEoS.h:47