25#ifndef DUMUX_TWOP_IO_FIELDS_HH
26#define DUMUX_TWOP_IO_FIELDS_HH
41 template <
class OutputModule>
44 using VolumeVariables =
typename OutputModule::VolumeVariables;
45 using FS =
typename VolumeVariables::FluidSystem;
47 for (
int phaseIdx = 0; phaseIdx < FS::numPhases; ++phaseIdx)
49 out.addVolumeVariable([phaseIdx](
const VolumeVariables& v){
return v.saturation(phaseIdx); },
51 out.addVolumeVariable([phaseIdx](
const VolumeVariables& v){
return v.pressure(phaseIdx); },
53 out.addVolumeVariable([phaseIdx](
const auto& v){
return v.density(phaseIdx); },
55 out.addVolumeVariable([phaseIdx](
const auto& v){
return v.mobility(phaseIdx); },
59 out.addVolumeVariable([](
const auto& v){
return v.capillaryPressure(); },
61 out.addVolumeVariable([](
const auto& v){
return v.porosity(); },
65 template <
class ModelTraits,
class Flu
idSystem,
class Sol
idSystem =
void>
A collection of input/output field names for common physical quantities.
@ p0s1
first phase pressure and second phase saturation as primary variables
Definition formulation.hh:36
std::string capillaryPressure() noexcept
I/O name of capillary pressure.
Definition name.hh:135
std::string pressure() noexcept
I/O name of pressure for singlephase systems.
Definition name.hh:38
std::string density() noexcept
I/O name of density for singlephase systems.
Definition name.hh:69
std::string saturation() noexcept
I/O name of saturation for singlephase systems.
Definition name.hh:47
std::string mobility() noexcept
I/O name of mobility for singlephase systems.
Definition name.hh:105
std::string porosity() noexcept
I/O name of porosity.
Definition name.hh:139
Adds I/O fields specific to the two-phase model.
Definition porousmediumflow/2p/iofields.hh:39
static std::string primaryVariableName(int pvIdx, int state=0)
Definition porousmediumflow/2p/iofields.hh:66
static void initOutputModule(OutputModule &out)
Definition porousmediumflow/2p/iofields.hh:42
Adaption of the fully implicit scheme to the two-phase flow model.