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-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
►
ParameterLib
▼
ProcessLib
►
Assembly
►
BoundaryConditionAndSourceTerm
►
Common
►
ComponentTransport
►
ConstitutiveRelations
►
Deformation
►
Graph
►
HeatConduction
►
HeatTransportBHE
►
HT
►
HydroMechanics
►
LargeDeformation
►
LIE
►
LiquidFlow
►
Output
►
PhaseField
►
Reflection
►
RichardsComponentTransport
►
RichardsFlow
►
RichardsMechanics
►
SmallDeformation
►
SmallDeformationNonlocal
►
SteadyStateDiffusion
►
StokesFlow
►
SurfaceFlux
►
TES
►
TH2M
►
ThermalTwoPhaseFlowWithPP
►
ThermoHydroMechanics
►
ThermoMechanicalPhaseField
►
ThermoMechanics
►
ThermoRichardsFlow
►
ThermoRichardsMechanics
►
TwoPhaseFlowWithPP
▼
TwoPhaseFlowWithPrho
►
CreateTwoPhaseFlowPrhoMaterialProperties.cpp
►
CreateTwoPhaseFlowPrhoMaterialProperties.h
►
CreateTwoPhaseFlowWithPrhoProcess.cpp
►
CreateTwoPhaseFlowWithPrhoProcess.h
TwoPhaseFlowWithPrhoLocalAssembler-impl.h
►
TwoPhaseFlowWithPrhoLocalAssembler.h
TwoPhaseFlowWithPrhoMaterialProperties.cpp
►
TwoPhaseFlowWithPrhoMaterialProperties.h
TwoPhaseFlowWithPrhoProcess.cpp
►
TwoPhaseFlowWithPrhoProcess.h
►
TwoPhaseFlowWithPrhoProcessData.h
►
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
TwoPhaseFlowWithPrhoProcessData.h
Go to the documentation of this file.
1
11
#pragma once
12
#include "
MaterialLib/MPL/MaterialSpatialDistributionMap.h
"
13
#include "
TwoPhaseFlowWithPrhoMaterialProperties.h
"
14
15
namespace
ProcessLib
16
{
17
template
<
typename
T>
18
struct
Parameter
;
19
20
namespace
TwoPhaseFlowWithPrho
21
{
22
struct
TwoPhaseFlowWithPrhoProcessData
23
{
24
Eigen::VectorXd
const
_specific_body_force
;
25
26
bool
const
_has_gravity
;
27
bool
const
_has_mass_lumping
;
28
ParameterLib::Parameter<double>
const
&
_diffusion_coeff_component_b
;
29
ParameterLib::Parameter<double>
const
&
_diffusion_coeff_component_a
;
30
ParameterLib::Parameter<double>
const
&
_temperature
;
31
std::unique_ptr<TwoPhaseFlowWithPrhoMaterialProperties>
_material
;
32
MaterialPropertyLib::MaterialSpatialDistributionMap
media_map
;
33
};
22
struct
TwoPhaseFlowWithPrhoProcessData
{
…
};
34
35
}
// namespace TwoPhaseFlowWithPrho
36
}
// namespace ProcessLib
MaterialSpatialDistributionMap.h
TwoPhaseFlowWithPrhoMaterialProperties.h
MaterialPropertyLib::MaterialSpatialDistributionMap
Definition
MaterialSpatialDistributionMap.h:30
ProcessLib
Definition
ProjectData.h:51
ParameterLib::Parameter
Definition
WellboreGeometry.h:23
ProcessLib::Parameter
Definition
TwoPhaseFlowWithPrhoProcessData.h:18
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData
Definition
TwoPhaseFlowWithPrhoProcessData.h:23
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_specific_body_force
Eigen::VectorXd const _specific_body_force
Definition
TwoPhaseFlowWithPrhoProcessData.h:24
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_temperature
ParameterLib::Parameter< double > const & _temperature
Definition
TwoPhaseFlowWithPrhoProcessData.h:30
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_material
std::unique_ptr< TwoPhaseFlowWithPrhoMaterialProperties > _material
Definition
TwoPhaseFlowWithPrhoProcessData.h:31
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_diffusion_coeff_component_a
ParameterLib::Parameter< double > const & _diffusion_coeff_component_a
Definition
TwoPhaseFlowWithPrhoProcessData.h:29
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_has_mass_lumping
bool const _has_mass_lumping
Definition
TwoPhaseFlowWithPrhoProcessData.h:27
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_has_gravity
bool const _has_gravity
Definition
TwoPhaseFlowWithPrhoProcessData.h:26
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::_diffusion_coeff_component_b
ParameterLib::Parameter< double > const & _diffusion_coeff_component_b
Definition
TwoPhaseFlowWithPrhoProcessData.h:28
ProcessLib::TwoPhaseFlowWithPrho::TwoPhaseFlowWithPrhoProcessData::media_map
MaterialPropertyLib::MaterialSpatialDistributionMap media_map
Definition
TwoPhaseFlowWithPrhoProcessData.h:32
ProcessLib
TwoPhaseFlowWithPrho
TwoPhaseFlowWithPrhoProcessData.h
Generated by
1.11.0