From 58fdbbd99531f6120d08904a38f2b9c0090a7590 Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Fri, 17 May 2024 09:23:16 +0200 Subject: [PATCH] [PL/TRM] Adapted to moved cell averaging code --- .../ThermoRichardsMechanicsProcess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsProcess.cpp b/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsProcess.cpp index 194cc0cc1b1..f5968678c4f 100644 --- a/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsProcess.cpp +++ b/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsProcess.cpp @@ -18,6 +18,7 @@ #include "MeshLib/Utils/getOrCreateMeshProperty.h" #include "NumLib/DOF/DOFTableUtil.h" #include "ProcessLib/Deformation/SolidMaterialInternalToSecondaryVariables.h" +#include "ProcessLib/Output/CellAverageAlgorithm.h" #include "ProcessLib/Process.h" #include "ProcessLib/Reflection/ReflectionForExtrapolation.h" #include "ProcessLib/Reflection/ReflectionForIPWriters.h" @@ -287,8 +288,7 @@ void ThermoRichardsMechanicsProcess<DisplacementDim, ConstitutiveTraits>:: pv.getActiveElementIDs(), getDOFTables(x.size()), t, dt, x, x_prev, process_id); - cell_average_data_.computeSecondaryVariable(DisplacementDim, - local_assemblers_); + computeCellAverages(cell_average_data_, DisplacementDim, local_assemblers_); } template <int DisplacementDim, typename ConstitutiveTraits> -- GitLab