Question 2.9.3: Ramp Response with the lsim Function Plot the forced respons...

Ramp Response with the lsim Function

Plot the forced response of

ẍ + 3ẋ + 5x = 10f(t)

to a ramp input, u(t) = 1.5t, over the time interval 0 ≤ t ≤ 2.

We choose to generate the plot with 300 points. The MATLAB session is the following.

≫t = linspace(0,2,300);
≫f = 1.5*t;
≫sys = tf(10, [1, 3, 5]);
≫[y, t] = lsim(sys,f,t);
≫plot(t,y,t,f),xlabel('t'),ylabel('x(t) and f(t)'),...
gtext('x(t)'),gtext('y(t)')

The plot is shown in Figure 2.9.7.

Annotation 2022-10-16 043410

Related Answered Questions

Question: 2.1.6

Verified Answer:

We cannot use Table 2.1.1 for this part because th...
Question: 2.7.7

Verified Answer:

a. The denominator roots are s = −3 ± 5j. To avoid...
Question: 2.7.5

Verified Answer:

There are four repeated roots (s = 0) and one dist...
Question: 2.7.2

Verified Answer:

The denominator roots are s= −12/3= −4, s=0, and s...