version 3.11-dev
Loading...
Searching...
No Matches
multidomain/boundary/freeflowporousmedium/ffmomentumpm/couplingmanager.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-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12
13#ifndef DUMUX_MULTIDOMAIN_BOUNDARY_FFPM_FFMMOMENTUMPM_COUPLINGMANAGER_HH
14#define DUMUX_MULTIDOMAIN_BOUNDARY_FFPM_FFMMOMENTUMPM_COUPLINGMANAGER_HH
15
18
20
21namespace Dumux {
22
23#ifndef DOXYGEN
24namespace FreeFlowMomentumPorousMediumDetail {
25
26// declaration (specialize for different discretization types)
27template<class MDTraits,
28 class DiscFFMomentum = typename GetPropType<typename MDTraits::template SubDomainTypeTag<0>, Properties::GridGeometry>::DiscretizationMethod,
29 class DiscPM = typename GetPropType<typename MDTraits::template SubDomainTypeTag<1>, Properties::GridGeometry>::DiscretizationMethod
30 >
31struct FreeFlowMomentumPorousMediumCouplingManagerSelector;
32
33template<class MDTraits>
34struct FreeFlowMomentumPorousMediumCouplingManagerSelector<MDTraits, DiscretizationMethods::FCStaggered, DiscretizationMethods::CCTpfa>
35{ using type = FFMomentumPMCouplingManagerStaggeredCCTpfa<MDTraits>; };
36
37} // end namespace FreeFlowMomentumPorousMediumDetail
38#endif // DOXYGEN
39
40template<class MDTraits>
41using FreeFlowMomentumPorousMediumCouplingManager = typename FreeFlowMomentumPorousMediumDetail::FreeFlowMomentumPorousMediumCouplingManagerSelector<MDTraits>::type;
42
43} // end namespace Dumux
44
45#endif
Defines all properties used in Dumux.
Coupling manager for Stokes and Darcy domains with equal dimension specialization for staggered-cctpf...
The available discretization methods in Dumux.
Definition adapt.hh:17
typename FreeFlowMomentumPorousMediumDetail::FreeFlowMomentumPorousMediumCouplingManagerSelector< MDTraits >::type FreeFlowMomentumPorousMediumCouplingManager
Definition multidomain/boundary/freeflowporousmedium/ffmomentumpm/couplingmanager.hh:41