Skip to content
Snippets Groups Projects
Commit 4176606f authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

bugfix: forgot to set vector size

[[Imported from SVN: r6889]]
parent 86536dc5
No related branches found
No related tags found
No related merge requests found
...@@ -1282,7 +1282,7 @@ iterateWithContact(std::map<std::pair<std::string,std::string>, RigidBodyMotion< ...@@ -1282,7 +1282,7 @@ iterateWithContact(std::map<std::pair<std::string,std::string>, RigidBodyMotion<
totalX3d = multigridStep->getSol(); totalX3d = multigridStep->getSol();
// Separate 3d solution vector // Separate 3d solution vector
std::vector<VectorType> x3d; std::vector<VectorType> x3d(continuumName.size());
contactAssembler->postprocess(totalX3d, x3d); contactAssembler->postprocess(totalX3d, x3d);
// the subdomain solutions in canonical coordinates, stored in a map // the subdomain solutions in canonical coordinates, stored in a map
......
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