25#ifndef DUMUX_1P_VOLUME_VARIABLES_HH
26#define DUMUX_1P_VOLUME_VARIABLES_HH
51 using Scalar =
typename Traits::PrimaryVariables::value_type;
52 using Indices =
typename Traits::ModelTraits::Indices;
53 using PermeabilityType =
typename Traits::PermeabilityType;
74 template<
class ElemSol,
class Problem,
class Element,
class Scv>
76 const Problem& problem,
77 const Element& element,
87 EnergyVolVars::updateSolidEnergyParams(elemSol, problem, element, scv,
solidState_);
88 permeability_ = problem.spatialParams().permeability(element, scv, elemSol);
89 EnergyVolVars::updateEffectiveThermalConductivity();
103 template<
class ElemSol,
class Problem,
class Element,
class Scv>
105 const Problem& problem,
106 const Element& element,
114 const auto&
priVars = elemSol[scv.localDofIndex()];
122 typename FluidSystem::ParameterCache paramCache;
125 Scalar value = FluidSystem::density(
fluidState, paramCache, 0);
128 value = FluidSystem::viscosity(
fluidState, paramCache, 0);
132 value = EnergyVolVars::enthalpy(
fluidState, paramCache, 0);
Represents all relevant thermodynamic quantities of a multi-phase fluid system assuming immiscibility...
Update the solid volume fractions (inert and reacitve) and set them in the solidstate.
EnergyVolumeVariablesImplementation< IsothermalTraits, Impl, IsothermalTraits::ModelTraits::enableEnergyBalance()> EnergyVolumeVariables
Base class for the model specific class which provides access to all volume averaged quantities.
Definition porousmediumflow/nonisothermal/volumevariables.hh:85
void updateSolidVolumeFractions(const ElemSol &elemSol, const Problem &problem, const Element &element, const Scv &scv, SolidState &solidState, const int solidVolFracOffset)
update the solid volume fractions (inert and reacitve) and set them in the solidstate
Definition updatesolidvolumefractions.hh:36
Contains the quantities which are constant within a finite volume in the one-phase model.
Definition porousmediumflow/1p/volumevariables.hh:46
typename NITraits< BaseTraits, ETCM >::FluidSystem FluidSystem
Definition porousmediumflow/1p/volumevariables.hh:57
typename NITraits< BaseTraits, ETCM >::SolidSystem SolidSystem
Definition porousmediumflow/1p/volumevariables.hh:63
typename NITraits< BaseTraits, ETCM >::FluidState FluidState
Definition porousmediumflow/1p/volumevariables.hh:59
typename NITraits< BaseTraits, ETCM >::SolidState SolidState
Definition porousmediumflow/1p/volumevariables.hh:61
Scalar density(int phaseIdx=0) const
Returns the mass density of a given phase within the control volume.
Definition porousmediumflow/1p/volumevariables.hh:169
PermeabilityType permeability_
Definition porousmediumflow/1p/volumevariables.hh:212
void update(const ElemSol &elemSol, const Problem &problem, const Element &element, const Scv &scv)
Updates all quantities for a given control volume.
Definition porousmediumflow/1p/volumevariables.hh:75
Scalar pressure(int phaseIdx=0) const
Returns the effective pressure of a given phase within the control volume.
Definition porousmediumflow/1p/volumevariables.hh:156
void completeFluidState(const ElemSol &elemSol, const Problem &problem, const Element &element, const Scv &scv, FluidState &fluidState, SolidState &solidState)
Sets complete fluid state.
Definition porousmediumflow/1p/volumevariables.hh:104
const SolidState & solidState() const
Definition porousmediumflow/1p/volumevariables.hh:149
Scalar saturation(int phaseIdx=0) const
Returns the saturation.
Definition porousmediumflow/1p/volumevariables.hh:162
Scalar porosity() const
Returns the average porosity within the control volume.
Definition porousmediumflow/1p/volumevariables.hh:194
Scalar temperature() const
Returns the temperature inside the sub-control volume.
Definition porousmediumflow/1p/volumevariables.hh:143
FluidState fluidState_
Definition porousmediumflow/1p/volumevariables.hh:210
const PermeabilityType & permeability() const
Returns the permeability within the control volume in .
Definition porousmediumflow/1p/volumevariables.hh:200
const FluidState & fluidState() const
Definition porousmediumflow/1p/volumevariables.hh:206
SolidState solidState_
Definition porousmediumflow/1p/volumevariables.hh:211
Scalar viscosity(int phaseIdx=0) const
Returns the dynamic viscosity of the fluid within the control volume.
Definition porousmediumflow/1p/volumevariables.hh:176
Scalar mobility(int phaseIdx=0) const
Returns the mobility .
Definition porousmediumflow/1p/volumevariables.hh:188
The isothermal base class.
Definition porousmediumflow/volumevariables.hh:40
static constexpr int numFluidComponents()
Return number of components considered by the model.
Definition porousmediumflow/volumevariables.hh:52
const PrimaryVariables & priVars() const
Definition porousmediumflow/volumevariables.hh:76
void update(const ElemSol &elemSol, const Problem &problem, const Element &element, const Scv &scv)
Updates all quantities for a given control volume.
Definition porousmediumflow/volumevariables.hh:64
Base class for the model specific class which provides access to all volume averaged quantities.
Base class for the model specific class which provides access to all volume averaged quantities.