Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
NeutronStars-CSHRG.cpp
Go to the documentation of this file.
1/*
2 * Thermal-FIST package
3 *
4 * Copyright (c) 2025 Volodymyr Vovchenko
5 *
6 * GNU General Public License (GPLv3 or later)
7 */
8#include <string.h>
9#include <fstream>
10#include <iostream>
11#include <sstream>
12#include <iomanip>
13#include <ctime>
14#include <cstdio>
15#include <cassert>
16
17#include "HRGBase.h"
18#include "HRGEV.h"
19#include "HRGFit.h"
20#include "HRGVDW.h"
21#include "HRGRealGas.h"
22
24
25#include "ThermalFISTConfig.h"
26
27using namespace std;
28
29#ifdef ThermalFIST_USENAMESPACE
30using namespace thermalfist;
31#endif
32
33// The range in muB to scan
34map<string, double> params = {
35 { "muBmin", 0.940 }, // GeV
36 { "muBmax", 1.500 }, // GeV
37 { "muBstep", 0.010 }, // GeV
38 { "include_leptons", 1}, // Include leptons in the calculation
39 {"a", 0.160}, // van der Waals attraction (default value from https://arxiv.org/pdf/2109.06799)
40 {"b", 2.236} // Carnahan-Starling repulsion (default value from https://arxiv.org/pdf/2109.06799)
41};
42
43// Read the parameters from file
44void ReadParametersFromFile(const std::string &filename)
45{
46 if (filename == "")
47 return;
48 std::ifstream fin(filename);
49 if (!fin.is_open()) {
50 std::cerr << "Error: cannot open file " << filename << "using default parameter range" << std::endl;
51 return;
52 }
53
54 std::string line;
55 while (std::getline(fin, line)) {
56 if (line.empty() || line[0] == '#') { continue; } // skip empty lines and comments
57 std::istringstream iss(line);
58 std::string param;
59 if (!(iss >> param)) continue;
60 if (param[0] == '#') { continue; } // skip comments
61 double val;
62 if (!(iss >> val)) { break; } // error
63 params[param] = val;
64 }
65
66 fin.close();
67}
68
69// Calculates the neutron star matter EoS in beta-equilibrium
70// for a given range of muB
71// Usage: NeutronStars-CSHRG <param_file> <outputfile>
72// * <param_file> -- file with the parameters
73// * <outputfile> -- file to write the results to
74int main(int argc, char *argv[])
75{
76 // Parameter range from file
77 string params_file = "";
78 if (argc > 1)
79 params_file = argv[1];
80 ReadParametersFromFile(params_file);
81
82 bool include_leptons = (params["include_leptons"] != 0.);
83
84 std::string outputfile = "NSMatter-CSHRG";
85 if (include_leptons)
86 outputfile += "-leptons";
87 outputfile += "-output.dat";
88 if (argc > 2)
89 outputfile = argv[2];
90
91
92 vector<string> lists = {string(ThermalFIST_INPUT_FOLDER) + "/list/PDG2020/list.dat"};
93
94 // If including leptons, add the list of charged leptons
95 if (include_leptons)
96 lists.push_back(string(ThermalFIST_INPUT_FOLDER) + "/list/electroweak/list-charged-leptons.dat");
97
98 // Create the hadron list instance and read the list from file
99 ThermalParticleSystem TPS(lists);
100
101 // Create the ThermalModel instance, we will use real gas
102 // Choose the class which fits the required variant of HRG model
103 ThermalModelRealGas *model;
104 model = new ThermalModelRealGas(&TPS);
105 {
107 double b = params["b"];
108 if (b != 0.) {
109 auto vdWb = GetBaryonBaryonInteractionMatrix(model->TPS(), b);
111 }
112
113 double a = params["a"];
114 if (a != 0.) {
115 auto vdWa = GetBaryonBaryonInteractionMatrix(model->TPS(), a);
116 static_cast<ThermalModelRealGas *>(model)->SetMeanFieldModel(new MeanFieldModelMultiVDW(vdWa));
117 }
118 }
119
120 // Use (or not) finite resonance width
121 bool useWidth = false;
122 model->SetUseWidth(useWidth);
123 if (useWidth)
125
126 // Include (or not) quantum statistics
127 bool useQStats = true;
128 model->SetStatistics(useQStats);
129 if (useQStats)
131
132 // Prepare the output
133 ofstream fout(outputfile);
134 const int tabsize = 20;
135 fout << std::setw(tabsize) << "T[GeV]" << " ";
136 fout << std::setw(tabsize) << "muB[GeV]" << " ";
137 fout << std::setw(tabsize) << "muQ[GeV]" << " ";
138 fout << std::setw(tabsize) << "muS[GeV]" << " ";
139 fout << std::setw(tabsize) << "nB[n0]" << " ";
140 fout << std::setw(tabsize) << "nQ[n0]" << " "; // Electri charge density (should be zero)
141 fout << std::setw(tabsize) << "P[GeV/fm3]" << " "; // Pressure
142 fout << std::setw(tabsize) << "e[GeV/fm3]" << " "; // Energy density
143 fout << std::setw(tabsize) << "s[GeV/fm3]" << " "; // Entropy density (should be zero)
144 fout << std::setw(tabsize) << "(1/3-p/e)" << " "; // trace anomaly
145 // fout << std::setw(tabsize) << "vs2" << " "; // sound velocity squared
146 fout << std::setw(tabsize) << "vs2" << " "; // adiabatic sound velocity squared
147 fout << std::setw(tabsize) << "vT2" << " "; // isothermal sound velocity squared
148 fout << std::setw(tabsize) << "Yp" << " "; // proton fraction
149 fout << std::setw(tabsize) << "Yn" << " "; // neutron fraction
150 fout << std::setw(tabsize) << "YSig-" << " "; // proton fraction
151 fout << std::setw(tabsize) << "YLambda" << " "; // proton fraction
152 fout << std::setw(tabsize) << "Ye" << " "; // electron-to-baryon
153 fout << std::setw(tabsize) << "Ymu" << " "; // muon-to-baryon
154 fout << std::setw(tabsize) << std::endl;
155
156 const double n0 = 0.16; // fm^-3
157
158 // Timer
159 double wt1 = get_wall_time();
160 int iters = 0; // number of iterations
161
162 // Beta-equilibrium conditions
163 model->SetTemperature(0.);
164 model->SetQoverB(0.);
165 model->ConstrainMuS(false);
167
168 // "Good" initial guess for muQ for muB = 940 MeV
169 model->SetElectricChemicalPotential(-0.018);
170
171 // For vs2
172 double pprev = 0., eprev = 0.;
173
174 // Loop over the chemical potential
175 double muBmin = params["muBmin"];
176 double muBmax = params["muBmax"];
177 double dmuB = params["muBstep"];
178 for(double muB = muBmin; muB <= muBmax + 0.1 * dmuB; muB += dmuB) {
179 model->SetBaryonChemicalPotential(muB);
180
181 // Solve for beta-equilibrium (use previous muQ as initial guess)
182 model->ConstrainChemicalPotentials(false);
183
184 // Sometimes Broyden does not converge from first try (try to repeat and improve)
185 {
186 double rhoQ = model->ElectricChargeDensity() / n0;
187 int max_repeats = 5;
188 for(int i = 0; i < max_repeats && abs(rhoQ) > 1.e-10; i++) {
189 model->ConstrainChemicalPotentials(false);
190 rhoQ = model->ElectricChargeDensity() / n0;
191 }
192 }
193
194 // Compute the densities
196 iters++;
197
198 // Collect the output
199
200 double T = model->Parameters().T; // Temperature in GeV
201 double muQ = model->Parameters().muQ; // Electric charge chemical potential in GeV
202 double muS = model->Parameters().muS; // Strangeness chemical potential in GeV
203
204 double p = model->Pressure(); // Pressure in GeV/fm3
205 double e = model->EnergyDensity(); // Energy density in GeV/fm3
206 double s = model->EntropyDensity(); // Entropy density in fm-3
207 double rhoB = model->BaryonDensity(); // Baryon density in fm-3
208 double rhoQ = model->ElectricChargeDensity(); // Electric charge density in fm-3
209 double rhoS = model->StrangenessDensity(); // Strangeness density in fm-3
210 double trace_anomaly = (1./3. - p/e); // Trace anomaly
211
212 double Yp = model->GetDensity(2212, Feeddown::Primordial) / rhoB; // proton fraction
213 double Yn = model->GetDensity(2112, Feeddown::Primordial) / rhoB; // neutron fraction
214 double YSig = model->GetDensity(3112, Feeddown::Primordial) / rhoB; // Sigma- fraction
215 double YLam = model->GetDensity(3122, Feeddown::Primordial) / rhoB; // Lambda fraction
216 double Ye = 0.;
217 double Ymu = 0.;
218 if (include_leptons) {
219 Ye = model->GetDensity(11, Feeddown::Primordial) / rhoB; // electron-to-baryon
220 Ymu = model->GetDensity(13, Feeddown::Primordial) / rhoB; // muon-to-baryon
221 }
222
223
224 // vs2 = rhoB / muB * dmub / drhob
225 // For strangeness-neutral: vs2 = rhoB / muB / (chi2B + chi11BQ * dmuQ/dmuB)
226 model->CalculateFluctuations();
230 // double vs2 = (rhoB / xMath::GeVtoifm3()) / muB / (chi2B - chi11BQ * chi11BQ / chi2Q); // Cross-check
231 // if (chi11BQ == 0.)
232 // vs2 = (rhoB / xMath::GeVtoifm3()) / muB / (chi2B);
233 // // Finite difference (backward) for vs2
234 // double vs2FD = (p - pprev) / (e - eprev);
235
236 // Speed of sound
237 double vs2fct = model->cs2(true, true, false); // vs2 through the standard function
238 double vT2fct = model->cT2(true, true, false); // vT2 through the standard function
239
240 // Print to file
241 fout << setw(tabsize) << T << " ";
242 fout << setw(tabsize) << muB << " ";
243 fout << setw(tabsize) << muQ << " ";
244 fout << setw(tabsize) << muS << " ";
245 fout << setw(tabsize) << rhoB / n0 << " ";
246 fout << setw(tabsize) << rhoQ / n0 << " ";
247 fout << setw(tabsize) << p << " ";
248 fout << setw(tabsize) << e << " ";
249 fout << setw(tabsize) << s << " ";
250 fout << setw(tabsize) << trace_anomaly << " ";
251 // fout << setw(tabsize) << vs2 << " "; // vs2 direct
252 fout << setw(tabsize) << vs2fct << " "; // vs2 standard
253 fout << setw(tabsize) << vT2fct << " ";
254 fout << setw(tabsize) << Yp << " ";
255 fout << setw(tabsize) << Yn << " ";
256 fout << setw(tabsize) << YSig << " ";
257 fout << setw(tabsize) << YLam << " ";
258 fout << setw(tabsize) << Ye << " ";
259 fout << setw(tabsize) << Ymu << " ";
260 fout << setw(tabsize) << endl;
261
262 pprev = p;
263 eprev = e;
264 }
265
266 fout.close();
267
268
269 double wt2 = get_wall_time();
270 cout << setw(30) << "Running time: " << (wt2 - wt1) << " s" << endl;
271 cout << setw(30) << "Time per single calculation: " << (wt2 - wt1) / iters << " s" << endl;
272
273 // Cleanup
274 delete model;
275
276 return 0;
277}
278
Contains some functions to deal with excluded volumes.
int main(int argc, char *argv[])
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.
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.
Definition CosmicEoS.h:9
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...
double get_wall_time()
Definition Utility.cpp:191
@ ElectricCharge
Electric charge.
@ Primordial
No feeddown.