25#ifndef DUMUX_ISOIMMISCIBLE_FLUID_STATE_HH
26#define DUMUX_ISOIMMISCIBLE_FLUID_STATE_HH
30#include <dune/common/exceptions.hh>
40template <
class ScalarType,
class Flu
idSystem>
44 static constexpr int numPhases = FluidSystem::numPhases;
54 template <class FluidState, typename std::enable_if_t<!std::is_same<FluidState, IsothermalImmiscibleFluidState>::value,
int> = 0>
95 {
return (phaseIdx == compIdx) ? 1.0 : 0.0; }
106 {
return (phaseIdx == compIdx) ? 1.0 : 0.0; }
120 {
return FluidSystem::molarMass(phaseIdx); }
145 {
return phaseIdx == compIdx ?
pressure(phaseIdx) : 0.0; }
156 {
return phaseIdx == compIdx ? 1.0 : std::numeric_limits<Scalar>::infinity(); }
207 { DUNE_THROW(Dune::NotImplemented,
"No enthalpy() function defined for isothermal systems!"); }
217 { DUNE_THROW(Dune::NotImplemented,
"No internalEnergy() function defined for isothermal systems!"); }
236 template <
class Flu
idState>
239 for (
int phaseIdx = 0; phaseIdx <
numPhases; ++phaseIdx)
241 pressure_[phaseIdx] = fs.pressure(phaseIdx);
243 density_[phaseIdx] = fs.density(phaseIdx);
245 viscosity_[phaseIdx] = fs.viscosity(phaseIdx);
Adaption of the non-isothermal two-phase two-component flow model to problems with CO2.
Definition: adapt.hh:29
Represents all relevant thermodynamic quantities of a multi-phase fluid system assuming immiscibility...
Definition: isothermalimmiscible.hh:42
IsothermalImmiscibleFluidState & operator=(const IsothermalImmiscibleFluidState &fs)=default
Scalar massFraction(int phaseIdx, int compIdx) const
Returns the mass fraction of component in fluid phase in .
Definition: isothermalimmiscible.hh:105
static constexpr int numComponents
Definition: isothermalimmiscible.hh:45
Scalar averageMolarMass(int phaseIdx) const
The average molar mass of phase in .
Definition: isothermalimmiscible.hh:119
Scalar temperature() const
The temperature within the domain .
Definition: isothermalimmiscible.hh:193
Scalar viscosity(int phaseIdx) const
The dynamic viscosity of fluid phase in .
Definition: isothermalimmiscible.hh:222
void setWettingPhase(int phaseIdx)
Set the index of the most wetting phase.
Definition: isothermalimmiscible.hh:289
Scalar molarVolume(int phaseIdx) const
The molar volume of a fluid phase in .
Definition: isothermalimmiscible.hh:163
Scalar density_[numPhases]
Definition: isothermalimmiscible.hh:294
void setDensity(int phaseIdx, Scalar value)
Set the density of a phase .
Definition: isothermalimmiscible.hh:271
Scalar viscosity_[numPhases]
Definition: isothermalimmiscible.hh:296
Scalar internalEnergy(int phaseIdx) const
The specific internal energy of a fluid phase in .
Definition: isothermalimmiscible.hh:216
int wettingPhase() const
Returns the index of the most wetting phase in the fluid-solid configuration (for porous medium syste...
Definition: isothermalimmiscible.hh:72
Scalar fugacityCoefficient(int phaseIdx, int compIdx) const
The fugacity coefficient of component in fluid phase in .
Definition: isothermalimmiscible.hh:155
void setMolarDensity(int phaseIdx, Scalar value)
Set the molar density of a phase .
Definition: isothermalimmiscible.hh:277
void setSaturation(int phaseIdx, Scalar value)
Set the saturation of a phase .
Definition: isothermalimmiscible.hh:265
Scalar molarity(int phaseIdx, int compIdx) const
The molar concentration of component in fluid phase in .
Definition: isothermalimmiscible.hh:131
Scalar pressure_[numPhases]
Definition: isothermalimmiscible.hh:292
IsothermalImmiscibleFluidState()=default
default constructor
Scalar saturation_[numPhases]
Definition: isothermalimmiscible.hh:293
Scalar density(int phaseIdx) const
The mass density of the fluid phase in .
Definition: isothermalimmiscible.hh:170
Scalar temperature(int phaseIdx) const
The temperature of a fluid phase .
Definition: isothermalimmiscible.hh:187
Scalar pressure(int phaseIdx) const
The pressure of a fluid phase in .
Definition: isothermalimmiscible.hh:199
IsothermalImmiscibleFluidState & operator=(IsothermalImmiscibleFluidState &&fs)=default
void setViscosity(int phaseIdx, Scalar value)
Set the dynamic viscosity of a phase .
Definition: isothermalimmiscible.hh:283
Scalar temperature_
Definition: isothermalimmiscible.hh:297
void setPressure(int phaseIdx, Scalar value)
Set the fluid pressure of a phase .
Definition: isothermalimmiscible.hh:259
IsothermalImmiscibleFluidState(const FluidState &fs)
copy constructor from arbitrary fluid state
Definition: isothermalimmiscible.hh:55
IsothermalImmiscibleFluidState(IsothermalImmiscibleFluidState &&fs)=default
int wPhaseIdx_
Definition: isothermalimmiscible.hh:299
void assign(const FluidState &fs)
Retrieve all parameters from an arbitrary fluid state.
Definition: isothermalimmiscible.hh:237
Scalar moleFraction(int phaseIdx, int compIdx) const
Returns the molar fraction of the component in fluid phase in .
Definition: isothermalimmiscible.hh:94
Scalar fugacity(int phaseIdx, int compIdx) const
The fugacity of component in fluid phase in .
Definition: isothermalimmiscible.hh:144
Scalar molarDensity(int phaseIdx) const
The molar density of a fluid phase in .
Definition: isothermalimmiscible.hh:181
void setTemperature(Scalar value)
Set the temperature of a fluid phase.
Definition: isothermalimmiscible.hh:253
Scalar enthalpy(int phaseIdx) const
The specific enthalpy of a fluid phase in This is not defined for an isothermal fluidstate.
Definition: isothermalimmiscible.hh:206
Scalar saturation(int phaseIdx) const
Returns the saturation of a fluid phase in .
Definition: isothermalimmiscible.hh:82
Scalar molarDensity_[numPhases]
Definition: isothermalimmiscible.hh:295
static constexpr int numPhases
Definition: isothermalimmiscible.hh:44
ScalarType Scalar
export the scalar type
Definition: isothermalimmiscible.hh:48
IsothermalImmiscibleFluidState(const IsothermalImmiscibleFluidState &fs)=default