An example of calculating the chemical potentials as a function of temperature in the Early Universe.
Where <le>, <lmu>, and <ltau> are the electron, muon, and tau flavor asymmetries, respectively.
#include <string.h>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <ctime>
#include <cstdio>
#include <vector>
#include <string>
#include "ThermalFISTConfig.h"
using namespace std;
int main(
int argc,
char *argv[])
{
double b = 8.6e-11;
double q = 0.0;
double le = 0.0;
if (argc > 1)
le = atof(argv[1]);
double lmu = 0.0;
if (argc > 2)
lmu = atof(argv[2]);
double ltau = 0.0;
if (argc > 3)
ltau = atof(argv[3]);
if (fabs(le) < 1.e-13)
le = 0.0;
if (fabs(lmu) < 1.e-13)
lmu = 0.0;
if (fabs(ltau) < 1.e-13)
ltau = 0.0;
bool useWidth = false;
if (useWidth)
bool useQStats = true;
bool interactingpions = true;
CosmicEoS cosmos(&modelHRG, interactingpions);
cout << "le + lmu = " << setw(15) << le + lmu << endl;
cout << "le - lmu = " << setw(15) << le - lmu << endl;
cout << "le = " << setw(15) << le << endl;
cout << "lmu = " << setw(15) << lmu << endl;
cout << "ltau = " << setw(15) << ltau << endl;
double Tmin = 0.010;
double Tmax = 0.180;
double dT = 0.001;
vector<double> Temps;
for (double tT = Tmin; tT <= Tmax + 0.1 * dT; tT += dT) {
Temps.push_back(tT);
}
string filename = "CosmicTrajectory";
{
char cc[500];
sprintf(cc, "le+lmu.%lf", le + lmu);
filename += "." + string(cc);
}
filename += ".dat";
ofstream fout(filename);
fout << setw(15) << "T[MeV]" << " ";
fout << setw(15) << "muB[MeV]" << " ";
fout << setw(15) << "muQ[MeV]" << " ";
fout << setw(15) << "mue[MeV]" << " ";
fout << setw(15) << "mum[MeV]" << " ";
fout << setw(15) << "mut[MeV]" << " ";
fout << setw(15) << "pion_bec" << " ";
fout << setw(15) << "nI/T3" << " ";
fout << setw(15) << "pT4" << " ";
fout << setw(15) << "eT4" << " ";
fout << setw(15) << "IT4" << " ";
fout << setw(15) << "pT4_QCD" << " ";
fout << setw(15) << "eT4_QCD" << " ";
fout << setw(15) << "IT4_QCD" << " ";
fout << setw(15) << "sT3" << " ";
fout << setw(15) << "sT3_QCD" << " ";
fout << setw(15) << "IT4_e" << " ";
fout << setw(15) << "IT4_mu" << " ";
fout << setw(15) << "IT4_tau" << " ";
fout << setw(15) << "nQ_QCD/T3" << " ";
fout << setw(15) << "npi_QCD/T3" << " ";
fout << setw(15) << "ne/T3" << " ";
fout << setw(15) << "nmu/T3" << " ";
fout << setw(15) << "ntau/T3" << " ";
fout << endl;
cout << setw(15) << "T[MeV]" << " ";
cout << setw(15) << "muB[MeV]" << " ";
cout << setw(15) << "muQ[MeV]" << " ";
cout << setw(15) << "mue[MeV]" << " ";
cout << setw(15) << "mum[MeV]" << " ";
cout << setw(15) << "mut[MeV]" << " ";
cout << setw(15) << "pion_bec" << endl;
int iters = 0;
vector<double> prev = vector<double>({ 0.700, -1.e-7, -1.e-7, -1.e-7, -1.e-7 });
for (auto&& T : Temps) {
iters++;
prev = chems;
if (!interactingpions && abs(chems[1]) > 0.139)
break;
cout << setw(15) << T * 1.e3 << " ";
cout << setw(15) << chems[0] * 1.e3 << " ";
cout << setw(15) << chems[1] * 1.e3 << " ";
cout << setw(15) << chems[2] * 1.e3 << " ";
cout << setw(15) << chems[3] * 1.e3 << " ";
cout << setw(15) << chems[4] * 1.e3 << " ";
fout << setw(15) << T * 1.e3 << " ";
fout << setw(15) << chems[0] * 1.e3 << " ";
fout << setw(15) << chems[1] * 1.e3 << " ";
fout << setw(15) << chems[2] * 1.e3 << " ";
fout << setw(15) << chems[3] * 1.e3 << " ";
fout << setw(15) << chems[4] * 1.e3 << " ";
fout << endl;
}
if (0) {
for(int iT = Temps.size() - 1; 0 && iT >= 0; iT--) {
double T = Temps[iT];
iters++;
prev = chems;
if (!interactingpions && abs(chems[1]) > 0.139)
break;
cout << setw(15) << T * 1.e3 << " ";
cout << setw(15) << chems[0] * 1.e3 << " ";
cout << setw(15) << chems[1] * 1.e3 << " ";
cout << setw(15) << chems[2] * 1.e3 << " ";
cout << setw(15) << chems[3] * 1.e3 << " ";
cout << setw(15) << chems[4] * 1.e3 << " ";
fout << setw(15) << T * 1.e3 << " ";
fout << setw(15) << chems[0] * 1.e3 << " ";
fout << setw(15) << chems[1] * 1.e3 << " ";
fout << setw(15) << chems[2] * 1.e3 << " ";
fout << setw(15) << chems[3] * 1.e3 << " ";
fout << setw(15) << chems[4] * 1.e3 << " ";
fout << endl;
}
}
printf("%30s %lf s\n", "Running time:", (wt2 - wt1));
printf("%30s %lf s\n", "Time per single calculation:", (wt2 - wt1) / iters);
return 0;
}
int main(int argc, char *argv[])
Class implementing cosmological equation of state as a mixture of HRG model, ideal gases of leptons a...
double PressureHRG()
Calculates the partial pressure of the HRG part.
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.
double EntropyDensityHRG()
Calculates the entropy density of the HRG part.
ThermalModelBase * HRGModel() const
Gets the pointer to the HRG model object.
double PressureChargedLepton(int iL)
Calculates the partial pressure of charged lepton flavor.
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.
double EnergyDensityChargedLepton(int iL)
Calculates the energy density of charged lepton flavor.
double NetDensityChargedLepton(int iL)
Calculates the net density of charged lepton flavor.
void SetAsymmetries(const std::vector< double > &asymmetries)
Sets all asymmetries at once.
double Pressure()
Calculates the total pressure.
double EntropyDensity()
Calculates the total entropy density.
double IsospinChargeDensity(bool absolute=false)
Calculates the isospin charge density.
void SetUseWidth(bool useWidth)
Sets whether finite resonance widths are used. Deprecated.
virtual void SetStatistics(bool stats)
Class implementing the Ideal HRG model.
@ eBWconstBR
Energy-dependent Breit-Wigner scheme (eBW) with constant branching ratios when evaluating feeddown.
Class containing the particle list.
constexpr double GeVtoifm()
A constant to transform GeV into fm .
The main namespace where all classes and functions of the Thermal-FIST library reside.