3.2.6.8. Generalized Alpha Method
- integrator GeneralizedAlpha $alphaM $alphaF <$gamma $beta>
This command is used to define a Generalized \(\alpha\) integration scheme. This is an implicit method that like the HHT method allows for high frequency energy dissipation and second order accuracy, i.e. \(\Delta t^2\). Depending on choices of input parameters, the method can be unconditionally stable.
Example
Tcl Code
integrator GeneralizedAlpha 1.0 1.0
Python Code
model.integrator('GeneralizedAlpha', 1.0, 1.0)
Note
:math:` alpha_F` and \(\alpha_M\) are defined differently that in the paper, we use \(\alpha_F = (1-\alpha_f)\) and \(\alpha_M=(1-\gamma_m)\) where \(\alpha_f\) and \(\alpha_m\) are those used in the paper.
Like Newmark and all the implicit schemes, the unconditional stability of this method applies to linear problems. There are no results showing stability of this method over the wide range of nonlinear problems that potentially exist. Experience indicates that the time step for implicit schemes in nonlinear situations can be much greater than those for explicit schemes.
:math:` alpha_M = 1.0, alpha_F = 1.0` produces the Newmark Method.
:math:` alpha_M = 1.0` corresponds to the HHT method.
The method is second-order accurate provided \(\gamma = \tfrac{1}{2} + \alpha_M - \alpha_F\)
The method is unconditionally stable provided \(\alpha_M >= \alpha_F >= \tfrac{1}{2}, \beta>=\tfrac{1}{4} +\tfrac{1}{2}(\gamma_M - \gamma_F)\)
\(\gamma\) and \(\beta\) are optional. The default values ensure the method is unconditionally stable, second order accurate and high frequency dissipation is maximized.
The defaults are:
and
3.2.6.8.1. Theory
The Generalized \(\alpha\) method (sometimes called the \(\alpha\) method) is a one step implicit method for solving the transient problem which attempts to increase the amount of numerical damping present without degrading the order of accuracy. In the HHT method, the same Newmark approximations are used:
but the time-discrete momentum equation is modified:
where the displacements and velocities at the intermediate point are given by:
Following the methods outlined for Newmark method, linearization of the nonlinear momentum equation results in the following linear equations:
where
and
The linear equations are used to solve for \(U_{t+\alpha F \Delta t}, \dot U_{t + \alpha F \Delta t} \ddot U_{t+ \alpha M \Delta t}\). Once convergence has been achieved the displacements, velocities and accelerations at time \(t + \Delta t\) can be computed.