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

[TNL] Additionally check number of integration points.

parent f98afb97
No related branches found
No related tags found
No related merge requests found
...@@ -270,6 +270,7 @@ TYPED_TEST(NumLibFemIsoQuad4Test, CheckGaussIntegrationLevel) ...@@ -270,6 +270,7 @@ TYPED_TEST(NumLibFemIsoQuad4Test, CheckGaussIntegrationLevel)
// evaluate a mass matrix // evaluate a mass matrix
NodalMatrix M(e_nnodes, e_nnodes); NodalMatrix M(e_nnodes, e_nnodes);
ShapeMatricesType shape(dim, e_nnodes); ShapeMatricesType shape(dim, e_nnodes);
ASSERT_EQ(4u, this->integration_method.getNPoints());
for (std::size_t i=0; i < this->integration_method.getNPoints(); i++) { for (std::size_t i=0; i < this->integration_method.getNPoints(); i++) {
shape.setZero(); shape.setZero();
auto wp = this->integration_method.getWeightedPoint(i); auto wp = this->integration_method.getWeightedPoint(i);
...@@ -281,6 +282,7 @@ TYPED_TEST(NumLibFemIsoQuad4Test, CheckGaussIntegrationLevel) ...@@ -281,6 +282,7 @@ TYPED_TEST(NumLibFemIsoQuad4Test, CheckGaussIntegrationLevel)
// Change gauss quadrature level to 3 // Change gauss quadrature level to 3
this->integration_method.setIntegrationOrder(3); this->integration_method.setIntegrationOrder(3);
M *= .0; M *= .0;
ASSERT_EQ(9u, this->integration_method.getNPoints());
for (std::size_t i=0; i < this->integration_method.getNPoints(); i++) { for (std::size_t i=0; i < this->integration_method.getNPoints(); i++) {
shape.setZero(); shape.setZero();
auto wp = this->integration_method.getWeightedPoint(i); auto wp = this->integration_method.getWeightedPoint(i);
......
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