Skip to content
Snippets Groups Projects
Commit 9d71cc3e authored by Adrien Crovato's avatar Adrien Crovato
Browse files

bugfix for mrstlnos

parent 7fdffc68
No related branches found
No related tags found
1 merge request!50Feature eigen
Pipeline #768 passed
......@@ -131,8 +131,8 @@ void strain_stress_x_y_z_at_node(Element *elem, std::vector<gmm::dense_matrix<do
}
// Extrapolation at node points
gmm::dense_matrix<double> values_at_gp(n_gp, 18);
gmm::dense_matrix<double> values_at_node(n_n, 18);
Eigen::MatrixXd values_at_gp(n_gp, 18);
Eigen::MatrixXd values_at_node;
for (size_t i = 0; i < 3; ++i)
for (size_t j = 0; j < 3; ++j)
......
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