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

Correct error message

parent a6c42ce8
No related branches found
No related tags found
1 merge request!60Version 2.0.0
Pipeline #1601 passed
......@@ -239,7 +239,7 @@ void Wake::connectVolElements(Tag *tagS, Tag *tagV, std::map<Element *, Element
if (f->el1 == NULL)
{
std::stringstream err;
err << "flow::Boundary: no volume element from tag " << *tagV << "could be associated to surface element " << *(f->el1) << "!\n";
err << "flow::Wake: no volume element from tag " << *tagV << "could be associated to surface element " << *(f->el0) << "!\n";
throw std::runtime_error(err.str());
}
svMap[f->el0] = f->el1;
......
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