fix(solver): correct Newton-Raphson convergence check in OndselSolver
Some checks failed
Build and Test / build (push) Has been cancelled

The isConvergedToNumericalLimit() method compared dxNorms->at(iterNo)
to itself instead of the previous iteration (iterNo - 1). This meant
the solver could never detect convergence improvement, causing it to
exhaust iterations on assemblies with many constraints, producing
'iterNo > iterMax' exceptions and 'grounded object moved' warnings.

Also updates silo submodule pointer.
This commit is contained in:
forbes
2026-02-01 21:10:19 -06:00
parent 3e09e7c099
commit ab7153b97f
2 changed files with 2 additions and 2 deletions