13#ifndef DUMUX_NAVIERSTOKES_MASS_1PNC_VOLUME_VARIABLES_HH
14#define DUMUX_NAVIERSTOKES_MASS_1PNC_VOLUME_VARIABLES_HH
25template <
class Traits>
33 using Scalar =
typename Traits::PrimaryVariables::value_type;
35 static constexpr bool useMoles = Traits::ModelTraits::useMoles();
36 using DiffusionCoefficients =
typename Traits::DiffusionType::DiffusionCoefficientsContainer;
47 using Indices =
typename Traits::ModelTraits::Indices;
58 template<
class ElementSolution,
class Problem,
class Element,
class SubControlVolume>
59 void update(
const ElementSolution &elemSol,
60 const Problem &problem,
61 const Element &element,
62 const SubControlVolume& scv)
68 typename FluidSystem::ParameterCache paramCache;
71 auto getDiffusionCoefficient = [&](
int phaseIdx,
int compIIdx,
int compJIdx)
73 return FluidSystem::binaryDiffusionCoefficient(this->
fluidState_,
87 template<
class ElementSolution,
class Problem,
class Element,
class SubControlVolume>
89 const Problem& problem,
90 const Element& element,
91 const SubControlVolume& scv,
95 fluidState.setPressure(0, elemSol[0][Indices::pressureIdx]);
102 Scalar sumFracMinorComp = 0.0;
108 Scalar moleOrMassFraction = elemSol[0][Indices::conti0EqIdx+compIdx] + 1.0;
109 moleOrMassFraction = moleOrMassFraction - 1.0;
111 fluidState.setMoleFraction(0, compIdx, moleOrMassFraction);
113 fluidState.setMassFraction(0, compIdx, moleOrMassFraction);
114 sumFracMinorComp += moleOrMassFraction;
117 fluidState.setMoleFraction(0, 0, 1.0 - sumFracMinorComp);
119 fluidState.setMassFraction(0, 0, 1.0 - sumFracMinorComp);
121 typename FluidSystem::ParameterCache paramCache;
239 return FluidSystem::molarMass(compIdx);
The isothermal base class.
Definition: freeflow/navierstokes/energy/volumevariables.hh:47
Scalar getTemperature(const ElementSolution &elemSol, const Problem &problem, const Element &element, const SubControlVolume &scv) const
Returns the temperature at a given sub-control volume.
Definition: freeflow/navierstokes/energy/volumevariables.hh:66
void updateEffectiveThermalConductivity()
The effective thermal conductivity is zero for isothermal models.
Definition: freeflow/navierstokes/energy/volumevariables.hh:79
Scalar enthalpy(const int phaseIdx=0) const
Returns the total enthalpy of a phase in the sub-control volume.
Definition: freeflow/navierstokes/energy/volumevariables.hh:105
Volume variables for the single-phase Navier-Stokes model.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:29
Scalar effectiveViscosity() const
Return the effective dynamic viscosity of the fluid within the control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:172
DiffusionCoefficients diffCoefficient_
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:271
Scalar viscosity(int phaseIdx=0) const
Return the dynamic viscosity of the fluid within the control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:179
Scalar massFraction(int phaseIdx, int compIdx) const
Returns the mass fraction of a component in the phase .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:188
typename Traits::DiffusionType MolecularDiffusionType
export the diffusion type
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:45
typename Traits::FluidState FluidState
export the fluid state type
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:43
Scalar moleFraction(int compIdx) const
Returns the mole fraction of a component in the phase .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:219
void update(const ElementSolution &elemSol, const Problem &problem, const Element &element, const SubControlVolume &scv)
Update all quantities for a given control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:59
const FluidState & fluidState() const
Return the fluid state of the control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:265
FluidState fluidState_
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:269
typename Traits::ModelTraits::Indices Indices
export the indices type
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:47
Scalar moleFraction(int phaseIdx, int compIdx) const
Returns the mole fraction of a component in the phase .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:209
Scalar molarMass(int compIdx) const
Returns the molar mass of a given component.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:237
Scalar pressure(int phaseIdx=0) const
Return the effective pressure of a given phase within the control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:142
Scalar molarDensity(int phaseIdx=0) const
Returns the mass density of a given phase .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:227
Scalar saturation(int phaseIdx=0) const
Returns the saturation.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:148
Scalar averageMolarMass(const int phaseIdx=0) const
Returns the average molar mass of the fluid phase.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:247
void completeFluidState(const ElementSolution &elemSol, const Problem &problem, const Element &element, const SubControlVolume &scv, FluidState &fluidState) const
Update the fluid state.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:88
Scalar effectiveDiffusionCoefficient(int phaseIdx, int compIIdx, int compJIdx) const
Returns the effective diffusion coefficients for a phase in .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:259
Scalar diffusionCoefficient(int phaseIdx, int compIIdx, int compJIdx) const
Returns the binary diffusion coefficients for a phase in .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:253
typename Traits::FluidSystem FluidSystem
export the underlying fluid system
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:41
Scalar temperature() const
Return temperature inside the sub-control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:165
Scalar massFraction(int compIdx) const
Returns the mass fraction of a component in the phase .
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:198
Scalar density(int phaseIdx=0) const
Return the mass density of a given phase within the control volume.
Definition: freeflow/navierstokes/mass/1pnc/volumevariables.hh:155
Volume variables for the single-phase Navier-Stokes model.
Definition: scalarvolumevariables.hh:24
static constexpr int numFluidComponents()
Return number of components considered by the model.
Definition: scalarvolumevariables.hh:40
void update(const ElementSolution &elemSol, const Problem &problem, const Element &element, const SubControlVolume &scv)
Update all quantities for a given control volume.
Definition: scalarvolumevariables.hh:52
Base class for the model specific class which provides access to all volume averaged quantities.
std::string viscosity(int phaseIdx) noexcept
I/O name of viscosity for multiphase systems.
Definition: name.hh:62
std::string molarDensity(int phaseIdx) noexcept
I/O name of molar density for multiphase systems.
Definition: name.hh:71
std::string density(int phaseIdx) noexcept
I/O name of density for multiphase systems.
Definition: name.hh:53