Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
MeanFieldModels.cpp
Go to the documentation of this file.
2
3
4namespace thermalfist {
5 double MeanFieldModelVDF::v(double n) const
6 {
7 double ret = 0.;
8 for (int k = 1; k < m_N; ++k) {
9 ret += m_Ck[k] / m_bk[k] * pow(n / m_n0, m_bk[k] - 1);
10 }
11 ret *= n;
12 return ret;
13 }
14
15 double MeanFieldModelVDF::dv(int order, double n) const
16 {
17 if (order == 0)
18 return v(n);
19
20 double ret = 0.;
21 for (int k = 1; k < m_N; ++k) {
22 double tret = 1.;
23 for (int i = 1; i < order; ++i)
24 tret *= (m_bk[k] - i + 1);
25 ret += m_Ck[k] / m_bk[k] * tret * pow(n / m_n0, m_bk[k] - 1 - order) / pow(m_n0, order);
26 }
27 ret *= n;
28 return ret;
29 }
30
31 double MeanFieldModelVDF::dvdT(double n) const
32 {
33 double ret = 0.;
34 for (int k = 1; k < m_N; ++k) {
35 ret += m_dCkdT[k] / m_bk[k] * pow(n / m_n0, m_bk[k] - 1);
36 ret += -m_Ck[k] / m_bk[k] / m_bk[k] * m_dbkdT[k] * pow(n / m_n0, m_bk[k] - 1);
37 ret += m_Ck[k] / m_bk[k] * pow(n / m_n0, m_bk[k] - 1) * log(n / m_n0) * m_dbkdT[k];
38 }
39 ret *= n;
40 return ret;
41 }
42} // namespace thermalfist
Header with helper mean-field classes.
virtual double dv(int order, double n) const
Calculates the density derivatives of the mean field.
virtual double v(double n) const
Calculates the mean field value at a given density.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9