Skip to content
Snippets Groups Projects
Commit ec7d26a0 authored by webmanue's avatar webmanue
Browse files

scale 2D stiffness matrix with weight

parent 520c37ad
No related branches found
No related tags found
No related merge requests found
Pipeline #89651 passed
......@@ -168,7 +168,7 @@ stiffness_matrix<double, 2>(const Properties<double, 2> &properties,
K(2, 2) = K(5, 5) = Y3;
K(2, 5) = K(5, 2) = Y4;
return K;
return K * properties.weight;
}
template <class ValueType_, std::size_t Dimension_>
......
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