Skip to content
Snippets Groups Projects
Commit e2b30dc3 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

avoid wrong Eigen calculation with auto keyword

parent 2ec4bfc1
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,8 @@ inline void computeMappingMatrices( ...@@ -120,7 +120,8 @@ inline void computeMappingMatrices(
shapemat.dNdx.topLeftCorner(ele_dim, nnodes) = shapemat.invJ * shapemat.dNdr; shapemat.dNdx.topLeftCorner(ele_dim, nnodes) = shapemat.invJ * shapemat.dNdr;
} else { } else {
auto const& matR = ele_local_coord.getRotationMatrixToGlobal(); // 3 x 3 auto const& matR = ele_local_coord.getRotationMatrixToGlobal(); // 3 x 3
auto dshape_global = matR.topLeftCorner(3u, ele_dim) * (shapemat.invJ * shapemat.dNdr); //3 x nnodes auto invJ_dNdr = shapemat.invJ * shapemat.dNdr;
auto dshape_global = matR.topLeftCorner(3u, ele_dim) * invJ_dNdr; //3 x nnodes
shapemat.dNdx = dshape_global.topLeftCorner(global_dim, nnodes);; shapemat.dNdx = dshape_global.topLeftCorner(global_dim, nnodes);;
} }
} }
......
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