Now Libuipc support both newton min_iter and max_iter
#206
Closed
MuGdxy
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
In d0615d9, we support a minimal iteration limit for non-linear Newton.
You may ask why we need it.
The scenario may be:
Now you have a relatively large convergence tolerance, the non-linear Newton will likely stop at the 0-th iteration, cuz the external force is not large enough to create a vertex-displacement large than the tolerance, the object tend to be static. You can set
min_iterto 1 to make some difference. But in the other side, sometimes, you perfer a more static behaviour, that tiny force or numerial error should not influence the motion, then you can set themin_iterto 0.The default
min_iteris 1.All reactions