Laplace Transforms: Vertical Motion of a Coupled Spring System: Difference between revisions

From Class Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 39: Line 39:


== Inverse Laplace Transform ==
== Inverse Laplace Transform ==
[[Image:mass_spring_displacement_plot.png|thumb|Figure 2. Coupled Spring System Displacement.]]
[[Image:mass_spring_displacement_plot.png|thumb|Figure 2. Coupled Spring System Motion.]]
First, we recognize that
First, we recognize that



Revision as of 16:30, 24 November 2009

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 Motion.

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

Figure 3. Bode Diagram.

The Bode plot for the Transfer Functions

and

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. The peak amplitude occurs at about 2 seconds, as well as the phase switching as shown in the Phase vs. Frequency plot.

h1=tf([-1],[1 0 3]); 
h2=tf([1],[1 0 3]); 
bode(h1,'b',h2,'-.r');
legend('H_1(s)','H_2(s)')
grid on;

Magnitude Frequency Response

Considering the Transfer Functions and described in the Bode Plot section, we notice that there are no values for the s-variable that make and equal zero.


Convolution

State Equation Model

References