Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
thermalfist::ExcludedVolumeModelDiagonalGeneralized Class Reference

Implementation of a diagonal generalized excluded volume model. More...

#include <ExcludedVolumeModelsMulti.h>

Inheritance diagram for thermalfist::ExcludedVolumeModelDiagonalGeneralized:
thermalfist::ExcludedVolumeModelMultiBase

Public Member Functions

 ExcludedVolumeModelDiagonalGeneralized (ExcludedVolumeModelBase *evmodelsingle, const std::vector< double > &b, const std::vector< double > &dbdT=std::vector< double >())
 Constructor for the ExcludedVolumeModelDiagonalGeneralized class.
 
virtual ~ExcludedVolumeModelDiagonalGeneralized ()
 Destructor for the ExcludedVolumeModelDiagonalGeneralized class.
 
virtual double f (int i) const
 Calculates the suppression factor for species i.
 
virtual double df (int i, int j) const
 Calculates the first derivative of the suppression factor.
 
virtual double d2f (int i, int j, int k) const
 Calculates the second derivative of the suppression factor.
 
virtual double d3f (int i, int j, int k, int l) const
 Calculates the third derivative of the suppression factor.
 
virtual double d4f (int i, int j, int k, int l, int m) const
 Calculates the fourth derivative of the suppression factor.
 
virtual double dfdT (int i) const
 Calculates the temperature derivative of the suppression factor.
 
virtual std::vector< double > nsol (const std::vector< double > &nid)
 Solves for the actual densities given the ideal gas densities.
 
virtual void SetDensities (const std::vector< double > &n)
 Sets the densities of particle species.
 
- Public Member Functions inherited from thermalfist::ExcludedVolumeModelMultiBase
 ExcludedVolumeModelMultiBase (int N)
 Constructor for the ExcludedVolumeModelMultiBase class.
 
virtual ~ExcludedVolumeModelMultiBase ()
 
virtual std::vector< double > nsolBroyden (const std::vector< double > &ntil)
 Solves for the actual densities using Broyden's method.
 
virtual std::vector< double > nsolBroydenComponents (const std::vector< double > &ntil)
 Solves for the actual densities using Broyden's method, considering components.
 
virtual const std::vector< int > & ComponentIndices () const
 Gets the component indices.
 
virtual const std::vector< int > & ComponentIndicesFrom () const
 Gets the component indices from.
 
virtual const int ComponentsNumber () const
 Gets the number of components.
 

Protected Member Functions

virtual void ComputeComponents ()
 Computes the components based on the excluded volume parameters.
 
double GetEta (const std::vector< double > &n) const
 Calculates the eta parameter for the given densities.
 

Protected Attributes

ExcludedVolumeModelBasem_evmodelsingle
 
std::vector< double > m_b
 
std::vector< double > m_dbdT
 
double m_eta
 
- Protected Attributes inherited from thermalfist::ExcludedVolumeModelMultiBase
int m_N
 
std::vector< double > m_densities
 
std::vector< int > m_components
 
std::vector< int > m_componentsFrom
 
int m_componentsNumber
 

Detailed Description

Implementation of a diagonal generalized excluded volume model.

This class implements a diagonal generalized excluded volume model.

Definition at line 323 of file ExcludedVolumeModelsMulti.h.

Constructor & Destructor Documentation

◆ ExcludedVolumeModelDiagonalGeneralized()

thermalfist::ExcludedVolumeModelDiagonalGeneralized::ExcludedVolumeModelDiagonalGeneralized ( ExcludedVolumeModelBase * evmodelsingle,
const std::vector< double > & b,
const std::vector< double > & dbdT = std::vector<double>() )
inline

Constructor for the ExcludedVolumeModelDiagonalGeneralized class.

Parameters
evmodelsinglePointer to the excluded volume model for a single component.
bVector of excluded volumes for each species.
dbdTVector of temperature derivatives of excluded volumes (optional).

Definition at line 333 of file ExcludedVolumeModelsMulti.h.

◆ ~ExcludedVolumeModelDiagonalGeneralized()

thermalfist::ExcludedVolumeModelDiagonalGeneralized::~ExcludedVolumeModelDiagonalGeneralized ( )
virtual

Destructor for the ExcludedVolumeModelDiagonalGeneralized class.

Definition at line 130 of file ExcludedVolumeModelsMulti.cpp.

Member Function Documentation

◆ ComputeComponents()

void thermalfist::ExcludedVolumeModelDiagonalGeneralized::ComputeComponents ( )
protectedvirtual

Computes the components based on the excluded volume parameters.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 189 of file ExcludedVolumeModelsMulti.cpp.

◆ d2f()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::d2f ( int i,
int j,
int k ) const
virtual

Calculates the second derivative of the suppression factor.

Parameters
iFirst species index.
jSecond species index.
kThird species index.
Returns
Second derivative of the suppression factor.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 148 of file ExcludedVolumeModelsMulti.cpp.

◆ d3f()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::d3f ( int i,
int j,
int k,
int l ) const
virtual

Calculates the third derivative of the suppression factor.

Parameters
iFirst species index.
jSecond species index.
kThird species index.
lFourth species index.
Returns
Third derivative of the suppression factor.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 153 of file ExcludedVolumeModelsMulti.cpp.

◆ d4f()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::d4f ( int i,
int j,
int k,
int l,
int m ) const
virtual

Calculates the fourth derivative of the suppression factor.

Parameters
iFirst species index.
jSecond species index.
kThird species index.
lFourth species index.
mFifth species index.
Returns
Fourth derivative of the suppression factor.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 158 of file ExcludedVolumeModelsMulti.cpp.

◆ df()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::df ( int i,
int j ) const
virtual

Calculates the first derivative of the suppression factor.

Parameters
iFirst species index.
jSecond species index.
Returns
First derivative of the suppression factor.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 143 of file ExcludedVolumeModelsMulti.cpp.

◆ dfdT()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::dfdT ( int i) const
virtual

Calculates the temperature derivative of the suppression factor.

Parameters
iSpecies index.
Returns
Temperature derivative of the suppression factor.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 163 of file ExcludedVolumeModelsMulti.cpp.

◆ f()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::f ( int i) const
virtual

Calculates the suppression factor for species i.

Parameters
iIndex of the particle species.
Returns
Suppression factor for species i.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 138 of file ExcludedVolumeModelsMulti.cpp.

◆ GetEta()

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::GetEta ( const std::vector< double > & n) const
protected

Calculates the eta parameter for the given densities.

Parameters
nVector of densities.
Returns
Eta parameter.

Definition at line 206 of file ExcludedVolumeModelsMulti.cpp.

◆ nsol()

std::vector< double > thermalfist::ExcludedVolumeModelDiagonalGeneralized::nsol ( const std::vector< double > & nid)
virtual

Solves for the actual densities given the ideal gas densities.

Parameters
nidVector of ideal gas densities.
Returns
Vector of actual densities.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 172 of file ExcludedVolumeModelsMulti.cpp.

◆ SetDensities()

void thermalfist::ExcludedVolumeModelDiagonalGeneralized::SetDensities ( const std::vector< double > & n)
virtual

Sets the densities of particle species.

Parameters
nVector of densities.

Reimplemented from thermalfist::ExcludedVolumeModelMultiBase.

Definition at line 183 of file ExcludedVolumeModelsMulti.cpp.

Member Data Documentation

◆ m_b

std::vector<double> thermalfist::ExcludedVolumeModelDiagonalGeneralized::m_b
protected

Definition at line 424 of file ExcludedVolumeModelsMulti.h.

◆ m_dbdT

std::vector<double> thermalfist::ExcludedVolumeModelDiagonalGeneralized::m_dbdT
protected

Definition at line 425 of file ExcludedVolumeModelsMulti.h.

◆ m_eta

double thermalfist::ExcludedVolumeModelDiagonalGeneralized::m_eta
protected

Definition at line 426 of file ExcludedVolumeModelsMulti.h.

◆ m_evmodelsingle

ExcludedVolumeModelBase* thermalfist::ExcludedVolumeModelDiagonalGeneralized::m_evmodelsingle
protected

Definition at line 423 of file ExcludedVolumeModelsMulti.h.


The documentation for this class was generated from the following files: