Skip to content

Commit

Permalink
Alter solver options in skin buckle example
Browse files Browse the repository at this point in the history
  • Loading branch information
A-CGray committed Oct 24, 2023
1 parent 5adadeb commit 8bfd7fe
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions examples/nonlinear_skin_buckle/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,21 @@ def elemCallBack(dvNum, compID, compDescript, elemDescripts, specialDVs, **kwarg
FEAAssembler.initialize(elemCallBack)

probOptions = {
"printTiming": True,
"nRestarts": 3,
"subSpaceSize": 20,
"printLevel": 1,
}
continuationOptions = {
"InitialStep": 0.25,
}
newtonOptions = {
"MaxLinIters": 0,
"SkipFirstNLineSearch": 0,
"MaxIter": 100,
"MaxLinIters": 10,
"UseEW": True,
}
continuationOptions = {
"InitialStep": 0.05,
"TargetIter": 6,
"RelTol": 1e-7,
"UsePredictor": True,
"NumPredictorStates": 4,
"MaxIter": 60,
}

problem = FEAAssembler.createStaticProblem("TipForce", options=probOptions)
Expand Down

0 comments on commit 8bfd7fe

Please sign in to comment.