Loading [MathJax]/extensions/MathZoom.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-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
►
Adsorption
►
Fluid
►
FractureModels
▼
MPL
►
Components
►
Properties
▼
Utils
►
CheckMPLPhasesForSinglePhaseFlow.cpp
►
CheckMPLPhasesForSinglePhaseFlow.h
►
CheckVanGenuchtenExponentRange.cpp
►
CheckVanGenuchtenExponentRange.h
►
FormEffectiveThermalConductivity.cpp
►
FormEffectiveThermalConductivity.h
►
FormEigenTensor.cpp
►
FormEigenTensor.h
►
FormEigenVector.cpp
►
FormEigenVector.h
►
FormKelvinVector.cpp
►
FormKelvinVector.h
►
GetFluidDensityAndViscosity.cpp
►
GetFluidDensityAndViscosity.h
►
GetLiquidThermalExpansivity.cpp
►
GetLiquidThermalExpansivity.h
►
GetSymmetricTensor.cpp
►
GetSymmetricTensor.h
SigmoidFunction.cpp
►
SigmoidFunction.h
►
Tensor.h
►
CheckMaterialSpatialDistributionMap.h
►
Component.cpp
►
Component.h
►
CreateComponent.cpp
►
CreateComponent.h
►
CreateMaterialSpatialDistributionMap.cpp
►
CreateMaterialSpatialDistributionMap.h
►
CreateMedium.cpp
►
CreateMedium.h
►
CreatePhase.cpp
►
CreatePhase.h
►
CreateProperty.cpp
►
CreateProperty.h
MaterialSpatialDistributionMap.cpp
►
MaterialSpatialDistributionMap.h
►
Medium.cpp
►
Medium.h
►
Phase.cpp
►
Phase.h
►
Property.cpp
►
Property.h
►
PropertyType.cpp
►
PropertyType.h
►
VariableType.cpp
►
VariableType.h
►
PorousMedium
►
SolidModels
►
Utils
►
PhysicalConstant.h
►
MathLib
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
GetLiquidThermalExpansivity.cpp
Go to the documentation of this file.
1
13
#include "
GetLiquidThermalExpansivity.h
"
14
15
#include "
MaterialLib/MPL/Phase.h
"
16
17
namespace
MaterialPropertyLib
18
{
19
class
Phase;
20
21
double
getLiquidThermalExpansivity
(
Phase
const
& phase,
22
VariableArray
const
& vars,
23
const
double
density
,
24
ParameterLib::SpatialPosition
const
& pos,
25
double
const
t,
double
const
dt)
26
{
27
// The thermal expansivity is explicitly given in the project file.
28
if
(phase.
hasProperty
(
29
MaterialPropertyLib::PropertyType::thermal_expansivity
))
30
{
31
return
phase
32
.
property
(
MaterialPropertyLib::PropertyType::thermal_expansivity
)
33
.template value<double>(vars, pos, t, dt);
34
}
35
36
// The thermal expansivity calculated by the density model directly.
37
return
(
density
== 0.0)
38
? 0.0
39
: -phase.
property
(
MaterialPropertyLib::PropertyType::density
)
40
.template dValue<double>(
41
vars,
MaterialPropertyLib::Variable::temperature
,
42
pos, t, dt) /
43
density
;
44
}
21
double
getLiquidThermalExpansivity
(
Phase
const
& phase, {
…
}
45
}
// namespace MaterialPropertyLib
GetLiquidThermalExpansivity.h
Phase.h
MaterialPropertyLib::Phase
Definition
Phase.h:32
MaterialPropertyLib::Phase::property
Property const & property(PropertyType const &p) const
Definition
Phase.cpp:53
MaterialPropertyLib::Phase::hasProperty
bool hasProperty(PropertyType const &p) const
Definition
Phase.cpp:69
MaterialPropertyLib::VariableArray
Definition
VariableType.h:99
ParameterLib::SpatialPosition
Definition
SpatialPosition.h:28
MaterialPropertyLib
Definition
ChemicalSolverInterface.h:21
MaterialPropertyLib::Variable::temperature
@ temperature
MaterialPropertyLib::getLiquidThermalExpansivity
double getLiquidThermalExpansivity(Phase const &phase, VariableArray const &vars, const double density, ParameterLib::SpatialPosition const &pos, double const t, double const dt)
Definition
GetLiquidThermalExpansivity.cpp:21
MaterialPropertyLib::density
@ density
Definition
PropertyType.h:48
MaterialPropertyLib::thermal_expansivity
@ thermal_expansivity
Definition
PropertyType.h:102
MaterialLib
MPL
Utils
GetLiquidThermalExpansivity.cpp
Generated by
1.12.0