Newton with Line Search
This command is used to construct a NewtonLineSearch algorithm object which introduces line search to the Newton-Raphson algorithm to solve the nonlinear residual equation. Line search increases the effectiveness of the Newton method when convergence is slow due to roughness of the residual. The command is of the following form:
-type $typeSearch >
algorithm NewtonLineSearch < -tol $tol > < -maxIter $maxIter >
< -minEta $minEta > < -maxEta $maxEta > <
|
line search algorithm. optional default is
|
|
|
|
tolerance for search. optional, defeulat = 0.8 |
|
max num of iterations to try. optional, default = 10 |
|
a min \(\eta\!\) value. optional, default = 0.1 |
|
a max \(\eta\!\) value. optional, default = 10.0 |
Theory
The rationale behind line search is that:
- the direction \(\Delta U\,\!\) found by the Newton-Raphson method is often a good direction, but the step size \(\parallel\Delta U\parallel\) is not.
- It is cheaper to compute the residual for several points along \(\Delta U\,\!\) rather than form and factor a new system Jacobian
In NewtonLineSearch the regular Newton-Raphson method is used to compute the \(\Delta U\,\!\), but the update that is used is modified. The modified update is:
\[U_{n+1} = U_n + \eta \Delta U\,\!\]
The different line search algorithms use different root finding methods to obtain \(\eta\,\!\), a root to the function \(s(\eta)\) defined as:
\[ s(\eta) = \Delta U R(U_{n} + \eta \Delta U)\,\!\]
with
\[s_0 = \Delta U R(U_n),\!\]
Interpolated Line Search
while (\(\frac{s_n}{s_0}\!\) >
tol
&& count
<
maxIter
} {
\[ \eta_{n+1} = \frac{\eta_n *s0}{s0 -s_{n+1}},\!\]
}
RegulaFalsi Line Search
while (\(\frac{s_n}{s_0}\!\) >
tol
&& count < maxIter } {
\[ \eta_{n+1} = \eta_U - \frac{s_U*(\eta_L-\eta_U)}{s_L-S_U},\!\]
if
\(s_{n+1} * s_L < 0 \Rightarrow \eta_U = \eta_{n+1}, s_U = s_{n+1},\!\)
if
\(s_{n+1} * s_U < 0 \Rightarrow \eta_L = \eta_{n+1}, s_L = s_{n+1},\!\)
}
Bisection Line Search
while (\(\frac{s_n}{s_0}\!\) >
tol
& count < $maxIter} {
\[\eta_{n+1} = \frac{\eta_L - \eta_U}{2.0} ,\!\] if $s_{n+1} s_L < 0 $ > \[\eta_U = \eta_{n+1},\] > \[s_U = s_{n+1},\!\]
if $s_{n+1} s_U < 0 > \[\eta_L = \eta_{n+1},\] > \[s_L = s_{n+1},\!\]
}
Secant Line Search
while
(\(\frac{s_n}{s_0}\!\) >
tol
&& count
< maxIter
) {
\(\eta_{n+1} = \eta_j - \frac{s_j*(\eta_{j-1}-\eta_j)}{s_{j-1}-S_j} ,\!\)
if
\(s_{n+1} * s_L < 0\) > \(\eta_U = \eta_{n+1}\) > \(s_U = s_{n+1},\!\)
if $ s_{n+1} * s_U$ < \(0\) > \(\eta_L = \eta_{n+1},\) > \(s_L = s_{n+1},\!\)
}
References
M.A. Crisfield, “Nonlinear Finite Element Analysis of Solids and Structures, Volume 1:Essentials”, Wiley, 1991.
Code Developed by: fmk