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

correct a comment

parent 31c0d441
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ inline void computeMappingMatrices(
//jacobian: J=[dx/dr dy/dr // dx/ds dy/ds]
for (std::size_t k=0; k<nnodes; k++) {
const MeshLib::Node& mapped_pt = *ele_local_coord.getMappedCoordinates(k);
// outer product of dNdr and xyz for a particular node
// outer product of dNdr and mapped_pt for a particular node
for (std::size_t i_r=0; i_r<dim; i_r++) {
for (std::size_t j_x=0; j_x<dim; j_x++) {
shapemat.J(i_r,j_x) += shapemat.dNdr(i_r,k) * mapped_pt[j_x];
......
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