Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
MeanFieldModelsMulti.cpp
Go to the documentation of this file.
2#include <cmath>
3#include <map>
4#include <cstdio>
5
6namespace thermalfist {
7
8 double MeanFieldModelMultiVDW::v() const {
9 double ret = 0.;
10 //for (int i = 0; i < m_N; ++i) {
11 // for (int j = 0; j < m_N; ++j) {
12 // ret += -m_a[i][j] * m_densities[i] * m_densities[j];
13 // }
14 //}
15 for (int i = 0; i < m_componentsNumber; ++i) {
16 for (int j = 0; j < m_componentsNumber; ++j) {
17 int ti = m_componentsFrom[i];
18 int tj = m_componentsFrom[j];
19 ret += -m_a[ti][tj] * m_densities_components[i] * m_densities_components[j];
20 }
21 }
22 return ret;
23 }
24
25 double MeanFieldModelMultiVDW::dv(int i) const
26 {
27 double ret = 0.;
28 //for (int j = 0; j < m_N; ++j) {
29 // ret += -(m_a[i][j] + m_a[j][i]) * m_densities[j];
30 //}
31 for (int j = 0; j < m_componentsNumber; ++j) {
32 int tj = m_componentsFrom[j];
33 ret += -(m_a[i][tj] + m_a[tj][i]) * m_densities_components[j];
34 }
35 return ret;
36 }
37
38 double MeanFieldModelMultiVDW::d2v(int i, int j) const
39 {
40 return -(m_a[i][j] + m_a[j][i]);
41 }
42
44 {
45 double ret = 0.;
46 //for (int i = 0; i < m_N; ++i) {
47 // for (int j = 0; j < m_N; ++j) {
48 // ret += -m_dadT[i][j] * m_densities[i] * m_densities[j];
49 // }
50 //}
51 for (int i = 0; i < m_componentsNumber; ++i) {
52 for (int j = 0; j < m_componentsNumber; ++j) {
53 int ti = m_componentsFrom[i];
54 int tj = m_componentsFrom[j];
56 }
57 }
58 return ret;
59 }
60
62 {
63 m_components = std::vector<int>(m_N, 0);
64 m_componentsFrom = std::vector<int>();
65 std::map<std::vector<double>, int> MapVDW;
67 for (int i = 0; i < m_N; ++i) {
68 std::vector<double> param(0);
69 for (int j = 0; j < m_N; ++j)
70 param.push_back(m_a[i][j] + m_a[j][i]);
71 for (int j = 0; j < m_N; ++j)
72 param.push_back(m_dadT[i][j] + m_dadT[j][i]);
73
74 if (MapVDW.count(param) == 0) {
75 MapVDW[param] = m_componentsNumber;
76 m_componentsFrom.push_back(i);
78 }
79 m_components[i] = MapVDW[param];
80 }
81 printf("VDW Components: %d\n", m_componentsNumber);
82 }
83
85 {
86 for (int i = 0; i < m_componentsNumber; ++i) {
87 if (m_mfmodels[i] != NULL) {
88 delete m_mfmodels[i];
89 m_mfmodels[i] = NULL;
90 }
91 }
92 }
93
95 {
96 double ret = 0.;
97 for (int i = 0; i < m_componentsNumber; ++i) {
98 ret += m_mfmodels[i]->v(m_densities_components[i]);
99 }
100 return ret;
101 }
102
104 {
105 int tind = m_components[i];
106 return m_mfmodels[tind]->dv(1, m_densities_components[tind]);
107 }
108
109 double MeanFieldModelComponents::d2v(int i, int j) const
110 {
111 bool fl = 1;
112 fl &= (m_components[i] == m_components[j]);
113 if (!fl) return 0.;
114
115 int tind = m_components[i];
116 return m_mfmodels[tind]->dv(2, m_densities_components[tind]);
117 }
118
119 double MeanFieldModelComponents::d3v(int i, int j, int k) const
120 {
121 bool fl = 1;
122 fl &= (m_components[i] == m_components[j]);
123 fl &= (m_components[i] == m_components[k]);
124 if (!fl) return 0.;
125
126 int tind = m_components[i];
127 return m_mfmodels[tind]->dv(3, m_densities_components[tind]);
128 }
129
130 double MeanFieldModelComponents::d4v(int i, int j, int k, int l) const
131 {
132 bool fl = 1;
133 fl &= (m_components[i] == m_components[j]);
134 fl &= (m_components[i] == m_components[k]);
135 fl &= (m_components[i] == m_components[l]);
136 if (!fl) return 0.;
137
138 int tind = m_components[i];
139 return m_mfmodels[tind]->dv(4, m_densities_components[tind]);
140 }
141
143 {
144 double ret = 0.;
145 for (int i = 0; i < m_componentsNumber; ++i) {
146 ret += m_mfmodels[i]->dvdT(m_densities_components[i]);
147 }
148 return ret;
149 }
150
151 //void MeanFieldModelComponents::SetDensities(const std::vector<double>& n)
152 //{
153 // MeanFieldModelMultiBase::SetDensities(n);
154
155 // m_densities_components = std::vector<double>(m_componentsNumber, 0.);
156 // for (int i = 0; i < n.size(); ++i)
157 // m_densities_components[m_components[i]] += n[i];
158 //}
159
161 {
163 for (int i = m_N - 1; i >= 0; --i) {
165 }
166 }
167
175
177 {
178 return m_mfmodel->v(m_nB);
179 }
180
182 {
183 return m_mfmodel->dv(1, m_nB) * m_charges[i];
184 }
185
187 {
188 return m_mfmodel->dv(2, m_nB) * m_charges[i];
189 }
190
191 double MeanFieldModelChargeDensityDependent::d3v(int i, int j, int k) const
192 {
193 return m_mfmodel->dv(3, m_nB) * m_charges[i];
194 }
195
196 double MeanFieldModelChargeDensityDependent::d4v(int i, int j, int k, int l) const
197 {
198 return m_mfmodel->dv(4, m_nB) * m_charges[i];
199 }
200
202 {
203 return m_mfmodel->dvdT(m_nB);
204 }
205
206 void MeanFieldModelChargeDensityDependent::SetDensities(const std::vector<double>& n)
207 {
209 m_nB = 0.0;
210 for (int i = 0; i < m_N; ++i)
211 m_nB += m_charges[i] * m_densities[i];
212 }
213
215 {
216 m_components = std::vector<int>(m_N, 0);
217 m_componentsFrom = std::vector<int>();
218 std::map<double, int> MapMF;
220 for (int i = 0; i < m_N; ++i) {
221 double param = m_charges[i];
222
223 if (MapMF.count(param) == 0) {
224 MapMF[param] = m_componentsNumber;
225 m_componentsFrom.push_back(i);
227 }
228 m_components[i] = MapMF[param];
229 }
230 printf("Mean-field Components: %d\n", m_componentsNumber);
231 }
232
233 void MeanFieldModelMultiBase::SetDensities(const std::vector<double>& n)
234 {
235 m_densities = n;
236
237 m_densities_components = std::vector<double>(m_componentsNumber, 0.);
238 for (int i = 0; i < n.size(); ++i)
240 }
241
243 {
244 m_components = std::vector<int>(m_N, 0);
246 m_componentsFrom = std::vector<int>(1, 0);
247 }
248
249} // namespace thermalfist
virtual void ComputeComponents()
Computes the components based on the mean field parameters.
virtual double d4v(int i, int j, int k, int l) const
Calculates the fourth derivative of the mean field.
virtual double d3v(int i, int j, int k) const
Calculates the third derivative of the mean field.
virtual double d2v(int i, int j) const
Calculates the second derivative of the mean field.
virtual double dvdT() const
Calculates the temperature derivative of the mean field.
virtual void SetDensities(const std::vector< double > &n)
Sets the densities of particle species.
virtual double dv(int i) const
Calculates the first derivative of the mean field.
virtual ~MeanFieldModelChargeDensityDependent()
Destructor for the MeanFieldModelChargeDensityDependent class.
virtual double v() const
Calculates the mean field value.
virtual void ComputeComponents()
Computes the components based on the mean field parameters.
virtual double d3v(int i, int j, int k) const
Calculates the third derivative of the mean field.
virtual double v() const
Calculates the mean field value.
virtual double dv(int i) const
Calculates the first derivative of the mean field.
virtual double d2v(int i, int j) const
Calculates the second derivative of the mean field.
virtual double d4v(int i, int j, int k, int l) const
Calculates the fourth derivative of the mean field.
virtual ~MeanFieldModelComponents()
Destructor for the MeanFieldModelComponents class.
std::vector< MeanFieldModelBase * > m_mfmodels
virtual double dvdT() const
Calculates the temperature derivative of the mean field.
virtual void SetDensities(const std::vector< double > &n)
Sets the densities of particle species.
virtual void ComputeComponents()
Computes the components based on the mean field parameters.
virtual double v() const
Calculates the mean field value.
virtual void ComputeComponents()
Computes the components based on the mean field parameters.
virtual double dvdT() const
Calculates the temperature derivative of the mean field.
std::vector< std::vector< double > > m_a
std::vector< std::vector< double > > m_dadT
virtual double d2v(int i, int j) const
Calculates the second derivative of the mean field.
virtual double dv(int i) const
Calculates the first derivative of the mean field.
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9