24#ifndef DUMUX_IO_NAME_HH
25#define DUMUX_IO_NAME_HH
33template<
class Flu
idSystem>
35{
return (FluidSystem::numPhases == 1) ?
"p" :
"p_" + FluidSystem::phaseName(phaseIdx); }
42template<
class Flu
idSystem>
44{
return (FluidSystem::numPhases == 1) ?
"S" :
"S_" + FluidSystem::phaseName(phaseIdx); }
55template<
class Flu
idSystem>
57{
return "T_" + FluidSystem::phaseName(phaseIdx); }
64template<
class Flu
idSystem>
66{
return (FluidSystem::numPhases == 1) ?
"rho" :
"rho_" + FluidSystem::phaseName(phaseIdx); }
73template<
class Flu
idSystem>
75{
return (FluidSystem::numPhases == 1) ?
"mu" :
"mu_" + FluidSystem::phaseName(phaseIdx); }
82template<
class Flu
idSystem>
84{
return (FluidSystem::numPhases == 1) ?
"rhoMolar" :
"rhoMolar_" + FluidSystem::phaseName(phaseIdx); }
91template<
class Flu
idSystem>
93{
return (FluidSystem::numPhases == 1) ?
"kr" :
"kr_" + FluidSystem::phaseName(phaseIdx); }
100template<
class Flu
idSystem>
102{
return (FluidSystem::numPhases == 1) ?
"mob" :
"mob_" + FluidSystem::phaseName(phaseIdx); }
109template<
class Flu
idSystem>
111{
return "x^" + FluidSystem::componentName(compIdx) +
"_" + FluidSystem::phaseName(phaseIdx); }
114template<
class Flu
idSystem>
116{
return "X^" + FluidSystem::componentName(compIdx) +
"_" + FluidSystem::phaseName(phaseIdx); }
140{
return "porosity"; }
144{
return "permeability"; }
148{
return "phase presence"; }
152{
return "pressure head"; }
156{
return "water content"; }
159template<
class Sol
idSystem>
161{
return "precipitateVolumeFraction^" + SolidSystem::componentName(compIdx); }
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
std::string waterContent() noexcept
I/O name of water content.
Definition: name.hh:155
std::string temperature() noexcept
I/O name of temperature for equilibrium models.
Definition: name.hh:51
std::string solidVolumeFraction(int compIdx=0) noexcept
I/O name of solid volume fraction.
Definition: name.hh:160
std::string capillaryPressure() noexcept
I/O name of capillary pressure.
Definition: name.hh:135
std::string gaseousPhase() noexcept
I/O name of gaseous phase.
Definition: name.hh:123
std::string saturation(int phaseIdx) noexcept
I/O name of saturation for multiphase systems.
Definition: name.hh:43
std::string relativePermeability(int phaseIdx) noexcept
I/O name of relative permeability for multiphase systems.
Definition: name.hh:92
std::string solidTemperature() noexcept
I/O name of solid temperature for non-equilibrium models.
Definition: name.hh:60
std::string phasePresence() noexcept
I/O name of phase presence.
Definition: name.hh:147
std::string moleFraction(int phaseIdx, int compIdx) noexcept
I/O name of mole fraction.
Definition: name.hh:110
std::string displacement() noexcept
I/O name of displacement.
Definition: name.hh:164
std::string mobility(int phaseIdx) noexcept
I/O name of mobility for multiphase systems.
Definition: name.hh:101
std::string viscosity(int phaseIdx) noexcept
I/O name of viscosity for multiphase systems.
Definition: name.hh:74
std::string molarDensity(int phaseIdx) noexcept
I/O name of molar density for multiphase systems.
Definition: name.hh:83
std::string pressureHead() noexcept
I/O name of pressure head.
Definition: name.hh:151
std::string naplPhase() noexcept
I/O name of napl phase.
Definition: name.hh:131
std::string liquidPhase() noexcept
I/O name of liquid phase.
Definition: name.hh:119
std::string permeability() noexcept
I/O name of permeability.
Definition: name.hh:143
std::string aqueousPhase() noexcept
I/O name of aqueous phase.
Definition: name.hh:127
std::string pressure(int phaseIdx) noexcept
I/O name of pressure for multiphase systems.
Definition: name.hh:34
std::string density(int phaseIdx) noexcept
I/O name of density for multiphase systems.
Definition: name.hh:65
std::string fluidTemperature(int phaseIdx) noexcept
I/O name of temperature for non-equilibrium models.
Definition: name.hh:56
std::string massFraction(int phaseIdx, int compIdx) noexcept
I/O name of mass fraction.
Definition: name.hh:115
std::string porosity() noexcept
I/O name of porosity.
Definition: name.hh:139