An example of calculating the neutron star matter equation of state (EoS) in beta-equilibrium over a range of baryon chemical potentials ( \(\mu_B\)).
The EoS is calculated using an interacting HRG model with mean field attraction and Carnahan-Starling excluded volume repulsion. Model parameters are based on Fujimoto et al., Phys. Lett. B 835 (2022) 137524 (https://arxiv.org/pdf/2109.06799)
#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
map<string, double>
params = {
{ "muBmin", 0.940 },
{ "muBmax", 1.500 },
{ "muBstep", 0.010 },
{ "include_leptons", 1},
{"a", 0.160},
{"b", 2.236}
};
{
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 val;
if (!(iss >> val)) { break; }
}
fin.close();
}
int main(
int argc,
char *argv[])
{
string params_file = "";
if (argc > 1)
params_file = argv[1];
bool include_leptons = (
params[
"include_leptons"] != 0.);
std::string outputfile = "NSMatter-CSHRG";
if (include_leptons)
outputfile += "-leptons";
outputfile += "-output.dat";
if (argc > 2)
outputfile = argv[2];
vector<string> lists = {string(ThermalFIST_INPUT_FOLDER) + "/list/PDG2020/list.dat"};
if (include_leptons)
lists.push_back(string(ThermalFIST_INPUT_FOLDER) + "/list/electroweak/list-charged-leptons.dat");
{
if (b != 0.) {
}
if (a != 0.) {
}
}
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) << "nB[n0]" << " ";
fout << std::setw(tabsize) << "nQ[n0]" << " ";
fout << std::setw(tabsize) << "P[GeV/fm3]" << " ";
fout << std::setw(tabsize) << "e[GeV/fm3]" << " ";
fout << std::setw(tabsize) << "s[GeV/fm3]" << " ";
fout << std::setw(tabsize) << "(1/3-p/e)" << " ";
fout << std::setw(tabsize) << "vs2" << " ";
fout << std::setw(tabsize) << "vT2" << " ";
fout << std::setw(tabsize) << "Yp" << " ";
fout << std::setw(tabsize) << "Yn" << " ";
fout << std::setw(tabsize) << "YSig-" << " ";
fout << std::setw(tabsize) << "YLambda" << " ";
fout << std::setw(tabsize) << "Ye" << " ";
fout << std::setw(tabsize) << "Ymu" << " ";
fout << std::setw(tabsize) << std::endl;
const double n0 = 0.16;
int iters = 0;
double pprev = 0., eprev = 0.;
double muBmin =
params[
"muBmin"];
double muBmax =
params[
"muBmax"];
double dmuB =
params[
"muBstep"];
for(double muB = muBmin; muB <= muBmax + 0.1 * dmuB; muB += dmuB) {
{
double rhoQ = model->ElectricChargeDensity() / n0;
int max_repeats = 5;
for(int i = 0; i < max_repeats && abs(rhoQ) > 1.e-10; i++) {
rhoQ = model->ElectricChargeDensity() / n0;
}
}
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);
double Ye = 0.;
double Ymu = 0.;
if (include_leptons) {
}
double vs2fct = model->cs2(true, true, false);
double vT2fct = model->cT2(true, true, false);
fout << setw(tabsize) << T << " ";
fout << setw(tabsize) << muB << " ";
fout << setw(tabsize) << muQ << " ";
fout << setw(tabsize) << muS << " ";
fout << setw(tabsize) << rhoB / n0 << " ";
fout << setw(tabsize) << rhoQ / n0 << " ";
fout << setw(tabsize) << p << " ";
fout << setw(tabsize) << e << " ";
fout << setw(tabsize) << s << " ";
fout << setw(tabsize) << trace_anomaly << " ";
fout << setw(tabsize) << vs2fct << " ";
fout << setw(tabsize) << vT2fct << " ";
fout << setw(tabsize) << Yp << " ";
fout << setw(tabsize) << Yn << " ";
fout << setw(tabsize) << YSig << " ";
fout << setw(tabsize) << YLam << " ";
fout << setw(tabsize) << Ye << " ";
fout << setw(tabsize) << Ymu << " ";
fout << setw(tabsize) << endl;
pprev = p;
eprev = e;
}
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.
map< string, double > params
void ReadParametersFromFile(const std::string &filename)
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.
virtual void SetTemperature(double T)
Set the temperature.
void SetQoverB(double QB)
The electric-to-baryon charge ratio to be used to constrain the electric chemical potential.
bool ConstrainMuS() const
void ConstrainChemicalPotentials(bool resetInitialValues=true)
Constrains the chemical potentials by the conservation laws imposed.
void SetUseWidth(bool useWidth)
Sets whether finite resonance widths are used. Deprecated.
virtual void SetBaryonChemicalPotential(double muB)
Set the baryon chemical potential.
virtual double SusceptibilityDimensionfull(ConservedCharge::Name i, ConservedCharge::Name j) const
A 2nd order susceptibility of conserved charges.
virtual void SetElectricChemicalPotential(double muQ)
Set the electric chemical potential.
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...
const ThermalModelParameters & Parameters() const
virtual void SetStatistics(bool stats)
Class implementing the quantum real gas HRG model.
void SetExcludedVolumeModel(ExcludedVolumeModelMultiBase *exvolmod)
Set the excluded volume model for the real gas HRG model.
virtual void CalculatePrimordialDensities()
Calculate the primordial densities of the particle species.
virtual std::vector< std::vector< double > > CalculateFluctuations(int order)
Calculate the fluctuations of the particle species.
@ eBWconstBR
Energy-dependent Breit-Wigner scheme (eBW) with constant branching ratios when evaluating feeddown.
Class containing the particle list.
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...
@ BaryonCharge
Baryon number.
@ ElectricCharge
Electric charge.