Skip to content

Commit

Permalink
Changed phase default NonlinearSolver to have a maxiter of 100. (#1034)
Browse files Browse the repository at this point in the history
* Default phase nonlinear solver maxiter changed to 100.
  • Loading branch information
robfalck committed Jan 19, 2024
1 parent f2e7e21 commit 8afa8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dymos/transcriptions/transcription_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def configure_solvers(self, phase, requires_solvers=None):
warn = True
phase.nonlinear_solver = om.NewtonSolver(iprint=0)
phase.nonlinear_solver.options['solve_subsystems'] = True
phase.nonlinear_solver.options['maxiter'] = 1000
phase.nonlinear_solver.options['maxiter'] = 100
phase.nonlinear_solver.options['stall_limit'] = 3
phase.nonlinear_solver.linesearch = om.ArmijoGoldsteinLS()

Expand Down

0 comments on commit 8afa8ec

Please sign in to comment.