Modified Newton Algorithm
- Command_Manual
- Tcl Commands
- Modeling_Commands
- model
- uniaxialMaterial
- ndMaterial
- frictionModel
- section
- geometricTransf
- element
- node
- sp commands
- mp commands
- timeSeries
- pattern
- mass
- block commands
- region
- rayleigh
- Analysis Commands
- Output Commands
- Misc Commands
- DataBase Commands
This command is used to construct a ModifiedNewton algorithm object, which uses the modified newton algorithm to solve the nonlinear residual equation. The command is of the following form:
algorithm ModifiedNewton |
NOTES:
REFERENCES:
THEORY:
The theory for the ModifiedNewton method is similar to that for the Newton-Raphson method. The difference is that the tangent at the initial guess is used in the iterations, instead of the current tangent. The Modified Newmark method is thus an iterative method in which, starting at a good initial guess <math>U_0\,\!</math> we keep iterating until <math>\Delta U</math> is small enough using the following:
- <math> \Delta U = - K_0^{-1}R(U_n),\!</math>
- <math> U_{n+1} = U_n + \Delta U\,\!</math>
where:
- <math>K_0 = \frac{\partial R(U_0)}{\partial U}\,\!</math>
Code Developed by: fmk