diff --git a/ProcessLib/ComponentTransport/ComponentTransportProcessData.h b/ProcessLib/ComponentTransport/ComponentTransportProcessData.h index 2ac5512eed9f6176ad3603b62eb720ce7e711ac8..121c3e7641c99d6d8de72414128a30b927670dc0 100644 --- a/ProcessLib/ComponentTransport/ComponentTransportProcessData.h +++ b/ProcessLib/ComponentTransport/ComponentTransportProcessData.h @@ -17,6 +17,7 @@ #include "LookupTable.h" #include "MaterialLib/MPL/MaterialSpatialDistributionMap.h" #include "MathLib/LinAlg/Eigen/EigenMapTools.h" +#include "NumLib/Fem/ShapeMatrixCache.h" #include "NumLib/NumericalStability/NumericalStabilization.h" #include "ParameterLib/ConstantParameter.h" #include "ParameterLib/Parameter.h" @@ -84,6 +85,9 @@ struct ComponentTransportProcessData bool const isothermal; + /// caches for each mesh element type the shape matrix + NumLib::ShapeMatrixCache shape_matrix_cache; + static const int hydraulic_process_id = 0; // Thermal process is optional, indicated by -1. If present, it is positive. const int thermal_process_id = isothermal ? -1 : 1; diff --git a/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp b/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp index bb69b4fe94eaf9f6296d9c50d96408955fc8e1de..5710f1e4d518c561b22d13102ef3f32c05786742 100644 --- a/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp +++ b/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp @@ -317,7 +317,7 @@ std::unique_ptr<Process> createComponentTransportProcess( mesh_space_dimension, *aperture_size_parameter, isothermal, - }; + NumLib::ShapeMatrixCache{integration_order}}; SecondaryVariableCollection secondary_variables;