Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects

Resolve "Check that element length is long relative to a time step"

@@ -130,7 +130,7 @@ void OrbitThreader::checkElementLengths(const std::set<std::shared_ptr<Component
"The time step is too long compared to the length of the\n"
"element '" + field->getName() + "'\n" +
"The length of the element is: " + std::to_string(length) + "\n"
"The distance the particles drift in " + std::string(numSteps) +
"The distance the particles drift in " + std::to_string(numSteps) +
" time step(s) is: " + std::to_string(numSteps * driftLength));
}
}
@@ -479,4 +479,4 @@ double OrbitThreader::computeDriftLengthToBoundingBox(const std::set<std::shared
}
return std::numeric_limits<double>::max();
}
}
\ No newline at end of file
Loading