Skip to content
Snippets Groups Projects
Commit 6ffff1cc authored by Yonghui56's avatar Yonghui56
Browse files

Fix sec. variable initialization for H process.

parent 0be0e8d6
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,9 @@ public: ...@@ -70,7 +70,9 @@ public:
_integration_method(integration_order), _integration_method(integration_order),
_shape_matrices(initShapeMatrices<ShapeFunction, ShapeMatricesType, _shape_matrices(initShapeMatrices<ShapeFunction, ShapeMatricesType,
IntegrationMethod, GlobalDim>( IntegrationMethod, GlobalDim>(
element, is_axially_symmetric, _integration_method)) element, is_axially_symmetric, _integration_method)),
_heat_fluxes(GlobalDim,
std::vector<double>(_integration_method.getNumberOfPoints()))
{ {
// This assertion is valid only if all nodal d.o.f. use the same shape // This assertion is valid only if all nodal d.o.f. use the same shape
// matrices. // matrices.
...@@ -161,9 +163,7 @@ private: ...@@ -161,9 +163,7 @@ private:
IntegrationMethod const _integration_method; IntegrationMethod const _integration_method;
std::vector<ShapeMatrices> _shape_matrices; std::vector<ShapeMatrices> _shape_matrices;
std::vector<std::vector<double>> _heat_fluxes = std::vector<std::vector<double>> _heat_fluxes;
std::vector<std::vector<double>>(
GlobalDim, std::vector<double>(ShapeFunction::NPOINTS));
}; };
} // namespace HeatConduction } // namespace HeatConduction
......
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