Question 11.8.4: By employing MATLAB, perform the root locus plot of the foll......

By employing MATLAB, perform the root locus plot of the following control system whose open-loop transfer function

G(s)H(s)=K G_{o}(s)={\frac{K(2s+5)(10s+7)}{(s^{2}+5s+40)(100s^{2}+3s+6)}}.

Step-by-Step
The 'Blue Check Mark' means that this solution was answered by an expert.
Learn more on how do we answer questions.

Expanding and simplifying the given open-loop transfer function, one can show that

G_{o}(s)={\frac{20s^{2}+64s+35}{100s^{4}+503s^{3}+4021s^{2}+150s+240}}

which is applied to the root locus construction.

The input to and output from MATLAB are included in Program Listing 11.4a and Figure 11E4a. As can be observed the loci near and on the real axis are too small to distinguish their features a statement is added to Program Listing 11.4a in order to provide a better view of the plot. This new program is included in Program Listing 11.4b. The output from MATLAB is presented in Figure 11E4b.

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.

Script File

Program Listing 11.4a

>> num = [0 0 20 64 35];
>> den = [100 503 4021 150 240];
>> rlocus(num,den,‘k’)
>> title(‘Root Locus Plot of Example 4 Section 11.8’)

 

Program Listing 11.4b

>> num = [0 0 20 64 35];
>> den = [100 503 4021 150 240];
>> rlocus(num,den,‘k’)
>> axis([−1.5 0.5 −3 3]);
>> title(‘Root Locus Plot of Example 4 Section 11.8’)

765
766

Related Answered Questions

Question: 11.8.17

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.16

Verified Answer:

The open-loop transfer function is G(s)H(s)...
Question: 11.8.15

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.14

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.13

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.12

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.11

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.10

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.9

Verified Answer:

The input to and output from MATLAB are included i...
Question: 11.8.8

Verified Answer:

The input to and output from MATLAB are included i...