Skip to content
Snippets Groups Projects
Commit 8c0bd965 authored by podlesny's avatar podlesny
Browse files

introduce hard-coded max time step size

parent f6a13eef
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ int AdaptiveTimeStepper<Factory, ContactNetwork, Updaters, ErrorNorms>::coarsen(
const auto& currentNBodyAssembler = contactNetwork_.nBodyAssembler();
while (relativeTime_ + relativeTau_ <= 1.0) {
while (relativeTime_ + relativeTau_ <= 1.0 && relativeTau_ < 0.1) {
//std::cout << "tau: " << relativeTau_ << std::endl;
setDeformation(current_);
......
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