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-293-gce72897f 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
►
ParameterLib
▼
ProcessLib
►
Assembly
►
BoundaryConditionAndSourceTerm
►
Common
►
ComponentTransport
►
ConstitutiveRelations
►
Deformation
►
Graph
►
HeatConduction
►
HeatTransportBHE
►
HMPhaseField
►
HT
►
HydroMechanics
►
LargeDeformation
►
LIE
►
LiquidFlow
►
Output
►
PhaseField
►
Reflection
►
RichardsComponentTransport
►
RichardsFlow
►
RichardsMechanics
►
SmallDeformation
▼
SmallDeformationNonlocal
►
CreateSmallDeformationNonlocalProcess.cpp
►
CreateSmallDeformationNonlocalProcess.h
►
Damage.h
►
IntegrationPointData.h
►
IntegrationPointDataNonlocalInterface.h
►
LocalAssemblerInterface.h
►
SmallDeformationNonlocalFEM.h
SmallDeformationNonlocalProcess.cpp
►
SmallDeformationNonlocalProcess.h
►
SmallDeformationNonlocalProcessData.h
►
SteadyStateDiffusion
►
StokesFlow
►
SurfaceFlux
►
TES
►
TH2M
►
ThermalTwoPhaseFlowWithPP
►
ThermoHydroMechanics
►
ThermoMechanicalPhaseField
►
ThermoMechanics
►
ThermoRichardsFlow
►
ThermoRichardsMechanics
►
TwoPhaseFlowWithPP
►
TwoPhaseFlowWithPrho
►
Utils
►
WellboreSimulator
►
AbstractJacobianAssembler.h
AnalyticalJacobianAssembler.cpp
►
AnalyticalJacobianAssembler.h
►
AssemblyMixin.cpp
►
AssemblyMixin.h
►
CentralDifferencesJacobianAssembler.cpp
►
CentralDifferencesJacobianAssembler.h
►
CompareJacobiansJacobianAssembler.cpp
►
CompareJacobiansJacobianAssembler.h
►
CoupledSolutionsForStaggeredScheme.cpp
►
CoupledSolutionsForStaggeredScheme.h
►
CreateDeactivatedSubdomain.cpp
►
CreateDeactivatedSubdomain.h
►
CreateForwardDifferencesJacobianAssembler.cpp
►
CreateForwardDifferencesJacobianAssembler.h
►
CreateJacobianAssembler.cpp
►
CreateJacobianAssembler.h
►
CreateProcessData.cpp
►
CreateProcessData.h
►
CreateTimeLoop.cpp
►
CreateTimeLoop.h
DeactivatedSubdomain.cpp
►
DeactivatedSubdomain.h
ForwardDifferencesJacobianAssembler.cpp
►
ForwardDifferencesJacobianAssembler.h
LocalAssemblerInterface.cpp
►
LocalAssemblerInterface.h
►
LocalAssemblerTraits.h
►
Process.cpp
►
Process.h
►
ProcessData.cpp
►
ProcessData.h
►
ProcessVariable.cpp
►
ProcessVariable.h
►
SubmeshAssemblySupport.h
►
TimeLoop.cpp
►
TimeLoop.h
►
VariableTransformation.h
VectorMatrixAssembler.cpp
►
VectorMatrixAssembler.h
►
File Members
IntegrationPointDataNonlocalInterface.h
Go to the documentation of this file.
1
11
#pragma once
12
13
namespace
ProcessLib
14
{
15
namespace
SmallDeformationNonlocal
16
{
17
struct
IntegrationPointDataNonlocalInterface;
18
19
struct
NonlocalIP
final
20
{
21
IntegrationPointDataNonlocalInterface
*
const
ip_l_pointer
;
22
double
alpha_kl_times_w_l
;
23
double
distance2
;
24
};
19
struct
NonlocalIP
final {
…
};
25
26
struct
IntegrationPointDataNonlocalInterface
27
{
28
virtual
~IntegrationPointDataNonlocalInterface
() =
default
;
29
30
std::vector<NonlocalIP>
non_local_assemblers
;
31
32
double
kappa_d
= 0;
33
double
integration_weight
;
34
double
nonlocal_internal_length
;
35
Eigen::Vector3d
coordinates
;
36
bool
active_self
=
false
;
37
bool
activated
=
false
;
38
39
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
;
40
};
26
struct
IntegrationPointDataNonlocalInterface
{
…
};
41
}
// namespace SmallDeformationNonlocal
42
}
// namespace ProcessLib
ProcessLib
Definition
ProjectData.h:51
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface
Definition
IntegrationPointDataNonlocalInterface.h:27
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::EIGEN_MAKE_ALIGNED_OPERATOR_NEW
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Definition
IntegrationPointDataNonlocalInterface.h:39
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::integration_weight
double integration_weight
Definition
IntegrationPointDataNonlocalInterface.h:33
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::kappa_d
double kappa_d
damage driving variable.
Definition
IntegrationPointDataNonlocalInterface.h:32
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::~IntegrationPointDataNonlocalInterface
virtual ~IntegrationPointDataNonlocalInterface()=default
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::coordinates
Eigen::Vector3d coordinates
Definition
IntegrationPointDataNonlocalInterface.h:35
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::active_self
bool active_self
Definition
IntegrationPointDataNonlocalInterface.h:36
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::non_local_assemblers
std::vector< NonlocalIP > non_local_assemblers
Definition
IntegrationPointDataNonlocalInterface.h:30
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::nonlocal_internal_length
double nonlocal_internal_length
Definition
IntegrationPointDataNonlocalInterface.h:34
ProcessLib::SmallDeformationNonlocal::IntegrationPointDataNonlocalInterface::activated
bool activated
Definition
IntegrationPointDataNonlocalInterface.h:37
ProcessLib::SmallDeformationNonlocal::NonlocalIP
Definition
IntegrationPointDataNonlocalInterface.h:20
ProcessLib::SmallDeformationNonlocal::NonlocalIP::distance2
double distance2
Squared distance to current integration point.
Definition
IntegrationPointDataNonlocalInterface.h:23
ProcessLib::SmallDeformationNonlocal::NonlocalIP::alpha_kl_times_w_l
double alpha_kl_times_w_l
Definition
IntegrationPointDataNonlocalInterface.h:22
ProcessLib::SmallDeformationNonlocal::NonlocalIP::ip_l_pointer
IntegrationPointDataNonlocalInterface *const ip_l_pointer
Definition
IntegrationPointDataNonlocalInterface.h:21
ProcessLib
SmallDeformationNonlocal
IntegrationPointDataNonlocalInterface.h
Generated by
1.12.0