24#ifndef DUMUX_LOWREKEPSILON_IO_FIELDS_HH
25#define DUMUX_LOWREKEPSILON_IO_FIELDS_HH
38 template <
class OutputModule>
42 out.addVolumeVariable([](
const auto& v){
return v.turbulentKineticEnergy(); },
"k");
43 out.addVolumeVariable([](
const auto& v){
return v.dissipationTilde(); },
"epsilon");
47 template <
class ModelTraits,
class Flu
idSystem>
50 if (pvIdx < ModelTraits::dim() + ModelTraits::numFluidComponents())
51 return RANSIOFields::template primaryVariableName<ModelTraits, FluidSystem>(pvIdx, state);
52 else if (pvIdx == ModelTraits::dim() + ModelTraits::numFluidComponents())
Adaption of the non-isothermal two-phase two-component flow model to problems with CO2.
Definition: adapt.hh:29
static void initOutputModule(OutputModule &out)
Initialize the RANS specific output fields.
Definition: freeflow/rans/iofields.hh:39
Adds I/O fields for the low-Re k-epsilon turbulence model.
Definition: freeflow/rans/twoeq/lowrekepsilon/iofields.hh:36
static std::string primaryVariableName(int pvIdx=0, int state=0)
return the names of the primary variables
Definition: freeflow/rans/twoeq/lowrekepsilon/iofields.hh:48
static void initOutputModule(OutputModule &out)
Initialize the LowReKEpsilon specific output fields.
Definition: freeflow/rans/twoeq/lowrekepsilon/iofields.hh:39