Figure 1. Coupled Spring System.
Problem Statement
Derive the system of differential equations describing the straight-line vertical motion of the coupled spring shown in Figure 1. Use Laplace transform to solve the system when , , and , , , and .
Solution
At positions and , the masses and are in equilibrium. Thus, the motion equations for and are,
- ∴
- ∴
where and represent the Newton's Second Law of Motion and and represent the net forces acting in the masses.
Laplace Transform
Applying the Laplace Transform to the motion equations and plugging the values of , , , , , , , , and for this systems, we obtain,
-
-
Finally, solving for and yields,
Inverse Laplace Transform
Figure 2. Coupled Spring System Displacement.
First, we recognize that
On the other hand, we identify that , and so . Hence, we fix the expression by multiplying and dividing by ,
A plot of the system displacement is shown on Figure 2.
Initial-Value & Final-Value Theorem
The initial-value and final-value theorem can be useful the finding the behavior of a functionat small and large times respectively. By definition, the Initial-Value Theorem is,
and the Final-Value Theorem is,
Thus, applying both theorems to our the Laplace Transforms,
Bode Plot
The Bode plot can be easily done using a program like Octave or MATLAB. The code is displayed below. From Figure 3 we may notice that the Amplitude vs. Frequency plot for both functions overlaps. On the other hand, the Phase vs. Frequency plot for both functions have opossite magnitudesNotice that both functions overlaps.
h1=tf([-1],[1 0 3]);
h2=tf([1],[1 0 3]);
bode(h1,'b',h2,'r');
Magnitude Frequency Response
Convolution
State Equation Model
References