12#ifndef DUMUX_LOWREKEPSILON_IO_FIELDS_HH 
   13#define DUMUX_LOWREKEPSILON_IO_FIELDS_HH 
   26    template <
class OutputModule>
 
   30        out.addVolumeVariable([](
const auto& v){ 
return v.turbulentKineticEnergy(); }, 
"k");
 
   31        out.addVolumeVariable([](
const auto& v){ 
return v.dissipationTilde(); }, 
"epsilon");
 
 
   35    template <
class ModelTraits, 
class Flu
idSystem>
 
   38        if (pvIdx < ModelTraits::dim() + ModelTraits::numFluidComponents())
 
   40        else if (pvIdx == ModelTraits::dim() + ModelTraits::numFluidComponents())
 
 
 
Adds I/O fields for the Reynolds-Averaged Navier-Stokes model.
Adds I/O fields for the low-Re k-epsilon turbulence model.
Definition freeflow/rans/twoeq/lowrekepsilon/iofields.hh:24
static std::string primaryVariableName(int pvIdx=0, int state=0)
return the names of the primary variables
Definition freeflow/rans/twoeq/lowrekepsilon/iofields.hh:36
static void initOutputModule(OutputModule &out)
Initialize the LowReKEpsilon specific output fields.
Definition freeflow/rans/twoeq/lowrekepsilon/iofields.hh:27
static void initOutputModule(OutputModule &out)
Initialize the RANS specific output fields.
Definition freeflow/rans/iofields.hh:27