diff --git a/dumux/freeflow/navierstokes/indices.hh b/dumux/freeflow/navierstokes/indices.hh index 5a72bc66d8c08ff08ac0f00034e8ab7e4f226354..add4bc7a2dc2c0b41485a877f64c67da58eef225 100644 --- a/dumux/freeflow/navierstokes/indices.hh +++ b/dumux/freeflow/navierstokes/indices.hh @@ -18,10 +18,11 @@ *****************************************************************************/ /*! * \file - * \brief Defines the indices for the one-phase isothermal Navier-Stoke model. + * \ingroup NavierStokesModel + * \copydoc Dumux::NavierStokesIndices */ -#ifndef DUMUX_NAVIERSTOKES_COMMON_INDICES_HH -#define DUMUX_NAVIERSTOKES_COMMON_INDICES_HH +#ifndef DUMUX_NAVIERSTOKES_INDICES_HH +#define DUMUX_NAVIERSTOKES_INDICES_HH #include <dumux/common/properties.hh> @@ -35,7 +36,7 @@ namespace Dumux * \tparam PVOffset The first index in a primary variable vector. */ template <class TypeTag, int PVOffset = 0> -struct NavierStokesCommonIndices +struct NavierStokesIndices { static constexpr int dimXIdx = 0; //!< Index of the x-component of a vector of size dim @@ -43,7 +44,7 @@ struct NavierStokesCommonIndices static constexpr int dimZIdx = 2; //!< Index of the z-component of a vector of size dim static constexpr int massBalanceIdx = PVOffset + 0; //!< Index of the mass balance equation - static constexpr int conti0EqIdx = massBalanceIdx; //!< Index of first (for C-guys: 0th) mass conservation equation + static constexpr int conti0EqIdx = massBalanceIdx; //!< Index of the mass balance equation static constexpr int pressureIdx = massBalanceIdx; //!< Index of the pressure in a solution vector using GridView = typename GET_PROP_TYPE(TypeTag, GridView); @@ -60,7 +61,12 @@ struct NavierStokesCommonIndices static constexpr int velocityYIdx = momentumBalanceIdx + 1; //!< Index of the velocity in a solution vector static constexpr int velocityZIdx = momentumBalanceIdx + 2; //!< Index of the velocity in a solution vector - static constexpr int velocity(int dirIdx) //!< Index of the velocity in a solution vector given a certain dimension + /*! + * \brief Index of the velocity in a solution vector given a certain direction. + * + * \param dirIdx The index of the direction. + */ + static constexpr int velocity(int dirIdx) { return dirIdx + momentumBalanceIdx; } diff --git a/dumux/freeflow/navierstokes/model.hh b/dumux/freeflow/navierstokes/model.hh index 6e58d4a18e9fac34b4cc8dc9d2f91882f4e8e6b6..abe2556271c31348c8f34d4c82673642b9033723 100644 --- a/dumux/freeflow/navierstokes/model.hh +++ b/dumux/freeflow/navierstokes/model.hh @@ -117,7 +117,7 @@ SET_TYPE_PROP(NavierStokes, FluxVariables, NavierStokesFluxVariables<TypeTag>); SET_TYPE_PROP(NavierStokes, FluxVariablesCache, FreeFlowFluxVariablesCache<TypeTag>); //! The indices required by the isothermal single-phase model -SET_TYPE_PROP(NavierStokes, Indices, NavierStokesCommonIndices<TypeTag>); +SET_TYPE_PROP(NavierStokes, Indices, NavierStokesIndices<TypeTag>); //! The specific vtk output fields SET_TYPE_PROP(NavierStokes, VtkOutputFields, NavierStokesVtkOutputFields<TypeTag>); @@ -126,7 +126,7 @@ SET_TYPE_PROP(NavierStokes, VtkOutputFields, NavierStokesVtkOutputFields<TypeTag // Property values for isothermal model required for the general non-isothermal model ////////////////////////////////////////////////////////////////// //! The indices required by the isothermal single-phase model -SET_TYPE_PROP(NavierStokesNI, IsothermalIndices, NavierStokesCommonIndices<TypeTag>); +SET_TYPE_PROP(NavierStokesNI, IsothermalIndices, NavierStokesIndices<TypeTag>); //! The specific isothermal vtk output fields SET_TYPE_PROP(NavierStokesNI, IsothermalVtkOutputFields, NavierStokesVtkOutputFields<TypeTag>); diff --git a/dumux/freeflow/navierstokesnc/indices.hh b/dumux/freeflow/navierstokesnc/indices.hh index f295926bbccc75f1240e3d73de06b33125808470..19a932bd9e9ff96c24db662717c4afdb2f701ec0 100644 --- a/dumux/freeflow/navierstokesnc/indices.hh +++ b/dumux/freeflow/navierstokesnc/indices.hh @@ -37,10 +37,10 @@ namespace Dumux * \tparam PVOffset The first index in a primary variable vector. */ template <class TypeTag, int PVOffset = 0> -struct NavierStokesNCIndices : public NavierStokesCommonIndices<TypeTag, PVOffset> +struct NavierStokesNCIndices : public NavierStokesIndices<TypeTag, PVOffset> { private: - using ParentType = NavierStokesCommonIndices<TypeTag, PVOffset>; + using ParentType = NavierStokesIndices<TypeTag, PVOffset>; public: