WilsonPenzienNewmark
The WilsonPenzienNewmark
incorporates the Wilson-Penzien damping model.
For the moment, MPC cannot be considered in all global damping models.
Syntax
Text Only | |
---|---|
Theory
The Wilson-Penzien damping model is defined by using global mode shapes. For the generalized eigenvalue problem, the natural frequencies \(\omega\) and mode shapes \(\mathbf{\phi}\) are defined to be
The damping matrix is defined to be
where \(\mathbf{D}\) is the diagonal matrix with diagonal entries to be \(\dfrac{2\xi_n\omega_n}{M_n}\), and \(\mathbf{\theta}=\mathbf{M\phi}\).
However, the damping matrix is not explicitly formed, since \(\mathbf{C}\) is fully populated while \(\mathbf{K}\) and \(\mathbf{M}\) may be stored in a banded or even sparse scheme.
Implementation
In order to implement the algorithm, the Woodbury identity is utilized. The global solving equation is
with \(\mathbf{K}_e=\mathbf{K}+c_0\mathbf{M}+c_1\mathbf{C}\) to be the effective stiffness matrix. By denoting \(\mathbf{K}+c_0\mathbf{M}+c_1\mathbf{C}_v\) to be \(\mathbf{\bar{K}}\), then
where \(\mathbf{\bar{D}}=c_1\mathbf{D}\). Note \(c_0\) and \(c_1\) are the corresponding parameters used in Newmark algorithm. Note \(\mathbf{C}_v\) is used to denote the additional viscous damping effect due to viscous devices such as dampers. This part does not contribute the formulation of global damping matrix.
By using the Woodbury identity, one could obtain
Note \(\mathbf{\bar{D}}^{-1}\) can be conveniently formulated as it is simply a diagonal matrix.
The above formula requires two additional function calls to matrix solver. If the factorization can be stored, this reduces to two backward substitutions.