An example of calculating various thermodynamic quantities over a range of T, \(\mu_B\), \(\mu_Q\), and \(\mu_S\).
For each specified value of T, \(\mu_B\), \(\mu_Q\), and \(\mu_S\), the following quantities are calculated:
#include <string.h>
#include <fstream>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <ctime>
#include <cstdio>
#include <cassert>
#include "ThermalFISTConfig.h"
using namespace std;
#ifdef ThermalFIST_USENAMESPACE
#endif
{ "T", { 0.100, 0.180, 0.001 } },
{ "muB", { 0.000, 0.000, 0.01 } },
{ "muQ", { 0.000, 0.000, 0.01 } },
{ "muS", { 0.000, 0.000, 0.01 } }
};
{
if (filename == "")
return;
std::ifstream fin(filename);
if (!fin.is_open()) {
std::cerr << "Error: cannot open file " << filename << " using default parameter range" << std::endl;
return;
}
std::string line;
while (std::getline(fin, line)) {
if (line.empty() || line[0] == '#') { continue; }
std::istringstream iss(line);
std::string param;
if (!(iss >> param)) continue;
if (param[0] == '#') { continue; }
double min, max, step;
if (!(iss >> min >> max >> step)) { break; }
}
fin.close();
}
int main(
int argc,
char *argv[])
{
double a = 0.;
if (argc > 1)
a = atof(argv[1]);
double b = 0.;
if (argc > 2)
b = atof(argv[2]);
bool useRG = false;
if (argc > 3)
useRG = atoi(argv[3]);
string param_range_file = "";
if (argc > 4)
param_range_file = argv[4];
int ModelType = 0;
string ModelPrefix = "Id-HRG";
if (a == 0. && b == 0.) {
ModelType = 0;
ModelPrefix = "Id-HRG";
}
else if (a == 0.) {
ModelType = 1;
ModelPrefix = "EV-HRG";
}
else {
ModelType = 2;
ModelPrefix = "QvdW-HRG";
}
if (useRG) {
ModelType = 3;
ModelPrefix = "RG-HRG";
}
std::string outputfile = "Thermodynamics-" + ModelPrefix + "-output.dat";
if (argc > 5)
outputfile = argv[5];
assert(ModelType >= 0 && ModelType <= 3);
if (ModelType == 0) {
cout << "Performing calculation in the Id-HRG model..." << endl;
}
else if (ModelType == 1) {
cout << "Performing calculation in the EV-HRG model..." << endl;
}
else if (ModelType == 2) {
cout << "Performing calculation in the QvdW-HRG model..." << endl;
}
else if (ModelType == 3) {
if (b != 0.) {
}
if (a != 0.) {
}
cout << "Performing calculation in the RG-HRG model..." << endl;
}
bool useWidth = false;
if (useWidth)
bool useQStats = true;
if (useQStats)
ofstream fout(outputfile);
const int tabsize = 20;
fout << std::setw(tabsize) << "T[GeV]" << " ";
fout << std::setw(tabsize) << "muB[GeV]" << " ";
fout << std::setw(tabsize) << "muQ[GeV]" << " ";
fout << std::setw(tabsize) << "muS[GeV]" << " ";
fout << std::setw(tabsize) << "P[GeV/fm3]" << " ";
fout << std::setw(tabsize) << "e[GeV/fm3]" << " ";
fout << std::setw(tabsize) << "s[fm-3]" << " ";
fout << std::setw(tabsize) << "(1/3-p/e)" << " ";
fout << std::setw(tabsize) << "rhoB[fm-3]" << " ";
fout << std::setw(tabsize) << "rhoQ[fm-3]" << " ";
fout << std::setw(tabsize) << "rhoS[fm-3]" << " ";
fout << std::setw(tabsize) << "P/T^4" << " ";
fout << std::setw(tabsize) << "e/T^4" << " ";
fout << std::setw(tabsize) << "s/T^3" << " ";
fout << std::setw(tabsize) << "(e-3p)/T^3" << " ";
fout << std::setw(tabsize) << std::endl;
int iters = 0;
for(double T = Tmin; T <= Tmax + 0.1 * dT; T += dT) {
cout << "Calculating the temperature " << T << " GeV" << endl;
for(double muB = muBmin; muB <= muBmax + 0.1 * dmuB; muB += dmuB) {
for(double muQ = muQmin; muQ <= muQmax + 0.1 * dmuQ; muQ += dmuQ) {
for(double muS = muSmin; muS <= muSmax + 0.1 * dmuS; muS += dmuS) {
iters++;
double p = model->Pressure();
double e = model->EnergyDensity();
double s = model->EntropyDensity();
double rhoB = model->BaryonDensity();
double rhoQ = model->ElectricChargeDensity();
double rhoS = model->StrangenessDensity();
double trace_anomaly = (1./3. - p/e);
fout << setw(tabsize) << T << " ";
fout << setw(tabsize) << muB << " ";
fout << setw(tabsize) << muQ << " ";
fout << setw(tabsize) << muS << " ";
fout << setw(tabsize) << p << " ";
fout << setw(tabsize) << e << " ";
fout << setw(tabsize) << s << " ";
fout << setw(tabsize) << trace_anomaly << " ";
fout << setw(tabsize) << rhoB << " ";
fout << setw(tabsize) << rhoQ << " ";
fout << setw(tabsize) << rhoS << " ";
fout << setw(tabsize) << pT4 << " ";
fout << setw(tabsize) << eT4 << " ";
fout << setw(tabsize) << sT3 << " ";
fout << setw(tabsize) << IT4 << " ";
fout << setw(tabsize) << endl;
}
}
}
}
fout.close();
cout << setw(30) << "Running time: " << (wt2 - wt1) << " s" << endl;
cout << setw(30) << "Time per single calculation: " << (wt2 - wt1) / iters << " s" << endl;
delete model;
return 0;
}
int main(int argc, char *argv[])
Contains some functions to deal with excluded volumes.
void ReadParameterRangeFromFile(const std::string &filename)
map< string, vector< double > > param_range
Base class implementing the ideal gas.
Class implementing auxiliary functions for the Carnahan-Starling excluded volume model.
Implementation of a crossterms generalized excluded volume model.
Implementation of the van der Waals mean field model for multiple components.
Abstract base class for an HRG model implementation.
virtual void SetTemperature(double T)
Set the temperature.
void SetUseWidth(bool useWidth)
Sets whether finite resonance widths are used. Deprecated.
virtual void SetBaryonChemicalPotential(double muB)
Set the baryon chemical potential.
virtual void SetElectricChemicalPotential(double muQ)
Set the electric chemical potential.
virtual void CalculatePrimordialDensities()=0
Calculates the primordial densities of all species.
virtual void SetStrangenessChemicalPotential(double muS)
Set the strangeness chemical potential.
virtual void SetCalculationType(IdealGasFunctions::QStatsCalculationType type)
Sets the CalculationType() method to evaluate quantum statistics. Calls the corresponding method in T...
virtual void SetStatistics(bool stats)
Class implementing the crossterms excluded-volume model.
Class implementing the Ideal HRG model.
Class implementing the quantum real gas HRG model.
Class implementing the quantum van der Waals HRG model.
@ eBWconstBR
Energy-dependent Breit-Wigner scheme (eBW) with constant branching ratios when evaluating feeddown.
Class containing the particle list.
constexpr double GeVtoifm3()
A constant to transform GeV into fm .
The main namespace where all classes and functions of the Thermal-FIST library reside.
std::vector< std::vector< double > > GetBaryonBaryonInteractionMatrix(const ThermalParticleSystem *TPS, double param)
Returns the matrix of attraction and repulsion parameters for baryon-baryon and antibaryon-antibaryon...
void SetVDWHRGInteractionParameters(ThermalModelBase *model, double a, double b)
Sets vdW interactions for baryon-baryon and antibaryon-antibaryon pairs as in https://arxiv....
void SetEVHRGInteractionParameters(ThermalModelBase *model, double b)
Sets EV interactions for baryon-baryon and antibaryon-antibaryon pairs as in https://arxiv....