GCC Code Coverage Report


Directory: ../../../builds/dumux-repositories/
File: /builds/dumux-repositories/dumux/dumux/freeflow/rans/twoeq/komega/iofields.hh
Date: 2024-05-04 19:09:25
Exec Total Coverage
Lines: 5 11 45.5%
Functions: 8 18 44.4%
Branches: 13 46 28.3%

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 KOmegaModel
10 * \copydoc Dumux::KOmegaIOFields
11 */
12 #ifndef DUMUX_KOMEGA_IO_FIELDS_HH
13 #define DUMUX_KOMEGA_IO_FIELDS_HH
14
15 #include <dumux/freeflow/rans/iofields.hh>
16
17 namespace Dumux {
18
19 /*!
20 * \ingroup KOmegaModel
21 * \brief Adds I/O fields for the Reynolds-Averaged Navier-Stokes model
22 */
23 struct KOmegaIOFields
24 {
25 //! Initialize the KOmegaModel specific output fields.
26 template <class OutputModule>
27 14 static void initOutputModule(OutputModule& out)
28 {
29 14 RANSIOFields::initOutputModule(out);
30
31
7/18
✓ Branch 1 taken 10 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 10 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 10 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 10 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 10 times.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✓ Branch 15 taken 10 times.
✓ Branch 17 taken 10 times.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
✗ Branch 20 not taken.
✗ Branch 21 not taken.
✗ Branch 22 not taken.
142 out.addVolumeVariable([](const auto& v){ return v.turbulentKineticEnergy(); }, "k");
32
6/16
✓ Branch 1 taken 10 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 10 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 10 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 10 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 10 times.
✗ Branch 13 not taken.
✗ Branch 14 not taken.
✓ Branch 15 taken 10 times.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
✗ Branch 18 not taken.
✗ Branch 19 not taken.
142 out.addVolumeVariable([](const auto& v){ return v.dissipation(); }, "omega");
33 14 }
34
35 //! return the names of the primary variables
36 template <class ModelTraits, class FluidSystem>
37 static std::string primaryVariableName(int pvIdx = 0, int state = 0)
38 {
39 if (pvIdx < ModelTraits::dim() + ModelTraits::numFluidComponents())
40 return RANSIOFields::template primaryVariableName<ModelTraits, FluidSystem>(pvIdx, state);
41 else if (pvIdx == ModelTraits::dim() + ModelTraits::numFluidComponents())
42 return "k";
43 else
44 return "omega";
45 }
46 };
47
48 } // end namespace Dumux
49
50 #endif
51