Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
13cc8508
Commit
13cc8508
authored
4 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[PL/LF] Add HydraulicFlow output.
parent
7302755d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ProcessLib/LiquidFlow/LiquidFlowProcess.cpp
+9
-0
9 additions, 0 deletions
ProcessLib/LiquidFlow/LiquidFlowProcess.cpp
ProcessLib/LiquidFlow/LiquidFlowProcess.h
+1
-0
1 addition, 0 deletions
ProcessLib/LiquidFlow/LiquidFlowProcess.h
with
10 additions
and
0 deletions
ProcessLib/LiquidFlow/LiquidFlowProcess.cpp
+
9
−
0
View file @
13cc8508
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include
"MeshLib/PropertyVector.h"
#include
"MeshLib/PropertyVector.h"
// TODO(TF) used for output of flux, if output classes are ready this has to be changed
// TODO(TF) used for output of flux, if output classes are ready this has to be changed
#include
"MeshLib/IO/writeMeshToFile.h"
#include
"MeshLib/IO/writeMeshToFile.h"
#include
"ProcessLib/Utils/ComputeResiduum.h"
#include
"ProcessLib/Utils/CreateLocalAssemblers.h"
#include
"ProcessLib/Utils/CreateLocalAssemblers.h"
namespace
ProcessLib
namespace
ProcessLib
...
@@ -42,6 +43,9 @@ LiquidFlowProcess::LiquidFlowProcess(
...
@@ -42,6 +43,9 @@ LiquidFlowProcess::LiquidFlowProcess(
_surfaceflux
(
std
::
move
(
surfaceflux
))
_surfaceflux
(
std
::
move
(
surfaceflux
))
{
{
DBUG
(
"Create Liquid flow process."
);
DBUG
(
"Create Liquid flow process."
);
_hydraulic_flow
=
MeshLib
::
getOrCreateMeshProperty
<
double
>
(
mesh
,
"HydraulicFlow"
,
MeshLib
::
MeshItemType
::
Node
,
1
);
}
}
void
LiquidFlowProcess
::
initializeConcreteProcess
(
void
LiquidFlowProcess
::
initializeConcreteProcess
(
...
@@ -80,6 +84,11 @@ void LiquidFlowProcess::assembleConcreteProcess(
...
@@ -80,6 +84,11 @@ void LiquidFlowProcess::assembleConcreteProcess(
_global_assembler
,
&
VectorMatrixAssembler
::
assemble
,
_local_assemblers
,
_global_assembler
,
&
VectorMatrixAssembler
::
assemble
,
_local_assemblers
,
pv
.
getActiveElementIDs
(),
dof_table
,
t
,
dt
,
x
,
xdot
,
process_id
,
M
,
K
,
pv
.
getActiveElementIDs
(),
dof_table
,
t
,
dt
,
x
,
xdot
,
process_id
,
M
,
K
,
b
,
_coupled_solutions
);
b
,
_coupled_solutions
);
auto
const
residuum
=
computeResiduum
(
*
x
[
0
],
*
xdot
[
0
],
M
,
K
,
b
);
transformVariableFromGlobalVector
(
residuum
,
0
/*variable id*/
,
*
_local_to_global_index_map
,
*
_hydraulic_flow
,
std
::
negate
<
double
>
());
}
}
void
LiquidFlowProcess
::
assembleWithJacobianConcreteProcess
(
void
LiquidFlowProcess
::
assembleWithJacobianConcreteProcess
(
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/LiquidFlow/LiquidFlowProcess.h
+
1
−
0
View file @
13cc8508
...
@@ -108,6 +108,7 @@ private:
...
@@ -108,6 +108,7 @@ private:
_local_assemblers
;
_local_assemblers
;
std
::
unique_ptr
<
ProcessLib
::
SurfaceFluxData
>
_surfaceflux
;
std
::
unique_ptr
<
ProcessLib
::
SurfaceFluxData
>
_surfaceflux
;
MeshLib
::
PropertyVector
<
double
>*
_hydraulic_flow
=
nullptr
;
};
};
}
// namespace LiquidFlow
}
// namespace LiquidFlow
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment