Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
SusceptibilitiesBQS.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"
23
24#include "ThermalFISTConfig.h"
25
26using namespace std;
27
28#ifdef ThermalFIST_USENAMESPACE
29using namespace thermalfist;
30#endif
31
32// The range in T, muB, muQ, muS to scan
33map<string, vector<double>> param_range = {
34 { "T", { 0.100, 0.180, 0.001 } }, // GeV
35 { "muB", { 0.000, 0.000, 0.01 } }, // GeV
36 { "muQ", { 0.000, 0.000, 0.01 } }, // GeV
37 { "muS", { 0.000, 0.000, 0.01 } } // GeV
38};
39
40// Read the parameter range from file
41void ReadParameterRangeFromFile(const std::string &filename)
42{
43 if (filename == "")
44 return;
45 std::ifstream fin(filename);
46 if (!fin.is_open()) {
47 std::cerr << "Error: cannot open file " << filename << "using default parameter range" << std::endl;
48 return;
49 }
50
51 std::string line;
52 while (std::getline(fin, line)) {
53 if (line.empty() || line[0] == '#') { continue; } // skip empty lines and comments
54 std::istringstream iss(line);
55 std::string param;
56 if (!(iss >> param)) continue;
57 if (param[0] == '#') { continue; } // skip comments
58 double min, max, step;
59 if (!(iss >> min >> max >> step)) { break; } // error
60 param_range[param] = { min, max, step };
61 }
62
63 fin.close();
64}
65
66// Calculates the HRG model 2nd order susceptibilities and their temperature derivatives
67// for a given range of T, muB, muQ, muS
68// Usage: SusceptibilitiesBQS <param_range_file> <outputfile> <a> <b> <useRG>
69// <a> -- parameter a for the QvdW model (GeV fm^3)
70// <b> -- parameter b for the QvdW model (fm^3)
71// <useRG> -- Use real gas model and Carnahan-Starling EV
72// <param_range_file> -- file with the parameter range
73// <outputfile> -- file to write the results to
74int main(int argc, char *argv[])
75{
76 // van der Waals attraction
77 double a = 0.329;
78 if (argc > 1)
79 a = atof(argv[1]);
80
81 // van der Waals repulsion
82 double b = 3.42;
83 if (argc > 2)
84 b = atof(argv[2]);
85
86 // Use real gas
87 bool useRG = false;
88 if (argc > 3)
89 useRG = atoi(argv[3]);
90
91 // Parameter range from file
92 string param_range_file = "";
93 if (argc > 4)
94 param_range_file = argv[4];
95 ReadParameterRangeFromFile(param_range_file);
96
97 // Compute isothermal speed of sound
98 bool compute_cT2 = false;
99 if (argc > 5)
100 compute_cT2 = atoi(argv[5]);
101
102 // Model type
103 // 0 - Ideal HRG, 1 - EV HRG (no attraction), 2 - QvdW HRG (from 1609.03975), 3 - Real gas HRG
104 int ModelType = 0;
105 string ModelPrefix = "Id-HRG";
106 if (a == 0. && b == 0.) {
107 ModelType = 0;
108 ModelPrefix = "Id-HRG";
109 }
110 else if (a == 0.) {
111 ModelType = 1;
112 ModelPrefix = "EV-HRG";
113 }
114 else {
115 ModelType = 2;
116 ModelPrefix = "QvdW-HRG";
117 }
118
119 if (useRG) {
120 ModelType = 3;
121 ModelPrefix = "RG-HRG";
122 }
123
124 std::string outputfile = "Susceptibilities-" + ModelPrefix + "-output.dat";
125 if (argc > 6)
126 outputfile = argv[6];
127
128
129 // Create the hadron list instance and read the list from file
130 ThermalParticleSystem TPS(string(ThermalFIST_INPUT_FOLDER) + "/list/PDG2020/list.dat"); // <-- Default list, no light nuclei
131 //ThermalParticleSystem TPS(string(ThermalFIST_INPUT_FOLDER) + "/list/PDG2020/list-withnuclei.dat"); // <-- Default list, with light nuclei
132
133 // Create the ThermalModel instance
134 // Choose the class which fits the required variant of HRG model
135 ThermalModelBase *model;
136 assert(ModelType >= 0 && ModelType <= 3);
137 if (ModelType == 0) {
138 model = new ThermalModelIdeal(&TPS);
139 cout << "Performing calculation in the Id-HRG model..." << endl;
140 }
141 else if (ModelType == 1) {
142 model = new ThermalModelEVCrossterms(&TPS);
144 cout << "Performing calculation in the EV-HRG model..." << endl;
145 }
146 else if (ModelType == 2) {
147 model = new ThermalModelVDW(&TPS);
149 cout << "Performing calculation in the QvdW-HRG model..." << endl;
150 }
151 else if (ModelType == 3) {
152 model = new ThermalModelRealGas(&TPS);
153
154 // Excluded volume model
155 if (b != 0.) {
156 // ExcludedVolumeModelBase *evmod = new ExcludedVolumeModelVDW();
158 auto vdWb = GetBaryonBaryonInteractionMatrix(model->TPS(), b);
159 static_cast<ThermalModelRealGas *>(model)->SetExcludedVolumeModel(
161 }
162
163 // Mean field model
164 if (a != 0.) {
165 auto vdWa = GetBaryonBaryonInteractionMatrix(model->TPS(), a);
166 static_cast<ThermalModelRealGas *>(model)->SetMeanFieldModel(new MeanFieldModelMultiVDW(vdWa));
167 }
168 cout << "Performing calculation in the RG-HRG model..." << endl;
169 }
170
171 // Use (or not) finite resonance width
172 bool useWidth = false;
173 model->SetUseWidth(useWidth);
174 if (useWidth)
176
177 // Include (or not) quantum statistics
178 bool useQStats = true;
179 model->SetStatistics(useQStats);
180 if (useQStats)
182
183 // Prepare the output
184 ofstream fout(outputfile);
185 const int tabsize = 20;
186 fout << std::setw(tabsize) << "T[GeV]" << " ";
187 fout << std::setw(tabsize) << "muB[GeV]" << " ";
188 fout << std::setw(tabsize) << "muQ[GeV]" << " ";
189 fout << std::setw(tabsize) << "muS[GeV]" << " ";
190 // Speed of sound squared
191 fout << std::setw(tabsize) << "cs2" << " ";
192 if (compute_cT2)
193 fout << std::setw(tabsize) << "cT2" << " ";
194 // Heat capacity
195 fout << std::setw(tabsize) << "cV/T^3" << " ";
196 // Susceptibilities
197 fout << std::setw(tabsize) << "chi2B" << " ";
198 fout << std::setw(tabsize) << "chi2Q" << " ";
199 fout << std::setw(tabsize) << "chi2S" << " ";
200 fout << std::setw(tabsize) << "chi11BQ" << " ";
201 fout << std::setw(tabsize) << "chi11BS" << " ";
202 fout << std::setw(tabsize) << "chi11QS" << " ";
203 // Temperature derivatives
204 fout << std::setw(tabsize) << "T*chi2B'" << " ";
205 fout << std::setw(tabsize) << "T*chi2Q'" << " ";
206 fout << std::setw(tabsize) << "T*chi2S'" << " ";
207 fout << std::setw(tabsize) << "T*chi11BQ'" << " ";
208 fout << std::setw(tabsize) << "T*chi11BS'" << " ";
209 fout << std::setw(tabsize) << "T*chi11QS'" << " ";
210 fout << std::setw(tabsize) << std::endl;
211
212 // Timer
213 double wt1 = get_wall_time();
214 int iters = 0; // number of iterations (phase diagram points)
215
216 // Loop over the thermodynamic variables
217 double Tmin = param_range["T"][0];
218 double Tmax = param_range["T"][1];
219 double dT = param_range["T"][2];
220 for(double T = Tmin; T <= Tmax + 0.1 * dT; T += dT) {
221 model->SetTemperature(T);
222
223 // Output the outer loop
224 cout << "Calculating the temperature " << T << " GeV" << endl;
225
226 double muBmin = param_range["muB"][0];
227 double muBmax = param_range["muB"][1];
228 double dmuB = param_range["muB"][2];
229 for(double muB = muBmin; muB <= muBmax + 0.1 * dmuB; muB += dmuB) {
230 model->SetBaryonChemicalPotential(muB);
231
232 double muQmin = param_range["muQ"][0];
233 double muQmax = param_range["muQ"][1];
234 double dmuQ = param_range["muQ"][2];
235 for(double muQ = muQmin; muQ <= muQmax + 0.1 * dmuQ; muQ += dmuQ) {
237
238 double muSmin = param_range["muS"][0];
239 double muSmax = param_range["muS"][1];
240 double dmuS = param_range["muS"][2];
241 for(double muS = muSmin; muS <= muSmax + 0.1 * dmuS; muS += dmuS) {
243
244
245 // Perform the calculation
247 model->CalculateFluctuations();
248 iters++;
249
250
251 // Susceptibilities
258
260 // Temperature derivatives
261 double Tchi2Bpr = T * model->dSuscdT(ConservedCharge::BaryonCharge, ConservedCharge::BaryonCharge);
262 double Tchi2Qpr = T * model->dSuscdT(ConservedCharge::ElectricCharge, ConservedCharge::ElectricCharge);
263 double Tchi2Spr = T * model->dSuscdT(ConservedCharge::StrangenessCharge, ConservedCharge::StrangenessCharge);
264 double Tchi11BQpr = T * model->dSuscdT(ConservedCharge::BaryonCharge, ConservedCharge::ElectricCharge);
265 double Tchi11BSpr = T * model->dSuscdT(ConservedCharge::BaryonCharge, ConservedCharge::StrangenessCharge);
266 double Tchi11QSpr = T * model->dSuscdT(ConservedCharge::ElectricCharge, ConservedCharge::StrangenessCharge);
267
268 // Speed of sound
269 double cs2 = model->cs2();
270
271 // Heat capacity
272 double cV = model->HeatCapacity();
273 double cVT3 = cV / pow(T, 3.) / xMath::GeVtoifm3();
274
275 // Print to file
276 fout << setw(tabsize) << T << " ";
277 fout << setw(tabsize) << muB << " ";
278 fout << setw(tabsize) << muQ << " ";
279 fout << setw(tabsize) << muS << " ";
280 fout << setw(tabsize) << cs2 << " ";
281 if (compute_cT2) {
282 double cT2 = model->cT2();
283 fout << setw(tabsize) << cT2 << " ";
284 }
285 fout << setw(tabsize) << cVT3 << " ";
286 fout << setw(tabsize) << chi2B << " ";
287 fout << setw(tabsize) << chi2Q << " ";
288 fout << setw(tabsize) << chi2S << " ";
289 fout << setw(tabsize) << chi11BQ << " ";
290 fout << setw(tabsize) << chi11BS << " ";
291 fout << setw(tabsize) << chi11QS << " ";
292 fout << setw(tabsize) << Tchi2Bpr << " ";
293 fout << setw(tabsize) << Tchi2Qpr << " ";
294 fout << setw(tabsize) << Tchi2Spr << " ";
295 fout << setw(tabsize) << Tchi11BQpr << " ";
296 fout << setw(tabsize) << Tchi11BSpr << " ";
297 fout << setw(tabsize) << Tchi11QSpr << " ";
298 fout << setw(tabsize) << endl;
299 }
300 }
301 }
302 }
303
304 fout.close();
305
306
307 double wt2 = get_wall_time();
308 cout << setw(30) << "Running time: " << (wt2 - wt1) << " s" << endl;
309 cout << setw(30) << "Time per single calculation: " << (wt2 - wt1) / iters << " s" << endl;
310
311 // Cleanup
312 delete model;
313
314 return 0;
315}
316
Contains some functions to deal with excluded volumes.
int main(int argc, char *argv[])
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.
virtual void CalculateFluctuations()
Computes the fluctuation observables.
virtual void CalculateTemperatureDerivatives()
Computes the temperature derivatives of densities, shifted chemical potentials, and primordial hadron...
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 .
Definition xMath.h:31
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
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....
@ ElectricCharge
Electric charge.