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
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
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.5-40-gc56730a46 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
►
BMatrixPolicy.h
►
GMatrix.h
►
GMatrixPolicy.h
►
LinearBMatrix.h
►
NonLinearBMatrix.h
►
NonLinearFbar.cpp
►
NonLinearFbar.h
►
SolidMaterialInternalToSecondaryVariables.h
►
Graph
►
HeatConduction
►
HeatTransportBHE
►
HMPhaseField
►
HT
►
HydroMechanics
►
LargeDeformation
►
LIE
►
LiquidFlow
►
Output
►
PhaseField
►
Reflection
►
RichardsComponentTransport
►
RichardsFlow
►
RichardsMechanics
►
SmallDeformation
►
SteadyStateDiffusion
►
SurfaceFlux
►
TH2M
►
ThermalTwoPhaseFlowWithPP
►
ThermoHydroMechanics
►
ThermoMechanics
►
ThermoRichardsFlow
►
ThermoRichardsMechanics
►
TwoPhaseFlowWithPP
►
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
NonLinearFbar.cpp
Go to the documentation of this file.
1
12
#include "
NonLinearFbar.h
"
13
14
namespace
ProcessLib
15
{
16
namespace
NonLinearFbar
17
{
18
19
BarDetFType
convertStringToDetFBarType
(
20
std::string_view
const
bar_det_f_type_name)
21
{
22
if
(boost::iequals(bar_det_f_type_name,
"element_center_value"
))
23
{
24
INFO
(
25
"Use F bar method with the element center value of F for the "
26
"det(F) modification."
);
27
return
BarDetFType::ELEMENT_CENTER_VALUE
;
28
}
29
if
(boost::iequals(bar_det_f_type_name,
"element_average"
))
30
{
31
INFO
(
32
"Use F bar method with the element average of F for the det(F) "
33
"modification."
);
34
return
BarDetFType::ELEMENT_AVERAGE
;
35
}
36
37
return
BarDetFType::NONE
;
38
}
19
BarDetFType
convertStringToDetFBarType
( {
…
}
39
}
// namespace NonLinearFbar
16
namespace
NonLinearFbar {
…
}
40
}
// namespace ProcessLib
INFO
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition
Logging.h:35
NonLinearFbar.h
ProcessLib::NonLinearFbar::convertStringToDetFBarType
BarDetFType convertStringToDetFBarType(std::string_view const bar_det_f_type_name)
Definition
NonLinearFbar.cpp:19
ProcessLib::NonLinearFbar::BarDetFType
BarDetFType
Definition
NonLinearFbar.h:32
ProcessLib::NonLinearFbar::BarDetFType::ELEMENT_CENTER_VALUE
@ ELEMENT_CENTER_VALUE
ProcessLib::NonLinearFbar::BarDetFType::NONE
@ NONE
ProcessLib::NonLinearFbar::BarDetFType::ELEMENT_AVERAGE
@ ELEMENT_AVERAGE
ProcessLib
Definition
ProjectData.h:51
ProcessLib
Deformation
NonLinearFbar.cpp
Generated by
1.11.0