3.3.0
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
couplingmanager1d3d.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 * See the file COPYING for full copying permissions. *
5 * *
6 * This program is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 *****************************************************************************/
25#ifndef DUMUX_MULTIDOMAIN_EMBEDDED_COUPLINGMANAGER_1D3D_HH
26#define DUMUX_MULTIDOMAIN_EMBEDDED_COUPLINGMANAGER_1D3D_HH
27
28namespace Dumux {
29
35template<class MDTraits, class CouplingMode>
37
45
46// deprecated and will be removed after 3.3
47template<class MDTraits, EmbeddedCouplingMode mode>
49
50} // end namespace Dumux
51
56
57// TODO: remove this part after the release 3.3
58namespace Dumux {
59
60template<class MDTraits>
61struct [[deprecated("Removed after 3.3. Use Embedded1d3dCouplingManager.")]] EmbeddedCouplingManager1d3d<MDTraits, EmbeddedCouplingMode::line>
62: public Embedded1d3dCouplingManager<MDTraits, Embedded1d3dCouplingMode::Line> {
65};
66
67template<class MDTraits>
68struct [[deprecated("Removed after 3.3. Use Embedded1d3dCouplingManager.")]] EmbeddedCouplingManager1d3d<MDTraits, EmbeddedCouplingMode::average>
69: public Embedded1d3dCouplingManager<MDTraits, Embedded1d3dCouplingMode::Average> {
72};
73
74template<class MDTraits>
75struct [[deprecated("Removed after 3.3. Use Embedded1d3dCouplingManager.")]] EmbeddedCouplingManager1d3d<MDTraits, EmbeddedCouplingMode::cylindersources>
76: public Embedded1d3dCouplingManager<MDTraits, Embedded1d3dCouplingMode::Surface> {
79};
80
81template<class MDTraits>
82struct [[deprecated("Removed after 3.3. Use Embedded1d3dCouplingManager.")]] EmbeddedCouplingManager1d3d<MDTraits, EmbeddedCouplingMode::kernel>
83: public Embedded1d3dCouplingManager<MDTraits, Embedded1d3dCouplingMode::Kernel> {
86};
87
88} // end namespace Dumux
89
90#endif
Coupling manager for low-dimensional domains embedded in the bulk domain.
Coupling manager for low-dimensional domains embedded in the bulk domain.
Coupling manager for low-dimensional domains embedded in the bulk domain.
Coupling manager for low-dimensional domains embedded in the bulk domain.
EmbeddedCouplingMode
The coupling mode.
Definition: couplingmanager1d3d.hh:44
Definition: adapt.hh:29
constexpr Average average
Definition: couplingmanager1d3d_average.hh:60
constexpr Kernel kernel
Definition: couplingmanager1d3d_kernel.hh:58
constexpr Line line
Definition: couplingmanager1d3d_line.hh:52
Manages the coupling between bulk elements and lower dimensional elements Point sources on each integ...
Definition: couplingmanager1d3d.hh:36
Definition: couplingmanager1d3d.hh:48
Manages the coupling between bulk elements and lower dimensional elements Point sources on each integ...
Definition: couplingmanager1d3d_average.hh:77
Manages the coupling between bulk elements and lower dimensional elements Point sources on each integ...
Definition: couplingmanager1d3d_kernel.hh:74
Manages the coupling between bulk elements and lower dimensional elements Point sources on each integ...
Definition: couplingmanager1d3d_line.hh:70
Manages the coupling between bulk elements and lower dimensional elements Point sources on each integ...
Definition: couplingmanager1d3d_surface.hh:75
Manages the coupling between bulk elements and lower dimensional elements Point sources on each integ...
Definition: couplingmanagerbase.hh:78