74int main(
int argc,
char *argv[])
77 string params_file =
"";
79 params_file = argv[1];
82 bool include_leptons = (
params[
"include_leptons"] != 0.);
84 std::string outputfile =
"NSMatter-CSHRG";
86 outputfile +=
"-leptons";
87 outputfile +=
"-output.dat";
92 vector<string> lists = {string(ThermalFIST_INPUT_FOLDER) +
"/list/PDG2020/list.dat"};
96 lists.push_back(
string(ThermalFIST_INPUT_FOLDER) +
"/list/electroweak/list-charged-leptons.dat");
121 bool useWidth =
false;
127 bool useQStats =
true;
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]" <<
" ";
141 fout << std::setw(tabsize) <<
"P[GeV/fm3]" <<
" ";
142 fout << std::setw(tabsize) <<
"e[GeV/fm3]" <<
" ";
143 fout << std::setw(tabsize) <<
"s[GeV/fm3]" <<
" ";
144 fout << std::setw(tabsize) <<
"(1/3-p/e)" <<
" ";
146 fout << std::setw(tabsize) <<
"vs2" <<
" ";
147 fout << std::setw(tabsize) <<
"vT2" <<
" ";
148 fout << std::setw(tabsize) <<
"Yp" <<
" ";
149 fout << std::setw(tabsize) <<
"Yn" <<
" ";
150 fout << std::setw(tabsize) <<
"YSig-" <<
" ";
151 fout << std::setw(tabsize) <<
"YLambda" <<
" ";
152 fout << std::setw(tabsize) <<
"Ye" <<
" ";
153 fout << std::setw(tabsize) <<
"Ymu" <<
" ";
154 fout << std::setw(tabsize) << std::endl;
156 const double n0 = 0.16;
172 double pprev = 0., eprev = 0.;
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) {
186 double rhoQ = model->ElectricChargeDensity() / n0;
188 for(
int i = 0; i < max_repeats && abs(rhoQ) > 1.e-10; i++) {
190 rhoQ = model->ElectricChargeDensity() / n0;
204 double p = model->Pressure();
205 double e = model->EnergyDensity();
206 double s = model->EntropyDensity();
207 double rhoB = model->BaryonDensity();
208 double rhoQ = model->ElectricChargeDensity();
209 double rhoS = model->StrangenessDensity();
210 double trace_anomaly = (1./3. - p/e);
218 if (include_leptons) {
237 double vs2fct = model->cs2(
true,
true,
false);
238 double vT2fct = model->cT2(
true,
true,
false);
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 <<
" ";
252 fout << setw(tabsize) << vs2fct <<
" ";
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;
270 cout << setw(30) <<
"Running time: " << (wt2 - wt1) <<
" s" << endl;
271 cout << setw(30) <<
"Time per single calculation: " << (wt2 - wt1) / iters <<
" s" << endl;
@ eBWconstBR
Energy-dependent Breit-Wigner scheme (eBW) with constant branching ratios when evaluating feeddown.
Class containing the particle list.