Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
MeanFieldModelsMulti.h
Go to the documentation of this file.
1/*
2 * Thermal-FIST package
3 *
4 * Copyright (c) 2017-2022 Volodymyr Vovchenko
5 *
6 * GNU General Public License (GPLv3 or later)
7 */
8#ifndef MEANFIELDMODELSMULTI_H
9#define MEANFIELDMODELSMULTI_H
10#include <cmath>
11#include <vector>
12
13#include "MeanFieldModels.h"
14
15namespace thermalfist {
16
26 public:
33
38
44 virtual double v() const { return 0.; }
45
52 virtual double dv(int i) const { return 0.; }
53
61 virtual double d2v(int i, int j) const { return 0.; }
62
71 virtual double d3v(int i, int j, int k) const { return 0.; }
72
82 virtual double d4v(int i, int j, int k, int l) const { return 0.; }
83
89 virtual double dvdT() const { return 0.; }
90
96 virtual void SetDensities(const std::vector<double>& n);
97
103 virtual const std::vector<int>& ComponentIndices() const { return m_components; }
104
110 virtual const std::vector<int>& ComponentIndicesFrom() const { return m_componentsFrom; }
111
117 virtual const int ComponentsNumber() const { return m_componentsNumber; }
118 protected:
122 virtual void ComputeComponents();
123 int m_N;
124 std::vector<double> m_densities;
125 std::vector<int> m_components;
126 std::vector<int> m_componentsFrom;
128 std::vector<double> m_densities_components;
129 };
130
140 public:
148 const std::vector< std::vector<double> >& a,
149 const std::vector< std::vector<double> >& dadT = std::vector< std::vector<double> >()
150 )
151 : MeanFieldModelMultiBase(a.size()),
152 m_a(a),
153 m_dadT(dadT)
154 {
155 if (m_dadT.size() == 0)
156 m_dadT = std::vector< std::vector<double> >(m_a.size(), std::vector<double>(m_a.size(), 0.));
158 }
159
164
170 void setAij(const std::vector< std::vector<double> >& a) { m_a = a; }
171
177 void setdAijdT(const std::vector< std::vector<double> >& dadT) { m_dadT = dadT; }
178
184 virtual double v() const;
185
192 virtual double dv(int i) const;
193
201 virtual double d2v(int i, int j) const;
202
211 virtual double d3v(int i, int j, int k) const { return 0.; }
212
222 virtual double d4v(int i, int j, int k, int l) const { return 0.; }
223
229 virtual double dvdT() const;
230 protected:
234 virtual void ComputeComponents();
235 std::vector< std::vector<double> > m_a;
236 std::vector< std::vector<double> > m_dadT;
237 };
238
247 public:
256 int components,
257 const std::vector<MeanFieldModelBase*>& mfmods,
258 const std::vector<int>& ind
259 )
260 : MeanFieldModelMultiBase(ind.size()),
261 m_mfmodels(mfmods)
262 {
263 m_components = ind;
264 m_componentsNumber = components;
266 }
267
272
278 virtual double v() const;
279
286 virtual double dv(int i) const;
287
295 virtual double d2v(int i, int j) const;
296
305 virtual double d3v(int i, int j, int k) const;
306
316 virtual double d4v(int i, int j, int k, int l) const;
317
323 virtual double dvdT() const;
324 //virtual void SetDensities(const std::vector<double>& n);
325 protected:
329 virtual void ComputeComponents();
330 //int m_N_components;
331 std::vector<MeanFieldModelBase*> m_mfmodels;
332 //std::vector<int> m_indices;
333 };
334
344 public:
352 MeanFieldModelBase* mfmod,
353 const std::vector<double>& chgs
354 )
355 : MeanFieldModelMultiBase(chgs.size()),
356 m_mfmodel(mfmod),
357 m_charges(chgs),
358 m_nB(0.)
359 {
361 }
362
367
373 virtual double v() const;
374
381 virtual double dv(int i) const;
382
390 virtual double d2v(int i, int j) const;
391
400 virtual double d3v(int i, int j, int k) const;
401
411 virtual double d4v(int i, int j, int k, int l) const;
412
418 virtual double dvdT() const;
419
425 virtual void SetDensities(const std::vector<double>& n);
426 protected:
430 virtual void ComputeComponents();
432 std::vector<double> m_charges;
433 double m_nB;
434 };
435
436} // namespace thermalfist
437
438#endif // REALGASMODELS_H
Header with helper mean-field classes.
Base class implementing the ideal gas (no mean field).
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.
MeanFieldModelChargeDensityDependent(MeanFieldModelBase *mfmod, const std::vector< double > &chgs)
Constructor 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.
MeanFieldModelComponents(int components, const std::vector< MeanFieldModelBase * > &mfmods, const std::vector< int > &ind)
Constructor for the MeanFieldModelComponents class.
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 double d3v(int i, int j, int k) const
Calculates the third derivative of the mean field.
virtual const int ComponentsNumber() const
Gets the number of components.
virtual double dvdT() const
Calculates the temperature derivative of the mean field.
virtual ~MeanFieldModelMultiBase()
Destructor for the MeanFieldModelMultiBase class.
virtual const std::vector< int > & ComponentIndices() const
Gets the component indices.
virtual const std::vector< int > & ComponentIndicesFrom() const
Gets the component indices from.
virtual double d2v(int i, int j) const
Calculates the second 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 double dv(int i) const
Calculates the first 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.
MeanFieldModelMultiBase(int N)
Constructor for the MeanFieldModelMultiBase class.
virtual double d3v(int i, int j, int k) const
Calculates the third 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 double v() const
Calculates the mean field value.
virtual void ComputeComponents()
Computes the components based on the mean field parameters.
void setdAijdT(const std::vector< std::vector< double > > &dadT)
Sets the temperature derivatives of the attraction parameters.
virtual double dvdT() const
Calculates the temperature derivative of the mean field.
std::vector< std::vector< double > > m_a
virtual ~MeanFieldModelMultiVDW()
Destructor for the MeanFieldModelMultiVDW class.
MeanFieldModelMultiVDW(const std::vector< std::vector< double > > &a, const std::vector< std::vector< double > > &dadT=std::vector< std::vector< double > >())
Constructor for the MeanFieldModelMultiVDW class.
std::vector< std::vector< double > > m_dadT
virtual double d2v(int i, int j) const
Calculates the second derivative of the mean field.
void setAij(const std::vector< std::vector< double > > &a)
Sets the attraction parameters between species.
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