This plot shows the RMS of vibration across the forcing frequency band of interest on a logarithmic scale. Note that the largest peaks in the original, baseline system are dramatically lessened by the addition of twenty springs and the system performs better at almost all frequencies in this band.
As part of a graduate-level course on vibrations of complex mechanical systems, I was tasked with reducing the vibration of a theoretical system as measured by root mean squared (RMS). Though I attempted several approaches to solving this problem, I will only describe the most successful one here. This approach gave the best results in the class, reducing RMS of vibration by over 60%.
The structure is modeled as a set of matrices representing its mass, stiffness, and damping characteristics, and the structure is vibrated by a complex forcing vector, all of which were given. In this project, the matrices were each 500x500, representing a 500 degree of freedom (DOF) system. The damping was modeled as proportional damping, in which the damping is assumed to be a linear combination of the mass and stiffness matrices.
In this project, the stiffness matrix could be altered by adding springs between two DOFs, called a coupling spring, or a single DOF and the ground, called a grounding spring. A maximum amount of allowed stiffness was set, but this stiffness could be divided into as many springs as desired. The mass matrix could not be altered, and the damping matrix was made to adjust only to maintain proportionality. For a large system like this, the behavior is essentially impossible to predict, meaning that many possibilities must be checked in order to find the best way to distribute stiffness. For a 500 DOF system, there are 500 possible locations for a grounding spring. However, there are 124,750 possible locations for a coupling spring. On an ordinary computer running reasonably well-written code, it still takes a couple seconds to check the performance of any given spring placement, which means that it can take several days to determine the best location for a single spring. Given computation time restrictions, this is infeasible, and the search must be simplified in some way.
The root mean squared metric is driven largely by the degrees of freedom with the greatest displacements. Intuitively, this suggests that we should focus our search on only that DOF for coupling springs. I checked this idea by looking at smaller systems. For smaller systems, say, 10-30 degrees of freedom, a computer can check all possibilities. By creating random smaller systems and having the computer check all spring locations, I found that while the best location for a coupling spring is frequently between the DOF with largest average displacement and another DOF, this is actually the case a minority of the time. Though I could determine no pattern from these studies, I did notice that for coupling springs, the most effective pair of DOFs almost always included at least one of the most mobile DOFs. Leveraging this fact allows for a dramatic reduction in computation time required to find a near-optimal location for a coupling spring.
I wrote a MATLAB script, along with a variety of MATLAB functions, that would search all grounding spring possibilities and a subset of coupling spring possibilities. Based on the computation time available for this project, I chose to divide the stiffness evenly among 20 springs, and to search only the 10 most mobile DOFs for coupling each other DOF. This allowed the whole process to be completed in a few days. For those who have MATLAB and wish to view the code, please use the button below.