Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
MeanFieldModels.h
Go to the documentation of this file.
1/*
2 * Thermal-FIST package
3 *
4 * Copyright (c) 2022 Volodymyr Vovchenko
5 *
6 * GNU General Public License (GPLv3 or later)
7 */
8#ifndef MEANFIELDMODELS_H
9#define MEANFIELDMODELS_H
10
11#include <cmath>
12#include <vector>
13
14namespace thermalfist {
15
22
30 {
31 public:
36 {
37 }
38
42 virtual ~MeanFieldModelBase() { }
43
50 virtual double v(double n) const { return 0.; }
51
59 virtual double dv(int order, double n) const { return 0.; }
60
67 virtual double dvdT(double n) const { return 0.; }
68 };
69
77 {
78 public:
85 MeanFieldModelVDW(double a, double dadT = 0.) : m_a(a), m_dadT(dadT)
86 {
87 }
88
92 virtual ~MeanFieldModelVDW() { }
93
100 virtual double v(double n) const { return -m_a * n * n; }
101
109 virtual double dv(int order, double n) const {
110 if (order == 0)
111 return v(n);
112 if (order == 1)
113 return -2. * m_a * n;
114 if (order == 2)
115 return -2. * m_a;
116 return 0.;
117 }
118
125 virtual double dvdT(double n) const { return -m_dadT * n * n; }
126 private:
127 double m_a;
128 double m_dadT;
129 };
130
139 {
140 public:
149 MeanFieldModelClausius(double a, double c, double dadT = 0., double dcdT = 0.) :
150 m_a(a), m_c(c), m_dadT(dadT), m_dcdT(dcdT)
151 {
152 }
153
158
165 virtual double v(double n) const { return -m_a * n * n / (1. + m_c * n); }
166
174 virtual double dv(int order, double n) const {
175 if (order == 0)
176 return v(n);
177 if (order == 1)
178 return - m_a * n * (2. + m_c * n) / pow(1. + m_c * n, 2);
179
180 double ret = -2. * m_a / pow(1. + m_c * n, 3);
181
182 if (order == 2)
183 return ret;
184
185 for(int i = 3; i <= order; ++i) {
186 ret *= -i * m_c;
187 ret *= 1. / (1. + m_c * n);
188 }
189
190 return ret;
191 }
192
199 virtual double dvdT(double n) const {
200 return -m_dadT * n * n / (1. + m_c * n)
201 + m_a * n * n / (1. + m_c * n) / (1. + m_c * n) * m_dcdT * n;
202 }
203 private:
204 double m_a, m_c;
205 double m_dadT, m_dcdT;
206 };
207
215 {
216 public:
228 double alpha,
229 double beta,
230 double gam = 2.0,
231 double n0 = 0.16,
232 double dalphadT = 0.,
233 double dbetadT = 0.
234 ) : m_alpha(alpha), m_beta(beta), m_gam(gam), m_n0(n0), m_dalphadT(dalphadT), m_dbetadT(dbetadT)
235 {
236 }
237
242
249 virtual double v(double n) const {
250 return m_alpha * n * n / m_n0
251 + m_beta * n * pow(n/m_n0, m_gam);
252 }
253
261 virtual double dv(int order, double n) const {
262 if (order == 0)
263 return v(n);
264 if (order == 1)
265 return 2. * m_alpha * n / m_n0 + (1. + m_gam) * m_beta * pow(n/m_n0, m_gam);
266 if (order == 2)
267 return 2. * m_alpha / m_n0 + (1. + m_gam) * m_gam * m_beta * pow(n, m_gam - 1.) / pow(m_n0, m_gam);
268
269 if (order >= 3) {
270 double gam_mult = 1.0;
271 for(int i = 0; i < order; ++i) {
272 gam_mult *= (1. + m_gam - i);
273 }
274 return gam_mult * m_beta * pow(n, m_gam + 1 - order) / pow(m_n0, m_gam);
275 }
276
277 // if (order == 3)
278 // return 6. * m_beta / m_n0 / m_n0;
279 return 0.;
280 }
281
288 virtual double dvdT(double n) const {
289 return m_dalphadT * n * n / m_n0
290 + m_dbetadT * n * pow(n/m_n0, m_gam);
291 // return m_dalphadT * n * n / m_n0
292 // + m_dbetadT * n * n * n / m_n0 / m_n0;
293 }
294 private:
295 double m_alpha, m_beta, m_gam, m_n0;
296 double m_dalphadT, m_dbetadT;
297 };
298
307 {
308 public:
320 int N,
321 std::vector<double> Ck,
322 std::vector<double> bk,
323 double n0 = 0.,
324 std::vector<double> dCkdT = std::vector<double>(),
325 std::vector<double> dbkdT = std::vector<double>()
326 ) : m_N(N), m_Ck(Ck), m_bk(bk), m_dCkdT(dCkdT), m_dbkdT(dbkdT), m_n0(n0)
327 {
328 if (dCkdT.size() == 0)
329 dCkdT = std::vector<double>(Ck.size(), 0.);
330 if (dbkdT.size() == 0)
331 dbkdT = std::vector<double>(bk.size(), 0.);
332 }
333
337 virtual ~MeanFieldModelVDF() { }
338
345 virtual double v(double n) const;
346
354 virtual double dv(int order, double n) const;
355
362 virtual double dvdT(double n) const;
363 private:
364 int m_N;
365 std::vector<double> m_Ck, m_bk;
366 std::vector<double> m_dCkdT, m_dbkdT;
367 double m_n0;
368 };
369
370} // namespace thermalfist
371
372#endif
virtual ~MeanFieldModelBase()
Destructor for the MeanFieldModelBase class.
MeanFieldModelBase()
Constructor for the MeanFieldModelBase class.
virtual double v(double n) const
Calculates the mean field value at a given density.
virtual double dv(int order, double n) const
Calculates the density derivatives of the mean field.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
virtual double v(double n) const
Calculates the mean field value at a given density.
MeanFieldModelClausius(double a, double c, double dadT=0., double dcdT=0.)
Constructor for the MeanFieldModelClausius class.
virtual double dv(int order, double n) const
Calculates the density derivatives of the mean field.
virtual ~MeanFieldModelClausius()
Destructor for the MeanFieldModelClausius class.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
virtual double dv(int order, double n) const
Calculates the density derivatives of the mean field.
MeanFieldModelSkyrme(double alpha, double beta, double gam=2.0, double n0=0.16, double dalphadT=0., double dbetadT=0.)
Constructor for the MeanFieldModelSkyrme class.
virtual double v(double n) const
Calculates the mean field value at a given density.
virtual ~MeanFieldModelSkyrme()
Destructor for the MeanFieldModelSkyrme class.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
virtual ~MeanFieldModelVDF()
Destructor for the MeanFieldModelVDF class.
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.
MeanFieldModelVDF(int N, std::vector< double > Ck, std::vector< double > bk, double n0=0., std::vector< double > dCkdT=std::vector< double >(), std::vector< double > dbkdT=std::vector< double >())
Constructor for the MeanFieldModelVDF class.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
MeanFieldModelVDW(double a, double dadT=0.)
Constructor for the MeanFieldModelVDW class.
virtual double dv(int order, double n) const
Calculates the density derivatives of the mean field.
virtual ~MeanFieldModelVDW()
Destructor for the MeanFieldModelVDW class.
virtual double v(double n) const
Calculates the mean field value at a given density.
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9