25#ifndef DUMUX_RICHARDS_IO_FIELDS_HH
26#define DUMUX_RICHARDS_IO_FIELDS_HH
38template <
bool enableWaterDiffusionInAir>
42 template <
class OutputModule>
45 using VV =
typename OutputModule::VolumeVariables;
46 using FS =
typename VV::FluidSystem;
48 out.addVolumeVariable([](
const auto& v){
return v.saturation(FS::phase0Idx); },
49 IOName::saturation<FS>(FS::phase0Idx));
50 out.addVolumeVariable([](
const auto& v){
return v.saturation(FS::phase1Idx); },
51 IOName::saturation<FS>(FS::phase1Idx));
52 out.addVolumeVariable([](
const auto& v){
return v.pressure(FS::phase0Idx); },
53 IOName::pressure<FS>(FS::phase0Idx));
54 out.addVolumeVariable([](
const auto& v){
return v.pressure(FS::phase1Idx); },
55 IOName::pressure<FS>(FS::phase1Idx));
56 out.addVolumeVariable([](
const auto& v){
return v.capillaryPressure(); },
58 out.addVolumeVariable([](
const auto& v){
return v.density(FS::phase0Idx); },
59 IOName::density<FS>(FS::phase0Idx));
60 out.addVolumeVariable([](
const auto& v){
return v.mobility(FS::phase0Idx); },
61 IOName::mobility<FS>(FS::phase0Idx));
62 out.addVolumeVariable([](
const auto& v){
return v.relativePermeability(FS::phase0Idx); },
63 IOName::relativePermeability<FS>(FS::phase0Idx));
64 out.addVolumeVariable([](
const auto& v){
return v.porosity(); },
67 static const bool gravity = getParamFromGroup<bool>(out.paramGroup(),
"Problem.EnableGravity");
70 out.addVolumeVariable([](
const auto& v){
return v.pressureHead(FS::phase0Idx); },
72 if constexpr (enableWaterDiffusionInAir)
73 out.addVolumeVariable([](
const auto& v){
return v.moleFraction(FS::phase1Idx, FS::comp0Idx); },
74 IOName::moleFraction<FS>(FS::phase1Idx, FS::comp0Idx));
75 out.addVolumeVariable([](
const auto& v){
return v.waterContent(FS::phase0Idx); },
78 if constexpr (Detail::priVarsHaveState<typename VV::PrimaryVariables>())
79 out.addVolumeVariable([](
const auto& v){
return v.priVars().state(); },
83 template<
class ModelTraits,
class Flu
idSystem,
class Sol
idSystem =
void>
86 using Indices =
typename ModelTraits::Indices;
88 if (state == Indices::gasPhaseOnly)
89 return IOName::moleFraction<FluidSystem>(FluidSystem::phase1Idx, FluidSystem::phase0Idx);
91 return IOName::pressure<FluidSystem>(FluidSystem::phase0Idx);
Type traits to be used with matrix types.
The infrastructure to retrieve run-time parameters from Dune::ParameterTrees.
A collection of input/output field names for common physical quantities.
Adaption of the non-isothermal two-phase two-component flow model to problems with CO2.
Definition: adapt.hh:29
std::string waterContent() noexcept
I/O name of water content.
Definition: name.hh:155
std::string capillaryPressure() noexcept
I/O name of capillary pressure.
Definition: name.hh:135
std::string phasePresence() noexcept
I/O name of phase presence.
Definition: name.hh:147
std::string pressureHead() noexcept
I/O name of pressure head.
Definition: name.hh:151
std::string porosity() noexcept
I/O name of porosity.
Definition: name.hh:139
Adds I/O fields specific to the Richards model.
Definition: porousmediumflow/richards/iofields.hh:40
static std::string primaryVariableName(int pvIdx, int state)
Definition: porousmediumflow/richards/iofields.hh:84
static void initOutputModule(OutputModule &out)
Definition: porousmediumflow/richards/iofields.hh:43