version 3.8
freeflow/rans/oneeq/indices.hh
Go to the documentation of this file.
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//
12#ifndef DUMUX_ONEEQ_INDICES_HH
13#define DUMUX_ONEEQ_INDICES_HH
14
16
17namespace Dumux {
18
19// \{
27template<int dimension, int numComponents>
28struct OneEqIndices : public NavierStokesIndices<dimension>
29{
30public:
31 static constexpr auto viscosityTildeEqIdx = dimension + numComponents;
32 static constexpr auto viscosityTildeIdx = viscosityTildeEqIdx;
33};
34
35// \}
36} // end namespace
37
38#endif
Definition: adapt.hh:17
The common indices for the isothermal Navier-Stokes model.
Definition: freeflow/navierstokes/indices.hh:25
The common indices for the isothermal one-equation turbulence model by Spalart-Allmaras.
Definition: freeflow/rans/oneeq/indices.hh:29
static constexpr auto viscosityTildeEqIdx
Definition: freeflow/rans/oneeq/indices.hh:31
static constexpr auto viscosityTildeIdx
Definition: freeflow/rans/oneeq/indices.hh:32