Skip to content
Snippets Groups Projects

USCSDPM v1.0

Merged Adrien Crovato requested to merge adri into master
All threads resolved!
2 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -44,7 +44,7 @@ Body::Body(Mesh &msh, std::string const &name, std::string const &teName, double
if (it == tags.end())
{
// create tag and add it to the mesh
Tag *tagp = new Tag(tags.rbegin()->second->getId() + 1, wkName, 2);
Tag *tagp = new Tag(tags.size() + 1, wkName, 2);
_msh.addTag(wkName, tagp);
// translate TE nodes (along x-coordinate)
std::vector<Node *> wkNodes;
Loading