version 3.8
circleaveragepointsourcetraits.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//
13#ifndef DUMUX_MULTIDOMAIN_EMBEDDED_CIRCLE_AVERAGE_POINT_SOURCE_TRAITS_HH
14#define DUMUX_MULTIDOMAIN_EMBEDDED_CIRCLE_AVERAGE_POINT_SOURCE_TRAITS_HH
15
20
21namespace Dumux {
22
24template<class MDTraits>
26{
27private:
28 template<std::size_t i> using SubDomainTypeTag = typename MDTraits::template SubDomain<i>::TypeTag;
29 template<std::size_t i> using GridGeometry = GetPropType<SubDomainTypeTag<i>, Properties::GridGeometry>;
30 template<std::size_t i> using NumEqVector = Dumux::NumEqVector<GetPropType<SubDomainTypeTag<i>, Properties::PrimaryVariables>>;
31public:
33 template<std::size_t i>
35
37 template<std::size_t i>
39
42};
43
44} // end namespace Dumux
45
46#endif
A helper class calculating a DOF-index to point source map.
Definition: integrationpointsource.hh:100
An integration point source class with an identifier to attach data and a quadrature weight and integ...
Definition: integrationpointsource.hh:33
A point source data class used for integration in multidimensional models.
Definition: pointsourcedata.hh:139
Defines all properties used in Dumux.
typename NumEqVectorTraits< PrimaryVariables >::type NumEqVector
A vector with the same size as numbers of equations This is the default implementation and has to be ...
Definition: numeqvector.hh:34
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
An integration point source class, i.e. sources located at a single point in space associated with a ...
Definition: adapt.hh:17
A helper to deduce a vector with the same size as numbers of equations.
Data associated with a point source.
point source traits for the circle average coupling mode
Definition: circleaveragepointsourcetraits.hh:26