Line | Branch | Exec | Source |
---|---|---|---|
1 | // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- | ||
2 | // vi: set et ts=4 sw=4 sts=4: | ||
3 | // | ||
4 | // SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder | ||
5 | // SPDX-License-Identifier: GPL-3.0-or-later | ||
6 | // | ||
7 | /*! | ||
8 | * \file | ||
9 | * \ingroup LowReKEpsilonModel | ||
10 | * \copydoc Dumux::LowReKEpsilonIOFields | ||
11 | */ | ||
12 | #ifndef DUMUX_LOWREKEPSILON_IO_FIELDS_HH | ||
13 | #define DUMUX_LOWREKEPSILON_IO_FIELDS_HH | ||
14 | |||
15 | #include <dumux/freeflow/rans/iofields.hh> | ||
16 | |||
17 | namespace Dumux { | ||
18 | |||
19 | /*! | ||
20 | * \ingroup LowReKEpsilonModel | ||
21 | * \brief Adds I/O fields for the low-Re k-epsilon turbulence model | ||
22 | */ | ||
23 | struct LowReKEpsilonIOFields | ||
24 | { | ||
25 | //! Initialize the LowReKEpsilon specific output fields. | ||
26 | template <class OutputModule> | ||
27 | 4 | static void initOutputModule(OutputModule& out) | |
28 | { | ||
29 | 4 | RANSIOFields::initOutputModule(out); | |
30 |
7/18✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 4 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 4 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 4 times.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✓ Branch 15 taken 4 times.
✓ Branch 17 taken 4 times.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
✗ Branch 20 not taken.
✗ Branch 21 not taken.
✗ Branch 22 not taken.
|
12 | out.addVolumeVariable([](const auto& v){ return v.turbulentKineticEnergy(); }, "k"); |
31 |
6/16✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 4 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 4 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 4 times.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✓ Branch 15 taken 4 times.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
|
12 | out.addVolumeVariable([](const auto& v){ return v.dissipationTilde(); }, "epsilon"); |
32 | 4 | } | |
33 | |||
34 | //! return the names of the primary variables | ||
35 | template <class ModelTraits, class FluidSystem> | ||
36 | ✗ | static std::string primaryVariableName(int pvIdx = 0, int state = 0) | |
37 | { | ||
38 | ✗ | if (pvIdx < ModelTraits::dim() + ModelTraits::numFluidComponents()) | |
39 | ✗ | return RANSIOFields::template primaryVariableName<ModelTraits, FluidSystem>(pvIdx, state); | |
40 | ✗ | else if (pvIdx == ModelTraits::dim() + ModelTraits::numFluidComponents()) | |
41 | ✗ | return "k"; | |
42 | else | ||
43 | ✗ | return "epsilon"; | |
44 | } | ||
45 | }; | ||
46 | |||
47 | } // end namespace Dumux | ||
48 | |||
49 | #endif | ||
50 |