Loading [MathJax]/extensions/tex2jax.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
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-430-g8700c451a0f 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
►
SteadyStateDiffusion
►
StokesFlow
►
SurfaceFlux
►
TES
►
TH2M
►
ThermalTwoPhaseFlowWithPP
►
ThermoHydroMechanics
►
ThermoMechanicalPhaseField
►
ThermoMechanics
▼
ThermoRichardsFlow
►
CreateSimplifiedElasticityModel.cpp
►
CreateSimplifiedElasticityModel.h
►
CreateThermoRichardsFlowProcess.cpp
►
CreateThermoRichardsFlowProcess.h
►
HydrostaticElasticityModel.h
►
IntegrationPointData.h
►
LocalAssemblerInterface.h
►
RigidElasticityModel.h
►
SimplifiedElasticityModel.h
ThermoRichardsFlowFEM-impl.h
►
ThermoRichardsFlowFEM.h
ThermoRichardsFlowProcess.cpp
►
ThermoRichardsFlowProcess.h
►
ThermoRichardsFlowProcessData.h
►
UniaxialElasticityModel.h
►
UserDefinedElasticityModel.h
►
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
ThermoRichardsFlowProcessData.h
Go to the documentation of this file.
1
11
#pragma once
12
13
#include <Eigen/Core>
14
#include <memory>
15
16
#include "
MaterialLib/MPL/MaterialSpatialDistributionMap.h
"
17
#include "
SimplifiedElasticityModel.h
"
18
19
namespace
ProcessLib
20
{
21
namespace
ThermoRichardsFlow
22
{
23
struct
ThermoRichardsFlowProcessData
24
{
25
MaterialPropertyLib::MaterialSpatialDistributionMap
media_map
;
26
30
Eigen::VectorXd
const
specific_body_force
;
31
32
bool
const
apply_mass_lumping
;
33
std::unique_ptr<SimplifiedElasticityModel>
simplified_elasticity
=
nullptr
;
34
35
MeshLib::PropertyVector<double>
*
element_saturation
=
nullptr
;
36
MeshLib::PropertyVector<double>
*
element_porosity
=
nullptr
;
37
38
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
;
39
};
23
struct
ThermoRichardsFlowProcessData
{
…
};
40
41
}
// namespace ThermoRichardsFlow
42
}
// namespace ProcessLib
MaterialSpatialDistributionMap.h
SimplifiedElasticityModel.h
MaterialPropertyLib::MaterialSpatialDistributionMap
Definition
MaterialSpatialDistributionMap.h:30
MeshLib::PropertyVector
Definition
TwoPhaseFlowWithPrhoMaterialProperties.h:28
ProcessLib
Definition
ProjectData.h:51
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData
Definition
ThermoRichardsFlowProcessData.h:24
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::apply_mass_lumping
bool const apply_mass_lumping
Definition
ThermoRichardsFlowProcessData.h:32
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::media_map
MaterialPropertyLib::MaterialSpatialDistributionMap media_map
Definition
ThermoRichardsFlowProcessData.h:25
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::EIGEN_MAKE_ALIGNED_OPERATOR_NEW
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Definition
ThermoRichardsFlowProcessData.h:38
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::specific_body_force
Eigen::VectorXd const specific_body_force
Definition
ThermoRichardsFlowProcessData.h:30
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::element_saturation
MeshLib::PropertyVector< double > * element_saturation
Definition
ThermoRichardsFlowProcessData.h:35
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::element_porosity
MeshLib::PropertyVector< double > * element_porosity
Definition
ThermoRichardsFlowProcessData.h:36
ProcessLib::ThermoRichardsFlow::ThermoRichardsFlowProcessData::simplified_elasticity
std::unique_ptr< SimplifiedElasticityModel > simplified_elasticity
Definition
ThermoRichardsFlowProcessData.h:33
ProcessLib
ThermoRichardsFlow
ThermoRichardsFlowProcessData.h
Generated by
1.12.0