Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
ExcludedVolumeModels.cpp
Go to the documentation of this file.
2#include <cstdio>
3#include <stdexcept>
4#include <string>
5
6namespace thermalfist {
7
9 {
10 double eps = 1.e-10;
11 double left = 0., right = 1.;
12 if (EtaMax() >= 0.0)
13 right = EtaMax() * (1. - eps);
14 else {
15 while (right / f(right) < etatil) right *= 2.;
16 }
17 double center = (left + right) / 2.;
18 double valleft = left / f(left) - etatil;
19 double valcenter = 0.;
20 while ((right - left) / center > eps) {
21 valcenter = center / f(center) - etatil;
22 if (valleft * valcenter < 0.) {
23 right = center;
24 }
25 else {
26 left = center;
27 valleft = valcenter;
28 }
29 center = (left + right) / 2.;
30 }
31
32 //printf("\n");
33 //printf("%15lf %15lf %15E\n", etatil, center / etatil, center / etatil - f(center));
34
35 return etatil * f(center);
36 }
37
38 double ExcludedVolumeModelCS::df(int n, double eta) const {
39 switch (n) {
40 case 0:
41 return f(eta);
42 case 1:
43 return d1f(eta);
44 case 2:
45 return d2f(eta);
46 case 3:
47 return d3f(eta);
48 case 4:
49 return d4f(eta);
50 default:
51 throw std::invalid_argument("ExcludedVolumeModelCS::df(n,eta): n = " + std::to_string(n) + " not supported!");
52 }
53 }
54
55 double ExcludedVolumeModelTVM::df(int n, double eta) const {
56 switch (n) {
57 case 0:
58 return f(eta);
59 case 1:
60 return d1f(eta);
61 case 2:
62 return d2f(eta);
63 case 3:
64 return d3f(eta);
65 case 4:
66 return d4f(eta);
67 default:
68 throw std::invalid_argument("ExcludedVolumeModelTVM::df(n,eta): n = " + std::to_string(n) + " not supported!");
69 }
70 }
71
72
73} // namespace thermalfist
virtual double f(double eta) const
virtual double etasolBinarySearch(double etatil) const
virtual double f(double eta) const
virtual double df(int n, double eta) const
virtual double df(int n, double eta) const
virtual double f(double eta) const
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9