version 3.7
freeflow/navierstokes/momentum/diamond/model.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//
33#ifndef DUMUX_NAVIERSTOKES_MOMENTUM_DIAMOND_MODEL_HH
34#define DUMUX_NAVIERSTOKES_MOMENTUM_DIAMOND_MODEL_HH
35
36#warning "This file is deprecated and will be removed after 3.7. Use NavierStokesMomentumCVFE type tag."
37
39
41// properties for the single-phase Navier-Stokes model
43namespace Dumux::Properties {
44
45// Create new type tags
46namespace TTag {
48struct NavierStokesMomentumDiamond { using InheritsFrom = std::tuple<NavierStokesMomentumCVFE>; };
49} // end namespace TTag
50
51} // end namespace Dumux::Properties
52
53#endif
A single-phase, isothermal Navier-Stokes model.
Definition: common/properties.hh:26
The type tag for the single-phase, isothermal Navier-Stokes model.
Definition: freeflow/navierstokes/momentum/diamond/model.hh:48
std::tuple< NavierStokesMomentumCVFE > InheritsFrom
Definition: freeflow/navierstokes/momentum/diamond/model.hh:48