compute_modal_damping Function

public pure elemental function compute_modal_damping(lambda, alpha, beta) result(rst)

Computes the modal damping factors given the proportional damping terms and where , , and is the eigenvalue of the system.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in) :: lambda

The square of the modal frequency - the eigen value.

real(kind=real64), intent(in) :: alpha

The mass damping factor, .

real(kind=real64), intent(in) :: beta

The stiffness damping factor, .

Return Value real(kind=real64)

The modal damping parameter.


Contents