diff --git a/ProcessLib/Assembly/MatrixOutput.cpp b/ProcessLib/Assembly/MatrixOutput.cpp index 56ed505c69fba0a82792b42759721834c3a0f89c..5aabd69dc9fbcd58d0f91cf610be0812063b88e2 100644 --- a/ProcessLib/Assembly/MatrixOutput.cpp +++ b/ProcessLib/Assembly/MatrixOutput.cpp @@ -175,10 +175,9 @@ GlobalMatrixOutput::GlobalMatrixOutput() } void GlobalMatrixOutput::operator()(double const t, int const process_id, - GlobalMatrix const* M, - GlobalMatrix const* K, - GlobalVector const& b, - GlobalMatrix const* const Jac) + GlobalMatrix const& M, + GlobalMatrix const& K, + GlobalVector const& b) { if (!do_output_) { @@ -188,22 +187,20 @@ void GlobalMatrixOutput::operator()(double const t, int const process_id, #ifndef USE_PETSC ++counter_; - if (M) { auto fh = openGlobalMatrixOutputFile(filenamePrefix_, counter_, t, process_id, "M", "mat"); fh << "M "; - outputGlobalMatrix(*M, fh); + outputGlobalMatrix(M, fh); } - if (K) { auto fh = openGlobalMatrixOutputFile(filenamePrefix_, counter_, t, process_id, "K", "mat"); fh << "K "; - outputGlobalMatrix(*K, fh); + outputGlobalMatrix(K, fh); } { @@ -213,21 +210,47 @@ void GlobalMatrixOutput::operator()(double const t, int const process_id, fh << "b "; outputGlobalVector(b, fh); } +#else + // do nothing, warning message already printed in the constructor + (void)t; + (void)process_id; + (void)M; + (void)K; + (void)b; +#endif +} + +void GlobalMatrixOutput::operator()(double const t, int const process_id, + GlobalVector const& b, + GlobalMatrix const& Jac) +{ + if (!do_output_) + { + return; + } + +#ifndef USE_PETSC + ++counter_; + + { + auto fh = openGlobalMatrixOutputFile(filenamePrefix_, counter_, t, + process_id, "b", "vec"); + + fh << "b "; + outputGlobalVector(b, fh); + } - if (Jac) { auto fh = openGlobalMatrixOutputFile(filenamePrefix_, counter_, t, process_id, "Jac", "mat"); fh << "Jac "; - outputGlobalMatrix(*Jac, fh); + outputGlobalMatrix(Jac, fh); } #else // do nothing, warning message already printed in the constructor (void)t; (void)process_id; - (void)M; - (void)K; (void)b; (void)Jac; #endif diff --git a/ProcessLib/Assembly/MatrixOutput.h b/ProcessLib/Assembly/MatrixOutput.h index 2b3d285f7b116a17bbd6afe91d0418669ff3a368..855dbf33475421de2c5b8011978693b4d4da80f0 100644 --- a/ProcessLib/Assembly/MatrixOutput.h +++ b/ProcessLib/Assembly/MatrixOutput.h @@ -24,9 +24,11 @@ struct GlobalMatrixOutput { GlobalMatrixOutput(); - void operator()(double const t, int const process_id, GlobalMatrix const* M, - GlobalMatrix const* K, GlobalVector const& b, - GlobalMatrix const* const Jac = nullptr); + void operator()(double const t, int const process_id, GlobalMatrix const& M, + GlobalMatrix const& K, GlobalVector const& b); + + void operator()(double const t, int const process_id, GlobalVector const& b, + GlobalMatrix const& Jac); private: std::string filenamePrefix_; diff --git a/ProcessLib/Assembly/ParallelVectorMatrixAssembler.cpp b/ProcessLib/Assembly/ParallelVectorMatrixAssembler.cpp index e799f5153ce608df89a744a6d3b2a99a4d252cd1..5b070cb55db6ba52dc49a86e3632f6875ca1f603 100644 --- a/ProcessLib/Assembly/ParallelVectorMatrixAssembler.cpp +++ b/ProcessLib/Assembly/ParallelVectorMatrixAssembler.cpp @@ -249,7 +249,7 @@ void ParallelVectorMatrixAssembler::assembleWithJacobian( stats->print(); - global_matrix_output_(t, process_id, nullptr, nullptr, b, &Jac); + global_matrix_output_(t, process_id, b, Jac); exception.rethrow(); } } // namespace ProcessLib::Assembly diff --git a/ProcessLib/LargeDeformation/LargeDeformationProcess.cpp b/ProcessLib/LargeDeformation/LargeDeformationProcess.cpp index bf5a13101ff98b31c240f041c689c7a87ebb72a4..f6c587105182584fccb8025de0032e85082bd216 100644 --- a/ProcessLib/LargeDeformation/LargeDeformationProcess.cpp +++ b/ProcessLib/LargeDeformation/LargeDeformationProcess.cpp @@ -145,7 +145,7 @@ void LargeDeformationProcess<DisplacementDim>::assembleConcreteProcess( getActiveElementIDs(), dof_table, t, dt, x, x_prev, process_id, &M, &K, &b); - _global_output(t, process_id, &M, &K, b); + _global_output(t, process_id, M, K, b); } template <int DisplacementDim> @@ -168,7 +168,7 @@ void LargeDeformationProcess<DisplacementDim>:: transformVariableFromGlobalVector(b, 0, *_local_to_global_index_map, *_nodal_forces, std::negate<double>()); - _global_output(t, process_id, nullptr, nullptr, b, &Jac); + _global_output(t, process_id, b, Jac); } template <int DisplacementDim> diff --git a/ProcessLib/SmallDeformation/SmallDeformationProcess.cpp b/ProcessLib/SmallDeformation/SmallDeformationProcess.cpp index b588aef7a42083ef6a8f6ad4dd4d371b011d12cf..8e9ea109e5130d0a14fcb488cd31a0c6c369c760 100644 --- a/ProcessLib/SmallDeformation/SmallDeformationProcess.cpp +++ b/ProcessLib/SmallDeformation/SmallDeformationProcess.cpp @@ -147,7 +147,7 @@ void SmallDeformationProcess<DisplacementDim>::assembleConcreteProcess( getActiveElementIDs(), dof_table, t, dt, x, x_prev, process_id, &M, &K, &b); - _global_output(t, process_id, &M, &K, b); + _global_output(t, process_id, M, K, b); } template <int DisplacementDim> @@ -170,7 +170,7 @@ void SmallDeformationProcess<DisplacementDim>:: transformVariableFromGlobalVector(b, 0, *_local_to_global_index_map, *_nodal_forces, std::negate<double>()); - _global_output(t, process_id, nullptr, nullptr, b, &Jac); + _global_output(t, process_id, b, Jac); } template <int DisplacementDim> diff --git a/ProcessLib/ThermalTwoPhaseFlowWithPP/ThermalTwoPhaseFlowWithPPProcess.cpp b/ProcessLib/ThermalTwoPhaseFlowWithPP/ThermalTwoPhaseFlowWithPPProcess.cpp index 20165029fdda7c147ce11078f14ef6a307fdab55..a7df17686ffb75db872bbe6c89e809097ae2a5a1 100644 --- a/ProcessLib/ThermalTwoPhaseFlowWithPP/ThermalTwoPhaseFlowWithPPProcess.cpp +++ b/ProcessLib/ThermalTwoPhaseFlowWithPP/ThermalTwoPhaseFlowWithPPProcess.cpp @@ -96,7 +96,7 @@ void ThermalTwoPhaseFlowWithPPProcess::assembleConcreteProcess( getActiveElementIDs(), dof_table, t, dt, x, x_prev, process_id, &M, &K, &b); - _global_output(t, process_id, &M, &K, b); + _global_output(t, process_id, M, K, b); } void ThermalTwoPhaseFlowWithPPProcess::assembleWithJacobianConcreteProcess( @@ -115,7 +115,7 @@ void ThermalTwoPhaseFlowWithPPProcess::assembleWithJacobianConcreteProcess( _local_assemblers, getActiveElementIDs(), dof_table, t, dt, x, x_prev, process_id, &b, &Jac); - _global_output(t, process_id, nullptr, nullptr, b, &Jac); + _global_output(t, process_id, b, Jac); } void ThermalTwoPhaseFlowWithPPProcess::preTimestepConcreteProcess(