Question 5.2.1: Transfer Functions of a Two-Mass System Obtain the transfer ...

Transfer Functions of a Two-Mass System

Obtain the transfer functions X_1(s)/F(s) and X_2(s)/F(s) of the state-variable model obtained in Example 5.1.3. The matrices and state vector of the model are

A = \begin{bmatrix} 0 & 1 & 0 & 0 \\ -1 & -\frac{12}{5} & \frac{4}{5} & \frac{8}{5} \\ 0 & 0 & 0 & 0 \\ \frac{4}{3} & \frac{8}{3} & -\frac{4}{3} & – \frac{8}{3} \end{bmatrix}           B = \begin{bmatrix} 0\\ 0 \\ 0\\ \frac{1}{3} \end{bmatrix}

and

z = \begin{bmatrix} z_{1}\\ z_{2} \\ z_{3}\\ z_{4} \end{bmatrix} = \begin{bmatrix} x_{1}\\ \dot{x}_{1} \\ x_{2}\\ \dot{x}_{2} \end{bmatrix}
The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

Because we want the transfer functions for x_{1} and x_{2} (which are the same as z_{1} and z_{3}), we must define the C and D matrices to indicate that z_{1} and z_{3} are the output variables y_{1} and y_{2}. Thus,

C = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 \end{bmatrix}    D = \begin{bmatrix} 0 \\ 0 \end{bmatrix}

The MATLAB program is as follows.

A = [0, 1, 0, 0; -1, -12/5, 4/5, 8/5;...
0, 0, 0, 1; 4/3, 8/3, -4/3, -8/3];
B = [0; 0; 0; 1/3];
C = [1, 0, 0, 0; 0, 0, 1, 0]; D = [0; 0]
sys4 = ss(A, B, C, D);
tfsys4 = tf(sys4)

The results displayed on the screen are labeled #1 and #2. These correspond to the first and second transfer functions in order. The answers are

\frac{X_{1}(s)}{F(s)} = \frac{0.5333s  +  0.2667}{s^{4}  +  5.067s^{3}  +  4.467s^{2}  +  1.6s  +  0.2667}

\frac{X_{2}(s)}{F(s)} = \frac{0.3333s^{2}  +  0.8s  +   0.3333}{s^{4}  +  5.067s^{3}  +  4.467s^{2}  +  1.6s  +  0.2667}

Related Answered Questions