The WilsonPenzienNewmark incorporates the Wilson-Penzien damping model.
For the moment, MPC cannot be considered in all global damping models.
Syntax
integrator WilsonPenzienNewmark (1) (2) (3) [4...]
# (1) int, unique integrator tag
# (2) double, alpha (beta in some references) in Newmark method, normally 0.25
# (3) double, beta (gamma in some references) in Newmark method, normally 0.5
# [4...] double, damping ratios on the first n modes
Theory
The Wilson-Penzien damping model is defined by using global mode shapes. For the generalized eigenvalue problem, the natural frequencies ω and mode shapes ϕ are defined to be
Kϕ=ω2Mϕ.
The damping matrix is defined to be
C=θDθT,
where D is the diagonal matrix with diagonal entries to be Mn2ξnωn, and θ=Mϕ.
However, the damping matrix is not explicitly formed, since C is fully populated while K and 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
KeΔU=R,
with Ke=K+c0M+c1C to be the effective stiffness matrix. By denoting K+c0M+c1Cv to be Kˉ, then
KeΔU=(Kˉ+c1C)ΔU=R,
ΔU=(Kˉ+θDˉθT)−1R,
where Dˉ=c1D. Note c0 and c1 are the corresponding parameters used in Newmark algorithm. Note Cv 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
ΔU=(Kˉ+θDˉθT)−1R,
ΔU=(Kˉ−1−Kˉ−1θ(Dˉ−1+θTKˉ−1θ)−1θTKˉ−1)R.
Note 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.