Coupled Mass–Spring–Damper Systems
Coupled Mass–Spring–Damper Systems
Multiphysics problems arise when two or more physical domains interact through shared state variables. The simplest case — and the one most useful for building intuition — is a chain of masses connected by springs and dashpots. Each mass obeys Newton's second law, but its motion depends on its neighbors through spring forces, producing a coupled system of second-order ODEs.
The governing equations are $m_1 \ddot{x}_1 + c_1 \dot{x}_1 + k_1 x_1 + k_2(x_1 - x_2) = F_1(t)$ and a similar equation for $m_2$. When written in matrix form $M\ddot{\mathbf{x}} + C\dot{\mathbf{x}} + K\mathbf{x} = \mathbf{F}(t)$, the eigenvalue problem $\det(K - \omega^2 M) = 0$ gives the natural frequencies, and the eigenvectors give the mode shapes.
Real structures — buildings, aircraft, vehicles, and MEMS resonators — are routinely reduced to such coupled systems. In this lesson we derive the equations, compute natural frequencies for a two-mass chain, and look at forced response.
$$m_1 \ddot{x}_1 = -k_1 x_1 - k_2(x_1 - x_2) - c_1 \dot{x}_1 + F_1(t)$$$$m_2 \ddot{x}_2 = -k_2(x_2 - x_1) - c_2 \dot{x}_2 + F_2(t)$$
For equal masses $m$ and equal springs $k$, the two modes are $\omega_1 = \sqrt{k/m}$ (in-phase) and $\omega_2 = \sqrt{3k/m}$ (out-of-phase).
Find $\omega_1$ for $m = 2\,\text{kg}$ and $k = 800\,\text{N/m}$.
$\omega_1 = \sqrt{800/2} = \sqrt{400} = 20\,\text{rad/s}$, so $f_1 = \omega_1/(2\pi) \approx 3.18\,\text{Hz}$.
Same $m$ and $k$ as Example 1: find $\omega_2$.
$\omega_2 = \sqrt{3 \cdot 800 / 2} = \sqrt{1200} \approx 34.64\,\text{rad/s}$, i.e. $f_2 \approx 5.51\,\text{Hz}$.
If $m_1 = m_2 = 1\,\text{kg}$, $k_1 = 100\,\text{N/m}$, $k_2 = 200\,\text{N/m}$, find both natural frequencies from $\det(K - \omega^2 M) = 0$.
$K = \begin{bmatrix}300 & -200\\-200 & 200\end{bmatrix}$, $M = I$. The characteristic equation is $(300-\lambda)(200-\lambda) - 40000 = 0 \Rightarrow \lambda^2 - 500\lambda + 20000 = 0$.
$\lambda = (500 \pm \sqrt{250000 - 80000})/2 = (500 \pm 412.3)/2$, giving $\lambda_1 = 43.84$, $\lambda_2 = 456.16$.
So $\omega_1 \approx 6.62\,\text{rad/s}$, $\omega_2 \approx 21.36\,\text{rad/s}$.
Practice Problems
Show Answer Key
1. $\omega_1 = \sqrt{500/0.5}=31.62$ rad/s, $\omega_2 = \sqrt{1500/0.5}=54.77$ rad/s.
2. Both masses oscillate together in the same direction; the middle spring is barely compressed.
3. $\begin{bmatrix}m&0\\0&m\end{bmatrix}\ddot{\mathbf{x}} + \begin{bmatrix}k_1+k_2&-k_2\\-k_2&k_2\end{bmatrix}\mathbf{x} = 0$.
4. Small $C$ acts as a perturbation that changes decay rates more than it changes mode shapes.
5. The system decouples into two independent single-mass oscillators $\omega=\sqrt{k_1/m_1}$ and undamped $m_2$ free.
6. Vehicle suspension tuning, MEMS resonators, aircraft wing flutter, tuned mass dampers in skyscrapers.