1#ifndef THERMALMODELREALGAS_H
2#define THERMALMODELREALGAS_H
262 std::vector< std::vector<double> >
m_chi;
337 virtual double MuShift(
int id)
const;
400 std::vector<double> Equations(
const std::vector<double>& x);
427 std::vector<double> Jacobian(
const std::vector<double>& x);
438 class BroydenSolutionCriteriumRealGas :
public Broyden::BroydenSolutionCriterium
457 virtual bool IsSolved(
const std::vector<double>& x,
const std::vector<double>& f,
const std::vector<double>& xdelta = std::vector<double>())
const;
468 class BroydenEquationsRealGasComponents :
public BroydenEquations
484 std::vector<double> Equations(
const std::vector<double>& x);
495 class BroydenJacobianRealGasComponents :
public BroydenJacobian
511 std::vector<double> Jacobian(
const std::vector<double>& x);
map< string, double > params
BroydenSolutionCriterium(double maximum_error=TOL)
Abstract class which defines the system of non-linear equations to be solved by the Broyden's method.
int m_N
The number of equations.
BroydenEquations()=default
Default constructor. Does nothing.
static const double TOL
Default desired solution accuracy.
Class which implements calculation of the Jacobian needed for the Broyden's method.
BroydenJacobian(BroydenEquations *eqs=NULL)
Construct a new BroydenJacobian object.
Base class for multi-component excluded volume models.
Base class for multi-component mean field models.
int ComponentsNumber() const
Number of different particle species in the list.
ThermalModelBase(ThermalParticleSystem *TPS, const ThermalModelParameters ¶ms=ThermalModelParameters())
Construct a new ThermalModelBase object.
Class implementing the quantum real gas HRG model.
void SetExcludedVolumeModel(ExcludedVolumeModelMultiBase *exvolmod)
Set the excluded volume model for the real gas HRG model.
void CalculateFluctuations()
Calculate the fluctuations.
void CalculateComponentsMap()
Partitions particles species into sets that have identical pair interactions.
std::vector< std::vector< int > > m_dMuStarIndices
Vector of component indices for each particle species.
ThermalModelRealGas(ThermalParticleSystem *TPS_, const ThermalModelParameters ¶ms=ThermalModelParameters())
Construct a new ThermalModelRealGas object.
virtual std::vector< double > SearchSingleSolutionUsingComponents(const std::vector< double > &muStarInit)
Uses the Broyden method with a provided initial guess to determine the shifted chemical potentials by...
virtual double CalculateMesonMatterEntropyDensity()
Calculate the meson matter entropy density of the system.
bool m_ComponentMapCalculated
Whether the mapping to components with the same VDW parameters has been calculated.
ExcludedVolumeModelMultiBase * ExcludedVolumeModel() const
Get the excluded volume model used in the real gas HRG model.
std::vector< int > m_MapTodMuStar
Mapping from particle species to dMuStar indices.
virtual double CalculateBaryonMatterEntropyDensity()
Calculate the baryon matter entropy density of the system.
void SetMeanFieldModel(MeanFieldModelMultiBase *mfmod)
Set the mean field model for the real gas HRG model.
MeanFieldModelMultiBase * MeanFieldModel() const
Get the mean field model used in the real gas HRG model.
std::vector< double > SearchMultipleSolutions(int iters=300)
Uses the Broyden method with different initial guesses to look for different possible solutions of th...
bool UseMultipleSolutionsMode() const
Whether to search for multiple solutions of the real gas model equations by considering different ini...
virtual std::vector< double > SearchSingleSolution(const std::vector< double > &muStarInit)
Uses the Broyden method with a provided initial guess to determine the shifted chemical potentials by...
void SetMuStar(const std::vector< double > &MuStar)
Set the vector of shifted chemical potentials for all particle species.
double DensityId(int index)
Get the ideal gas density of a particle species.
virtual std::vector< double > SearchSingleSolutionDirect(const std::vector< double > &muStarInit)
Uses the Broyden method with a provided initial guess to determine the shifted chemical potentials by...
virtual double CalculateEnergyDensity()
Calculate the energy density of the system.
std::vector< double > m_chiarb
Vector of computed susceptibilities for a specified arbitraty charge.
ExcludedVolumeModelMultiBase * m_exvolmod
Excluded volume model used in the real gas HRG model.
virtual std::vector< double > CalculateChargeFluctuationsOld(const std::vector< double > &chgs, int order=4)
Calculate the charge fluctuations of the particle species (old method).
std::vector< int > m_MapFromdMuStar
Mapping from dMuStar indices to particle species.
virtual void CalculateTemperatureDerivatives()
Calculate the temperature derivatives of the system.
double ChiArb(int charge)
void CalculateTwoParticleCorrelations()
Calculate the two-particle correlations of the particle species.
virtual void CalculatePrimordialDensities()
Calculate the primordial densities of the particle species.
virtual double MuShift(int id) const
The shift in the chemical potential of particle species i due to the QvdW interactions.
virtual double CalculateEntropyDensity()
Calculate the entropy density of the system.
virtual void SetChemicalPotentials(const std::vector< double > &chem=std::vector< double >(0))
Set the chemical potentials of the particle species.
const std::vector< std::vector< int > > & ComponentIndices() const
Get the component indices of the particle species.
std::vector< double > m_MuStar
Vector of the shifted chemical potentials.
bool m_LastBroydenSuccessFlag
Whether Broyden's method was successfull.
virtual double CalculateEnergyDensityDerivativeT()
Calculate the derivative of the energy density with respect to temperature.
std::vector< double > m_DensitiesId
Vector of ideal gas densities with shifted chemical potentials.
virtual void SetMultipleSolutionsMode(bool search)
Whether to search for multiple solutions of the real gas model equations by considering different ini...
virtual double CalculatePressure()
Calculate the pressure of the system.
virtual ~ThermalModelRealGas(void)
Destroy the ThermalModelRealGas object.
ExcludedVolumeModelMultiBase * m_exvolmodideal
Excluded volume model object in the ideal gas limit.
void FillChemicalPotentials()
Fill the chemical potentials of the particle species.
std::vector< double > m_scaldens
Vector of scalar densities. Not used.
bool IsLastSolutionOK() const
Check if the last solution was successful.
std::vector< double > GetMuStar() const
Get the vector of shifted chemical potentials for all particle species.
MeanFieldModelMultiBase * m_mfmod
Mean field model used in the real gas HRG model.
MeanFieldModelMultiBase * m_mfmodideal
Mean field model object in the ideal gas limit.
std::vector< std::vector< double > > m_chi
Vector of computed susceptibilities values.
virtual std::vector< double > CalculateChargeFluctuations(const std::vector< double > &chgs, int order=4)
Calculate the charge fluctuations of the particle species.
virtual double DeltaMu(int i) const
Get the delta mu (chemical potential shift due to interactions) of a particle species.
double MuStar(int i) const
Get the shifted chemical potential of a particle species.
virtual double ParticleScalarDensity(int part)
Calculate the scalar density of a particle species.
bool m_SearchMultipleSolutions
Whether multiple solutions are considered.
Class containing the particle list.
The main namespace where all classes and functions of the Thermal-FIST library reside.
Structure containing all thermal parameters of the model.