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-313-g117c23c1cd 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
AssembledMatrixCache.cpp
►
AssembledMatrixCache.h
►
MatrixAssemblyStats.h
►
MatrixElementCache.h
►
MatrixOutput.cpp
►
MatrixOutput.h
►
ParallelVectorMatrixAssembler.cpp
►
ParallelVectorMatrixAssembler.h
►
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
►
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
AssembledMatrixCache.cpp
Go to the documentation of this file.
1
11
#include "
AssembledMatrixCache.h
"
12
13
namespace
ProcessLib
14
{
15
AssembledMatrixCache::AssembledMatrixCache
(
bool
const
is_linear,
16
bool
const
use_monolithic_scheme)
17
: is_linear_{is_linear && use_monolithic_scheme}
18
{
19
if
(is_linear && !use_monolithic_scheme)
20
{
21
OGS_FATAL
(
22
"You requested to assemble only once in combination with staggered "
23
"coupling. This use case is not yet implemented."
);
24
}
25
26
if
(
is_linear_
)
27
{
28
WARN
(
29
"You specified that the process simulated by OGS is linear. With "
30
"that optimization the process will be assembled only once and the "
31
"non-linear solver will do only one iteration per time step. No "
32
"non-linearities will be resolved and OGS will not detect if there "
33
"are any non-linearities. It is your responsibility to ensure that "
34
"the assembled equation systems are linear, indeed! There is no "
35
"safety net!"
);
36
}
37
}
15
AssembledMatrixCache::AssembledMatrixCache
(
bool
const
is_linear, {
…
}
38
}
// namespace ProcessLib
AssembledMatrixCache.h
OGS_FATAL
#define OGS_FATAL(...)
Definition
Error.h:26
WARN
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition
Logging.h:40
ProcessLib
Definition
ProjectData.h:51
ProcessLib::AssembledMatrixCache::is_linear_
bool const is_linear_
Definition
AssembledMatrixCache.h:45
ProcessLib::AssembledMatrixCache::AssembledMatrixCache
AssembledMatrixCache(bool const is_linear, bool const use_monolithic_scheme)
Definition
AssembledMatrixCache.cpp:15
ProcessLib
Assembly
AssembledMatrixCache.cpp
Generated by
1.11.0