12#ifndef DUMUX_BRINE_AIR_FLUID_SYSTEM_HH
13#define DUMUX_BRINE_AIR_FLUID_SYSTEM_HH
36namespace FluidSystems {
42template<
bool fastButSimplifiedRelations = false>
58template <
class Scalar,
60 class Policy = BrineAirDefaultPolicy<>>
62:
public Base<Scalar, BrineAir<Scalar, H2Otype, Policy>>
105 struct BrineAdapterPolicy
107 using FluidSystem =
Brine;
109 static constexpr int phaseIdx(
int brinePhaseIdx) {
return liquidPhaseIdx; }
110 static constexpr int compIdx(
int brineCompIdx)
112 switch (brineCompIdx)
121 template<
class Flu
idState>
136 assert(0 <= phaseIdx && phaseIdx <
numPhases);
142 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
155 static constexpr bool isGas(
int phaseIdx)
157 assert(0 <= phaseIdx && phaseIdx <
numPhases);
177 assert(0 <= phaseIdx && phaseIdx <
numPhases);
195 assert(0 <= phaseIdx && phaseIdx <
numPhases);
210 assert(0 <= phaseIdx && phaseIdx <
numPhases);
223 assert(0 <= phaseIdx && phaseIdx <
numPhases);
242 case H2OIdx:
return H2O::name();
246 DUNE_THROW(Dune::InvalidStateException,
"Invalid component index " << compIdx);
258 case H2OIdx:
return H2O::molarMass();
262 DUNE_THROW(Dune::InvalidStateException,
"Invalid component index " << compIdx);
271 template <
class Flu
idState>
278 if (!Policy::useKelvinVaporPressure())
284 const auto pc = (fluidState.wettingPhase() == (int)
liquidPhaseIdx)
293 DUNE_THROW(Dune::NotImplemented,
"NaCl::vaporPressure(t)");
295 DUNE_THROW(Dune::NotImplemented,
"Invalid component index " << compIdx);
328 static void init(Scalar tempMin, Scalar tempMax,
unsigned nTemp,
329 Scalar pressMin, Scalar pressMax,
unsigned nPress)
331 std::cout <<
"The brine-air fluid system was configured with the following policy:\n";
332 std::cout <<
" - use brine density as liquid mixture density: " << std::boolalpha << Policy::useBrineDensityAsLiquidMixtureDensity() <<
"\n";
333 std::cout <<
" - use ideal gas density: " << std::boolalpha << Policy::useIdealGasDensity() << std::endl;
335 if (H2O::isTabulated)
336 H2O::init(tempMin, tempMax, nTemp, pressMin, pressMax, nPress);
353 template <
class Flu
idState>
354 static Scalar
density(
const FluidState &fluidState,
int phaseIdx)
356 assert(0 <= phaseIdx && phaseIdx <
numPhases);
358 const auto T = fluidState.temperature(phaseIdx);
359 const auto p = fluidState.pressure(phaseIdx);
364 if (Policy::useBrineDensityAsLiquidMixtureDensity())
377 if (Policy::useIdealGasDensity())
382 return H2O::gasDensity(T, fluidState.partialPressure(
phase1Idx,
H2OIdx))
386 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
391 template <
class Flu
idState>
398 const Scalar T = fluidState.temperature(phaseIdx);
401 if (Policy::useIdealGasDensity())
406 return H2O::gasMolarDensity(T, fluidState.partialPressure(
phase1Idx,
H2OIdx))
410 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
424 template <
class Flu
idState>
425 static Scalar
viscosity(
const FluidState& fluidState,
int phaseIdx)
427 assert(0 <= phaseIdx && phaseIdx <
numPhases);
432 return Air::gasViscosity(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
457 template <
class Flu
idState>
460 assert(0 <= phaseIdx && phaseIdx <
numPhases);
463 Scalar T = fluidState.temperature(phaseIdx);
464 Scalar p = fluidState.pressure(phaseIdx);
478 return H2O::vaporPressure(T)/p;
480 else if (compIdx ==
AirIdx)
488 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
493 template <
class Flu
idState>
498 DUNE_THROW(Dune::NotImplemented,
"Diffusion coefficients");
503 template <
class Flu
idState>
509 assert(0 <= phaseIdx && phaseIdx <
numPhases);
513 const auto T = fluidState.temperature(phaseIdx);
514 const auto p = fluidState.pressure(phaseIdx);
516 if (compIIdx > compJIdx)
517 std::swap(compIIdx, compJIdx);
526 DUNE_THROW(Dune::NotImplemented,
"Binary diffusion coefficient of components "
527 << compIIdx <<
" and " << compJIdx
528 <<
" in phase " << phaseIdx);
542 DUNE_THROW(Dune::NotImplemented,
"Binary diffusion coefficient of components "
543 << compIIdx <<
" and " << compJIdx
544 <<
" in phase " << phaseIdx);
547 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
570 template <
class Flu
idState>
571 static Scalar
enthalpy(
const FluidState& fluidState,
int phaseIdx)
573 assert(0 <= phaseIdx && phaseIdx <
numPhases);
575 const Scalar T = fluidState.temperature(phaseIdx);
576 const Scalar p = fluidState.pressure(phaseIdx);
588 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
597 template <
class Flu
idState>
600 const Scalar T = fluidState.temperature(
gasPhaseIdx);
604 DUNE_THROW(Dune::NotImplemented,
"The component enthalpies in the liquid phase are not implemented.");
608 if (componentIdx ==
H2OIdx)
609 return H2O::gasEnthalpy(T, p);
610 else if (componentIdx ==
AirIdx)
612 else if (componentIdx ==
NaClIdx)
613 DUNE_THROW(Dune::InvalidStateException,
"Implementation assumes NaCl not to be present in gas phase");
614 DUNE_THROW(Dune::InvalidStateException,
"Invalid component index " << componentIdx);
616 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
631 template <
class Flu
idState>
639 + H2O::gasThermalConductivity(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx)) * fluidState.massFraction(
gasPhaseIdx,
H2OIdx);
641 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
655 template <
class Flu
idState>
658 const Scalar T = fluidState.temperature(phaseIdx);
659 const Scalar p = fluidState.pressure(phaseIdx);
669 DUNE_THROW(Dune::InvalidStateException,
"Invalid phase index " << phaseIdx);
Adapter class for fluid states with different indices.
A simple class for the air fluid properties.
Binary coefficients for water and air.
Definition: h2o_air.hh:25
static Scalar henry(Scalar temperature)
Henry coefficient for air in liquid water.
Definition: h2o_air.hh:36
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for molecular water and air.
Definition: h2o_air.hh:56
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for molecular nitrogen in liquid water.
Definition: h2o_air.hh:89
A class for the air fluid properties.
Definition: air.hh:35
static Scalar gasDensity(Scalar temperature, Scalar pressure)
The density of Air at a given pressure and temperature.
Definition: air.hh:73
static constexpr Scalar molarMass()
The molar mass in of Air.
Definition: air.hh:50
static const Scalar gasHeatCapacity(Scalar temperature, Scalar pressure)
Specific isobaric heat capacity of pure air.
Definition: air.hh:301
static Scalar gasViscosity(Scalar temperature, Scalar pressure)
The dynamic viscosity of Air at a given pressure and temperature.
Definition: air.hh:181
static Scalar gasThermalConductivity(Scalar temperature, Scalar pressure)
Thermal conductivity of air.
Definition: air.hh:339
static constexpr bool gasIsIdeal()
Returns true, the gas phase is assumed to be ideal.
Definition: air.hh:97
static Scalar gasEnthalpy(Scalar temperature, Scalar pressure)
Specific enthalpy of Air with 273.15 as basis.
Definition: air.hh:264
static std::string name()
A human readable name for Air.
Definition: air.hh:42
static Scalar gasMolarDensity(Scalar temperature, Scalar pressure)
The molar density of air in , depending on pressure and temperature.
Definition: air.hh:85
A class for the NaCl properties.
Definition: nacl.hh:35
static std::string name()
A human readable name for the NaCl.
Definition: nacl.hh:40
static constexpr Scalar molarMass()
The molar mass of NaCl in .
Definition: nacl.hh:48
Tabulates all thermodynamic properties of a given component.
Definition: tabulatedcomponent.hh:672
A central place for various physical constants occurring in some equations.
Definition: constants.hh:27
Adapter class for fluid states with different indices.
Definition: adapter.hh:32
Fluid system base class.
Definition: fluidsystems/base.hh:33
A compositional two-phase fluid system with a liquid and a gaseous phase and , and (dissolved miner...
Definition: brineair.hh:63
static Scalar componentEnthalpy(const FluidState &fluidState, int phaseIdx, int componentIdx)
Returns the specific enthalpy of a component in a specific phase.
Definition: brineair.hh:598
static Scalar density(const FluidState &fluidState, int phaseIdx)
Given a phase's composition, temperature, pressure, and the partial pressures of all components,...
Definition: brineair.hh:354
static Scalar thermalConductivity(const FluidState &fluidState, int phaseIdx)
Thermal conductivity of a fluid phase .
Definition: brineair.hh:632
static constexpr int comp0Idx
Definition: brineair.hh:100
static constexpr bool isCompressible(int phaseIdx)
Returns true if and only if a fluid phase is assumed to be compressible.
Definition: brineair.hh:193
static constexpr int liquidPhaseIdx
Definition: brineair.hh:88
static constexpr int AirIdx
Definition: brineair.hh:98
static constexpr int NaClIdx
Definition: brineair.hh:99
static void init()
Initialize the fluid system's static parameters generically.
Definition: brineair.hh:307
static constexpr int numPhases
Definition: brineair.hh:85
static Scalar heatCapacity(const FluidState &fluidState, int phaseIdx)
Specific isobaric heat capacity of a fluid phase. .
Definition: brineair.hh:656
static constexpr int numComponents
Definition: brineair.hh:86
static Scalar binaryDiffusionCoefficient(const FluidState &fluidState, int phaseIdx, int compIIdx, int compJIdx)
Given a phase's composition, temperature and pressure, return the binary diffusion coefficient for c...
Definition: brineair.hh:504
H2Otype H2O
export the involved components
Definition: brineair.hh:69
static Scalar viscosity(const FluidState &fluidState, int phaseIdx)
Calculate the dynamic viscosity of a fluid phase .
Definition: brineair.hh:425
static constexpr int comp2Idx
Definition: brineair.hh:102
static Scalar enthalpy(const FluidState &fluidState, int phaseIdx)
Given a phase's composition, temperature and pressure, return its specific enthalpy .
Definition: brineair.hh:571
static Scalar molarDensity(const FluidState &fluidState, int phaseIdx)
Calculate the molar density of a fluid phase.
Definition: brineair.hh:392
static constexpr int getMainComponent(int phaseIdx)
Get the main component of a given phase if possible.
Definition: brineair.hh:221
static constexpr bool isGas(int phaseIdx)
Return whether a phase is gaseous.
Definition: brineair.hh:155
static Scalar fugacityCoefficient(const FluidState &fluidState, int phaseIdx, int compIdx)
Returns the fugacity coefficient of a component in a phase.
Definition: brineair.hh:458
static void init(Scalar tempMin, Scalar tempMax, unsigned nTemp, Scalar pressMin, Scalar pressMax, unsigned nPress)
Initialize the fluid system's static parameters using problem specific temperature and pressure range...
Definition: brineair.hh:328
static Scalar molarMass(int compIdx)
Return the molar mass of a component in .
Definition: brineair.hh:253
static Scalar vaporPressure(const FluidState &fluidState, int compIdx)
Vapor pressure of a component .
Definition: brineair.hh:272
static std::string componentName(int compIdx)
Return the human readable name of a component.
Definition: brineair.hh:237
static std::string phaseName(int phaseIdx)
Return the human readable name of a fluid phase.
Definition: brineair.hh:134
static constexpr int comp1Idx
Definition: brineair.hh:101
static constexpr int phase1Idx
Definition: brineair.hh:92
static constexpr int phase0Idx
Definition: brineair.hh:91
static constexpr bool isMiscible()
Returns whether the fluids are miscible.
Definition: brineair.hh:148
static Scalar diffusionCoefficient(const FluidState &fluidState, int phaseIdx, int compIdx)
Calculate the binary molecular diffusion coefficient for a component in a fluid phase .
Definition: brineair.hh:494
static bool isIdealGas(int phaseIdx)
Returns true if and only if a fluid phase is assumed to be an ideal gas.
Definition: brineair.hh:208
static constexpr int gasPhaseIdx
Definition: brineair.hh:89
static bool isIdealMixture(int phaseIdx)
Returns true if and only if a fluid phase is assumed to be an ideal mixture.
Definition: brineair.hh:175
Dumux::FluidSystems::Brine< Scalar, H2Otype > Brine
export the underlying brine fluid system for the liquid phase
Definition: brineair.hh:74
static constexpr int H2OIdx
Definition: brineair.hh:97
A compositional single phase fluid system consisting of two components, which are H2O and NaCl.
Definition: fluidsystems/brine.hh:35
static Scalar thermalConductivity(const FluidState &fluidState, int phaseIdx)
Thermal conductivity of a fluid phase .
Definition: fluidsystems/brine.hh:435
static Scalar viscosity(const FluidState &fluidState, int phaseIdx=liquidPhaseIdx)
Return the viscosity of the phase.
Definition: fluidsystems/brine.hh:276
static constexpr int H2OIdx
index of the water component
Definition: fluidsystems/brine.hh:49
static Scalar heatCapacity(const FluidState &fluidState, int phaseIdx)
Specific isobaric heat capacity of a fluid phase .
Definition: fluidsystems/brine.hh:451
static Scalar enthalpy(const FluidState &fluidState, int phaseIdx)
Given a phase's composition, temperature and pressure, return its specific enthalpy .
Definition: fluidsystems/brine.hh:336
static Scalar vaporPressure(const FluidState &fluidState, int compIdx)
Vapor pressure of a component .
Definition: fluidsystems/brine.hh:307
static constexpr int NaClIdx
index of the NaCl component
Definition: fluidsystems/brine.hh:50
static Scalar molarDensity(const FluidState &fluidState, int phaseIdx=liquidPhaseIdx)
Calculate the molar density of a fluid phase.
Definition: fluidsystems/brine.hh:373
static constexpr int liquidPhaseIdx
The one considered phase is liquid.
Definition: fluidsystems/brine.hh:47
static bool isCompressible(int phaseIdx=liquidPhaseIdx)
Returns true if and only if a fluid phase is assumed to be compressible.
Definition: fluidsystems/brine.hh:112
static Scalar density(const FluidState &fluidState, int phaseIdx=liquidPhaseIdx)
Return the phase density [kg/m^3].
Definition: fluidsystems/brine.hh:218
static Scalar binaryDiffusionCoefficient(const FluidState &fluidState, int phaseIdx, int compIIdx, int compJIdx)
Given a phase's composition, temperature and pressure, return the binary diffusion coefficient for c...
Definition: fluidsystems/brine.hh:402
Relations valid for an ideal gas.
Definition: idealgas.hh:25
static constexpr Scalar density(Scalar avgMolarMass, Scalar temperature, Scalar pressure)
The density of the gas in , depending on pressure, temperature and average molar mass of the gas.
Definition: idealgas.hh:37
static constexpr Scalar molarDensity(Scalar temperature, Scalar pressure)
The molar density of the gas , depending on pressure and temperature.
Definition: idealgas.hh:58
The a parameter cache which does nothing.
Definition: nullparametercache.hh:22
Some exceptions thrown in DuMux
A fluid system for brine, i.e. H2O with dissolved NaCl.
Material properties of pure water .
Binary coefficients for water and air.
Relations valid for an ideal gas.
Material properties of pure salt .
A collection of input/output field names for common physical quantities.
std::string gaseousPhase() noexcept
I/O name of gaseous phase.
Definition: name.hh:111
std::string liquidPhase() noexcept
I/O name of liquid phase.
Definition: name.hh:107
Policy for the brine-air fluid system.
Definition: brineair.hh:44
static constexpr bool useIdealGasDensity()
Definition: brineair.hh:46
static constexpr bool useKelvinVaporPressure()
Definition: brineair.hh:47
static constexpr bool useBrineDensityAsLiquidMixtureDensity()
Definition: brineair.hh:45
Tabulates all thermodynamic properties of a given untabulated chemical species.