Electronic – How to determine sinusoidal steady state response from bode plot

bode plotcontrol systemtransfer function

I'm given a problem by the following:

Find the sinusoidal steady state response (in the time domain) of the following systems modeled by transfer function, P(s), to the input u(t). Use the Bode plot (in Matlab bode.m) of the frequency response as opposed to solving the convolution integral of the inverse Laplace transform.

$$
P(S) = 11.4/(s+1.4), u(t) = cos(5t)
$$

I'm a bit confused by the question because I thought bode plot is the definition of steady state response, but it's asking me to find it in time domain. Is such thing possible? Anyways plotting this in matlab gives me the following:

$$
Y(S) = P(S)U(S)
$$

where from laplace transform

$$
U(S) = s/(s^2+25)
$$

Y =

           11.4 s
  -------------------------
  s^3 + 1.4 s^2 + 25 s + 35

Continuous-time transfer function.

>> bode(Y), grid

enter image description here

This doesn't look like a typical bode plot either (Maybe because output is third order?) What can I infer from this representation of bode plot?

Edit: So this is a bode plot for just P(s)

enter image description here

At w = 5, it seems like the phase of -75 degrees and magnitude of 7db

Since magnitude in db, the final steady state response in time domain is

$$
Y_sss(t) = 2.24cos(5t – 75^{\circ})
$$

Really? This simple?

Best Answer

Firstly, the bode plot you are interested in is NOT the bode plot of Y, but of P. You have probably misinterpreted the problem's objective. Plot it and add resulting images to your question.

Then what you want to do is check your input signal nature. In your example, it is a pure cossine with angular frequency 5 and unitary amplitude. When looking at bode plot of P, check for the amplitude (A) and phase (theta) at such frequency. Your response Y will then be A*cos(5t + theta). [yes, easy like that]

Since you are working with a linear system, this concept can be extended to other types of input signals through proper decomposition of input by fourier series. For example, if U were a square wave, it would have all odd harmonics leading to infinity right? With the bode plot of P, I can check the gain and phase shift for each harmonic component of the resulting wave Y!

There are many others analysis to be made from bode, such as group delays and system stability. But I hope this answer leads you through the right way.