Skip to content
Snippets Groups Projects
Commit 13cc8508 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL/LF] Add HydraulicFlow output.

parent 7302755d
No related branches found
No related tags found
No related merge requests found
...@@ -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(
......
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment