version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
box.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//
13#ifndef DUMUX_DISCRETIZTAION_BOX_HH
14#define DUMUX_DISCRETIZTAION_BOX_HH
15
16#include <concepts>
17#include <type_traits>
18
19#include <dune/common/fvector.hh>
20#include <dune/geometry/multilineargeometry.hh>
21
25
27
32
39
41
42namespace Dumux::Properties {
43
45// Create new type tags
46namespace TTag {
47struct BoxModel { using InheritsFrom = std::tuple<FiniteVolumeModel>; };
48} // end namespace TTag
49
51template<class TypeTag>
52struct GridGeometry<TypeTag, TTag::BoxModel>
53{
54private:
55 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridGeometryCache>();
58public:
60};
61
63template<class TypeTag>
64struct GridVolumeVariables<TypeTag, TTag::BoxModel>
65{
66private:
67 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridVolumeVariablesCache>();
71public:
73};
74
76template<class TypeTag>
77struct GridFluxVariablesCache<TypeTag, TTag::BoxModel>
78{
79private:
80 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridFluxVariablesCache>();
82
84 using FluxVariablesCache = GetPropTypeOr<TypeTag,
85 Properties::FluxVariablesCache, FluxVariablesCaching::EmptyCache<Scalar>
86 >;
87public:
89};
90
92template<class TypeTag>
93struct FluxVariablesCache<TypeTag, TTag::BoxModel>
94{
95private:
98public:
100};
101
103template<class TypeTag>
104struct ElementBoundaryTypes<TypeTag, TTag::BoxModel>
105{
106private:
108 using BoundaryTypes = typename ProblemTraits<Problem>::BoundaryTypes;
109public:
111};
112
113} // namespace Dumux::Properties
114
115namespace Dumux::Detail {
116
117template<class Problem>
118struct ProblemTraits<Problem, DiscretizationMethods::Box>
119{
120private:
121 using GG = std::decay_t<decltype(std::declval<Problem>().gridGeometry())>;
122 using Element = typename GG::GridView::template Codim<0>::Entity;
123 using SubControlVolume = typename GG::SubControlVolume;
124public:
125 using GridGeometry = GG;
126 // BoundaryTypes is whatever the problem returns from boundaryTypes(element, scv)
127 using BoundaryTypes = std::decay_t<decltype(std::declval<Problem>().boundaryTypes(std::declval<Element>(), std::declval<SubControlVolume>()))>;
128};
129
130template<class GridView>
131struct LocalDofTraits<GridView, DiscretizationMethods::Box>
132{
133 static constexpr int dim = GridView::dimension;
134 // Dofs are located at the corners
135 static constexpr int numCubeElementDofs = (1<<dim);
136};
137
138template<class TypeTag>
139concept BoxModel = std::is_same_v<
140 typename GetPropType<TypeTag, Properties::GridGeometry>::DiscretizationMethod,
142>;
143
144template<BoxModel TypeTag>
146{
148};
149
150} // end namespace Dumux:Detail
151
152#endif
Boundary flag to store e.g. in sub control volume faces.
Base class for the finite volume geometry vector for box schemes This builds up the sub control volum...
Definition: discretization/box/fvgridgeometry.hh:74
This class stores an array of BoundaryTypes objects.
Definition: cvfe/elementboundarytypes.hh:28
Flux variables cache class for control-volume finite element schemes. For control-volume finite eleme...
Definition: discretization/cvfe/fluxvariablescache.hh:27
Flux variable caches on a gridview.
Definition: discretization/cvfe/gridfluxvariablescache.hh:46
Base class for the grid volume variables.
Definition: cvfe/gridvolumevariables.hh:42
The element-wise residual for control-volume finite element schemes.
Definition: cvfelocalresidual.hh:60
Defines all properties used in Dumux.
Type traits for problem classes.
Definition: box.hh:139
Boundary types gathered on an element.
The local element solution class for control-volume finite element methods.
The grid volume variables class for control-volume finite element methods.
Calculates the element-wise residual for control-volume finite element schemes.
The default local operator than can be specialized for each discretization scheme.
Base class for the finite volume geometry vector for box models This builds up the sub control volume...
Flux variables cache class for control-volume finite element schemes.
Global flux variable cache.
Classes related to flux variables caching.
Declares properties required for finite-volume models models.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
typename GetPropOr< TypeTag, Property, T >::type GetPropTypeOr
get the type alias defined in the property or the type T if the property is undefined
Definition: propertysystem.hh:303
Element-specific traits of grid geometries / discretization schemes.
The available discretization methods in Dumux.
Distance implementation details.
Definition: cvfelocalresidual.hh:25
CVFE< CVFEMethods::PQ1 > Box
Definition: method.hh:94
The energy balance equation for a porous solid.
Definition: common/properties.hh:26
Definition: cvfe/gridvolumevariables.hh:29
Definition: defaultlocaloperator.hh:19
Definition: localdoftraits.hh:18
std::decay_t< decltype(std::declval< Problem >().boundaryTypes(std::declval< Element >(), std::declval< SubControlVolume >()))> BoundaryTypes
Definition: box.hh:127
Definition: common/typetraits/problem.hh:23
An empty flux variables cache.
Definition: fluxvariablescaching.hh:35
typename Detail::template ProblemTraits< Problem, typename GridGeometry::DiscretizationMethod >::BoundaryTypes BoundaryTypes
Definition: common/typetraits/problem.hh:34
std::tuple< FiniteVolumeModel > InheritsFrom
Definition: box.hh:47