version 3.8
forchheimerslaw_fwd.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//
15#ifndef DUMUX_FLUX_FORCHHEIMERS_LAW_FWD_HH
16#define DUMUX_FLUX_FORCHHEIMERS_LAW_FWD_HH
17
21
22namespace Dumux {
23
24// definition of primary template
25template <class TypeTag, class VelocityLaw, class DiscretizationMethod>
27{
28 static_assert(
31 "Forchheimer only implemented for cctpfa or box!"
32 );
33};
34
41template <class TypeTag>
43 TypeTag,
48 >,
50>;
51
52} // end namespace Dumux
53
54#endif
Forchheimer's law For a detailed description see dumux/flow/forchheimerslaw.hh.
Definition: forchheimervelocity.hh:39
forward declare
Definition: forchheimerslaw_fwd.hh:27
Defines all properties used in Dumux.
Forchheimer's law This file contains the calculation of the Forchheimer velocity for a given Darcy ve...
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
The available discretization methods in Dumux.
constexpr CCTpfa cctpfa
Definition: method.hh:145
constexpr Box box
Definition: method.hh:147
Definition: adapt.hh:17