Represents all relevant thermodynamic quantities of a multi-phase, multi-component fluid system assuming thermodynamic equilibrium.
|
| CompositionalFluidState ()=default |
| default constructor More...
|
|
template<class FluidState , typename std::enable_if_t<!std::is_same< FluidState, CompositionalFluidState >::value, int > = 0> |
| CompositionalFluidState (const FluidState &fs) |
| copy constructor from arbitrary fluid state More...
|
|
| CompositionalFluidState (const CompositionalFluidState &fs)=default |
|
| CompositionalFluidState (CompositionalFluidState &&fs)=default |
|
CompositionalFluidState & | operator= (const CompositionalFluidState &fs)=default |
|
CompositionalFluidState & | operator= (CompositionalFluidState &&fs)=default |
|
int | wettingPhase () const |
| Returns the index of the most wetting phase in the fluid-solid configuration (for porous medium systems). More...
|
|
Scalar | saturation (int phaseIdx) const |
| Returns the saturation \(S_\alpha\) of a fluid phase \(\alpha\) in \(\mathrm{[-]}\). More...
|
|
Scalar | moleFraction (int phaseIdx, int compIdx) const |
| Returns the molar fraction \(x^\kappa_\alpha\) of the component \(\kappa\) in fluid phase \(\alpha\) in \(\mathrm{[-]}\). More...
|
|
Scalar | massFraction (int phaseIdx, int compIdx) const |
| Returns the mass fraction \(X^\kappa_\alpha\) of component \(\kappa\) in fluid phase \(\alpha\) in \(\mathrm{[-]}\). More...
|
|
Scalar | phaseMassFraction (int phaseIdx) const |
| Returns the phase mass fraction, i.e. phase mass per total mass \(\mathrm{[kg/kg]}\). More...
|
|
Scalar | averageMolarMass (int phaseIdx) const |
| The average molar mass \(\overline M_\alpha\) of phase \(\alpha\) in \(\mathrm{[kg/mol]}\). More...
|
|
Scalar | molarity (int phaseIdx, int compIdx) const |
| The molar concentration \(c^\kappa_\alpha\) of component \(\kappa\) in fluid phase \(\alpha\) in \(\mathrm{[mol/m^3]}\). More...
|
|
Scalar | fugacity (int phaseIdx, int compIdx) const |
| The fugacity \(f^\kappa_\alpha\) of component \(\kappa\) in fluid phase \(\alpha\) in \(\mathrm{[Pa]}\). More...
|
|
Scalar | fugacityCoefficient (int phaseIdx, int compIdx) const |
| The fugacity coefficient \(\Phi^\kappa_\alpha\) of component \(\kappa\) in fluid phase \(\alpha\) in \(\mathrm{[-]}\). More...
|
|
Scalar | molarVolume (int phaseIdx) const |
| The molar volume \(v_{mol,\alpha}\) of a fluid phase \(\alpha\) in \(\mathrm{[m^3/mol]}\). More...
|
|
Scalar | density (int phaseIdx) const |
| The mass density \(\rho_\alpha\) of the fluid phase \(\alpha\) in \(\mathrm{[kg/m^3]}\). More...
|
|
Scalar | molarDensity (int phaseIdx) const |
| The molar density \(\rho_\alpha\) of the fluid phase \(\alpha\) in \(\mathrm{[mol/m^3]}\). More...
|
|
Scalar | temperature (int phaseIdx) const |
| The absolute temperature \(T_\alpha\) of a fluid phase \(\alpha\) in \(\mathrm{[K]}\). More...
|
|
Scalar | pressure (int phaseIdx) const |
| The pressure \(p_\alpha\) of a fluid phase \(\alpha\) in \(\mathrm{[Pa]}\). More...
|
|
Scalar | partialPressure (int phaseIdx, int compIdx) const |
| The partial pressure of a component in a phase \(\mathrm{[Pa]}\). More...
|
|
Scalar | enthalpy (int phaseIdx) const |
| The specific enthalpy \(h_\alpha\) of a fluid phase \(\alpha\) in \(\mathrm{[J/kg]}\). More...
|
|
Scalar | internalEnergy (int phaseIdx) const |
| The specific internal energy \(u_\alpha\) of a fluid phase \(\alpha\) in \(\mathrm{[J/kg]}\). More...
|
|
Scalar | viscosity (int phaseIdx) const |
| The dynamic viscosity \(\mu_\alpha\) of fluid phase \(\alpha\) in \(\mathrm{[Pa s]}\). More...
|
|
Scalar | temperature () const |
| The temperature within the domain \(\mathrm{[K]}\). More...
|
|
Scalar | fugacity (int compIdx) const |
| The fugacity of a component \(\mathrm{[Pa]}\). More...
|
|
template<class FluidState > |
void | assign (const FluidState &fs) |
| Retrieve all parameters from an arbitrary fluid state. More...
|
|
void | setTemperature (Scalar value) |
| Set the temperature \(\mathrm{[K]}\) of all phases. More...
|
|
void | setTemperature (const int phaseIdx, const Scalar value) |
| Set the temperature \(\mathrm{[K]}\) of a specific phase. This is not implemented in this fluidstate. More...
|
|
void | setPressure (int phaseIdx, Scalar value) |
| Set the fluid pressure of a phase \(\mathrm{[Pa]}\). More...
|
|
void | setSaturation (int phaseIdx, Scalar value) |
| Set the saturation of a phase \(\mathrm{[-]}\). More...
|
|
void | setMoleFraction (int phaseIdx, int compIdx, Scalar value) |
| Set the mole fraction of a component in a phase \(\mathrm{[-]}\) and update the average molar mass \(\mathrm{[kg/mol]}\) according to the current composition of the phase. More...
|
|
void | setMassFraction (int phaseIdx, int compIdx, Scalar value) |
| Set the mass fraction of a component in a phase \(\mathrm{[-]}\) and update the average molar mass \(\mathrm{[kg/mol]}\) according to the current composition of the phase. More...
|
|
template<class FluidState > |
void | setRelativeHumidity (FluidState &fluidState, int phaseIdx, int compIdx, Scalar value) |
| Set the relative humidity of a component in a phase \(\mathrm{[-]}\) and update the average molar mass \(\mathrm{[kg/mol]}\) according to the current composition of the phase. More...
|
|
void | setFugacityCoefficient (int phaseIdx, int compIdx, Scalar value) |
| Set the fugacity coefficient \(\Phi^\kappa_\alpha\) of component \(\kappa\) in fluid phase \(\alpha\) in \(\mathrm{[-]}\). More...
|
|
void | setDensity (int phaseIdx, Scalar value) |
| Set the density of a phase \(\mathrm{[kg / m^3]}\). More...
|
|
void | setMolarDensity (int phaseIdx, Scalar value) |
| Set the molar density of a phase \(\mathrm{[mol / m^3]}\). More...
|
|
void | setEnthalpy (int phaseIdx, Scalar value) |
| Set the specific enthalpy of a phase \(\mathrm{[J/kg]}\). More...
|
|
void | setViscosity (int phaseIdx, Scalar value) |
| Set the dynamic viscosity of a phase \(\mathrm{[Pa s]}\). More...
|
|
void | setWettingPhase (int phaseIdx) |
| Set the index of the most wetting phase. More...
|
|