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

[PL/TH2] Add global matrix output

parent 623e3ecb
No related branches found
No related tags found
No related merge requests found
...@@ -96,6 +96,8 @@ void ThermalTwoPhaseFlowWithPPProcess::assembleConcreteProcess( ...@@ -96,6 +96,8 @@ void ThermalTwoPhaseFlowWithPPProcess::assembleConcreteProcess(
_global_assembler, &VectorMatrixAssembler::assemble, _local_assemblers, _global_assembler, &VectorMatrixAssembler::assemble, _local_assemblers,
pv.getActiveElementIDs(), dof_table, t, dt, x, x_prev, process_id, M, K, pv.getActiveElementIDs(), dof_table, t, dt, x, x_prev, process_id, M, K,
b); b);
_global_output(t, process_id, M, K, b);
} }
void ThermalTwoPhaseFlowWithPPProcess::assembleWithJacobianConcreteProcess( void ThermalTwoPhaseFlowWithPPProcess::assembleWithJacobianConcreteProcess(
...@@ -114,7 +116,10 @@ void ThermalTwoPhaseFlowWithPPProcess::assembleWithJacobianConcreteProcess( ...@@ -114,7 +116,10 @@ void ThermalTwoPhaseFlowWithPPProcess::assembleWithJacobianConcreteProcess(
_global_assembler, &VectorMatrixAssembler::assembleWithJacobian, _global_assembler, &VectorMatrixAssembler::assembleWithJacobian,
_local_assemblers, pv.getActiveElementIDs(), dof_table, t, dt, x, _local_assemblers, pv.getActiveElementIDs(), dof_table, t, dt, x,
x_prev, process_id, M, K, b, Jac); x_prev, process_id, M, K, b, Jac);
_global_output(t, process_id, M, K, b, &Jac);
} }
void ThermalTwoPhaseFlowWithPPProcess::preTimestepConcreteProcess( void ThermalTwoPhaseFlowWithPPProcess::preTimestepConcreteProcess(
std::vector<GlobalVector*> const& x, double const t, double const delta_t, std::vector<GlobalVector*> const& x, double const t, double const delta_t,
const int process_id) const int process_id)
......
...@@ -83,6 +83,8 @@ private: ...@@ -83,6 +83,8 @@ private:
std::vector< std::vector<
std::unique_ptr<ThermalTwoPhaseFlowWithPPLocalAssemblerInterface>> std::unique_ptr<ThermalTwoPhaseFlowWithPPLocalAssemblerInterface>>
_local_assemblers; _local_assemblers;
Assembly::GlobalMatrixOutput _global_output;
}; };
} // namespace ThermalTwoPhaseFlowWithPP } // namespace ThermalTwoPhaseFlowWithPP
......
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