OGS
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
l
m
n
p
r
s
t
v
y
Classes
Class List
Class Index
Class Hierarchy
Files
File List
File Members
All
a
b
c
d
e
f
g
i
k
m
n
o
p
r
s
t
v
w
x
Functions
a
c
d
e
f
g
i
m
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Macros
b
c
g
m
n
o
p
r
s
t
▼
OGS
►
OpenGeoSys 6.5.4-381-g13aa759ac source code documentation
►
OGS CTests—Project Files
►
OGS Input File Parameters—Quality Assurance
►
OGS Input File Parameters
BulkMappingDocuPage
Todo List
OGS Input File Parameters—List of incomplete documentation pages
Bibliography
►
Namespaces
►
Classes
▼
Files
▼
File List
►
Applications
►
BaseLib
►
build
►
ChemistryLib
Documentation
►
GeoLib
►
InfoLib
►
MaterialLib
►
MathLib
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
▼
NumLib
►
Assembler
►
DOF
►
Extrapolation
▼
Fem
►
CoordinatesMapping
►
FiniteElement
▼
Integration
►
GaussLegendreIntegrationPolicy.h
►
GenericIntegrationMethod.h
►
IntegrationGaussLegendrePrism.cpp
►
IntegrationGaussLegendrePrism.h
►
IntegrationGaussLegendrePyramid.h
IntegrationGaussLegendreRegular-impl.h
►
IntegrationGaussLegendreRegular.h
►
IntegrationGaussLegendreTet.h
►
IntegrationGaussLegendreTri.h
►
IntegrationMethodProvider.h
►
IntegrationMethodRegistry.cpp
►
IntegrationMethodRegistry.h
►
IntegrationPoint.h
►
ShapeFunction
►
AverageGradShapeFunction.h
►
InitShapeMatrices.h
►
Interpolation.h
►
ReferenceElement.h
►
ShapeMatrixCache.cpp
►
ShapeMatrixCache.h
►
ShapeMatrixPolicy.h
►
NumericalStability
►
ODESolver
►
StaggeredCoupling
►
TimeStepping
►
CreateNewtonRaphsonSolverParameters.cpp
►
CreateNewtonRaphsonSolverParameters.h
►
Exceptions.h
►
IndexValueVector.h
►
NewtonRaphson.h
►
NumericalDifferentiation.h
►
NumericsConfig.h
►
ParameterLib
►
ProcessLib
►
File Members
IntegrationMethodProvider.h
Go to the documentation of this file.
1
11
#pragma once
12
13
#include "
IntegrationMethodRegistry.h
"
14
#include "
MeshLib/Elements/Quad.h
"
15
16
namespace
NumLib
17
{
20
template
<
typename
T>
21
concept
IntegrationMethodProvider
=
requires
(T t)
22
{
23
{
24
// using Quad as a representative mesh element type
25
t.template getIntegrationMethod<MeshLib::Quad>(
26
std::declval<MeshLib::Element>())
27
} -> std::same_as<GenericIntegrationMethod const&>;
28
};
21
concept
IntegrationMethodProvider
=
requires
(T t) {
…
}
29
32
class
DefaultIntegrationMethodProvider
33
{
34
public
:
35
explicit
DefaultIntegrationMethodProvider
(
36
IntegrationOrder
const
integration_order)
37
:
integration_order_
{integration_order}
38
{
39
}
35
explicit
DefaultIntegrationMethodProvider
( {
…
}
40
41
template
<
typename
MeshElement>
42
GenericIntegrationMethod
const
&
getIntegrationMethod
(
43
MeshLib::Element
const
&
/*e*/
)
const
44
{
45
return
IntegrationMethodRegistry::template
getIntegrationMethod
<
46
MeshElement>(
integration_order_
);
47
}
42
GenericIntegrationMethod
const
&
getIntegrationMethod
( {
…
}
48
49
private
:
50
IntegrationOrder
integration_order_
;
51
};
32
class
DefaultIntegrationMethodProvider
{
…
};
52
55
inline
DefaultIntegrationMethodProvider
getIntegrationMethodProvider
(
56
NumLib::IntegrationOrder
const
integration_order)
57
{
58
return
DefaultIntegrationMethodProvider
{integration_order};
59
}
55
inline
DefaultIntegrationMethodProvider
getIntegrationMethodProvider
( {
…
}
60
61
}
// namespace NumLib
IntegrationMethodRegistry.h
Quad.h
Definition of the Quad class.
MeshLib::Element
Definition
Element.h:34
NumLib::DefaultIntegrationMethodProvider
Definition
IntegrationMethodProvider.h:33
NumLib::DefaultIntegrationMethodProvider::DefaultIntegrationMethodProvider
DefaultIntegrationMethodProvider(IntegrationOrder const integration_order)
Definition
IntegrationMethodProvider.h:35
NumLib::DefaultIntegrationMethodProvider::integration_order_
IntegrationOrder integration_order_
Definition
IntegrationMethodProvider.h:50
NumLib::DefaultIntegrationMethodProvider::getIntegrationMethod
GenericIntegrationMethod const & getIntegrationMethod(MeshLib::Element const &) const
Definition
IntegrationMethodProvider.h:42
NumLib::GenericIntegrationMethod
Definition
GenericIntegrationMethod.h:24
NumLib::IntegrationMethodProvider
Definition
IntegrationMethodProvider.h:21
NumLib
Definition
ProjectData.h:46
NumLib::getIntegrationMethodProvider
DefaultIntegrationMethodProvider getIntegrationMethodProvider(NumLib::IntegrationOrder const integration_order)
Definition
IntegrationMethodProvider.h:55
NumLib::IntegrationOrder
Definition
IntegrationMethodRegistry.h:21
NumLib
Fem
Integration
IntegrationMethodProvider.h
Generated by
1.12.0