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
x
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-57-g3814f0097c 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
IntegrationMethodRegistry.h
Go to the documentation of this file.
1
10
#pragma once
11
12
#include <typeindex>
13
14
#include "
GenericIntegrationMethod.h
"
15
16
namespace
NumLib
17
{
20
struct
IntegrationOrder
21
{
22
explicit
IntegrationOrder
(
unsigned
const
order_) :
order
{order_} {}
23
24
unsigned
order
;
25
};
20
struct
IntegrationOrder
{
…
};
26
27
namespace
IntegrationMethodRegistry
28
{
31
GenericIntegrationMethod
const
&
getIntegrationMethod
(
32
std::type_index
const
mesh_element_type,
IntegrationOrder
const
order);
33
35
template
<
typename
MeshElement>
36
GenericIntegrationMethod
const
&
getIntegrationMethod
(
37
IntegrationOrder
const
order)
38
{
39
return
getIntegrationMethod
(std::type_index(
typeid
(MeshElement)), order);
40
}
36
GenericIntegrationMethod
const
&
getIntegrationMethod
( {
…
}
41
}
// namespace IntegrationMethodRegistry
42
}
// namespace NumLib
GenericIntegrationMethod.h
NumLib::GenericIntegrationMethod
Definition
GenericIntegrationMethod.h:24
NumLib::IntegrationMethodRegistry::getIntegrationMethod
GenericIntegrationMethod const & getIntegrationMethod(std::type_index const mesh_element_type, IntegrationOrder const order)
Definition
IntegrationMethodRegistry.cpp:175
NumLib
Definition
ProjectData.h:46
NumLib::IntegrationOrder
Definition
IntegrationMethodRegistry.h:21
NumLib::IntegrationOrder::order
unsigned order
Definition
IntegrationMethodRegistry.h:24
NumLib::IntegrationOrder::IntegrationOrder
IntegrationOrder(unsigned const order_)
Definition
IntegrationMethodRegistry.h:22
NumLib
Fem
Integration
IntegrationMethodRegistry.h
Generated by
1.11.0