Loading [MathJax]/extensions/MathMenu.js
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-346-gb8b2fd539 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
SmallDeformationNonlocalProcessData.h
Go to the documentation of this file.
1
11
#pragma once
12
13
#include <Eigen/Core>
14
#include <memory>
15
#include <utility>
16
17
namespace
MaterialLib
18
{
19
namespace
Solids
20
{
21
template
<
int
DisplacementDim>
22
struct
MechanicsBase;
23
}
24
}
// namespace MaterialLib
25
namespace
ProcessLib
26
{
27
namespace
SmallDeformationNonlocal
28
{
29
template
<
int
DisplacementDim>
30
struct
SmallDeformationNonlocalProcessData
31
{
32
MeshLib::PropertyVector<int>
const
*
const
material_ids
=
nullptr
;
33
34
std::map<int, std::shared_ptr<
35
MaterialLib::Solids::MechanicsBase<DisplacementDim>
>>
36
solid_materials
;
38
ParameterLib::Parameter<double>
const
&
solid_density
;
42
Eigen::Matrix<double, DisplacementDim, 1>
const
specific_body_force
;
43
44
double
const
reference_temperature
=
45
std::numeric_limits<double>::quiet_NaN();
46
double
const
internal_length_squared
=
47
std::numeric_limits<double>::quiet_NaN();
48
49
double
crack_volume_old
= 0.0;
50
double
crack_volume
= 0.0;
51
52
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
;
53
};
30
struct
SmallDeformationNonlocalProcessData
{
…
};
54
55
}
// namespace SmallDeformationNonlocal
56
}
// namespace ProcessLib
MeshLib::PropertyVector
Definition
TwoPhaseFlowWithPrhoMaterialProperties.h:28
MaterialLib
Definition
ConstantFluidProperty.h:18
ProcessLib
Definition
ProjectData.h:51
MaterialLib::Solids::MechanicsBase
Definition
ThermoMechanicsProcessData.h:25
ParameterLib::Parameter
Definition
WellboreGeometry.h:23
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData
Definition
SmallDeformationNonlocalProcessData.h:31
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::EIGEN_MAKE_ALIGNED_OPERATOR_NEW
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Definition
SmallDeformationNonlocalProcessData.h:52
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::crack_volume
double crack_volume
Definition
SmallDeformationNonlocalProcessData.h:50
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::reference_temperature
double const reference_temperature
Definition
SmallDeformationNonlocalProcessData.h:44
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::internal_length_squared
double const internal_length_squared
Definition
SmallDeformationNonlocalProcessData.h:46
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::crack_volume_old
double crack_volume_old
Definition
SmallDeformationNonlocalProcessData.h:49
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::specific_body_force
Eigen::Matrix< double, DisplacementDim, 1 > const specific_body_force
Definition
SmallDeformationNonlocalProcessData.h:42
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::solid_materials
std::map< int, std::shared_ptr< MaterialLib::Solids::MechanicsBase< DisplacementDim > > > solid_materials
Definition
SmallDeformationNonlocalProcessData.h:36
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::solid_density
ParameterLib::Parameter< double > const & solid_density
Solid's density. A scalar quantity, ParameterLib::Parameter<double>.
Definition
SmallDeformationNonlocalProcessData.h:38
ProcessLib::SmallDeformationNonlocal::SmallDeformationNonlocalProcessData::material_ids
MeshLib::PropertyVector< int > const *const material_ids
Definition
SmallDeformationNonlocalProcessData.h:32
ProcessLib
SmallDeformationNonlocal
SmallDeformationNonlocalProcessData.h
Generated by
1.11.0