



Controller CCS) Plant ps) & P (3) Criven I. Ts L2 sec 2. as % 25%...
Solve for PART C
Only
a = -4.5
b = +3.3i
Prob. 2. (25 pts) Consider the following unity feedback control system Controller Plant R(S) toE(s) Gc(s) C($) 52 + 1) a) (10pts)Design a PID controller to locate the desired root at Sdesired = a + jß to meet the following design specifications: i) PO < 35% (5 > 0.35) ii) ts < 3 sec iii) The steady-state error is zero for the unit step response. b) (5pts) Sketch the...
Question:
CODE:
>> %% PID controller design
Kp = 65.2861;
Ki = 146.8418;
Kd = 4.0444;
Gc = pid(Kp,Ki,Kd);
% close-loop TF
T = feedback(G*Gc,1);
%% checking the design obejective
a_pid = stepinfo(T);
% Settling Time
tp_pid = a_pid.SettlingTime
% Overshhot
OS_pid = a_pid.Overshoot
%% steady-state error
[yout_pid,tout_pid] = lsim(T,stepInput,t);
% steady-state error
ess_pid = stepInput(end) - yout_pid(end);
>> %% Effect of P in G
Kp = 65.2861;
Ki = 0;
Kd = 0;
Gc = pid(Kp,Ki,Kd);
% close-loop TF...
Matlab
2. A PID controller allows one to adjust the performance of a plant to the designer's specifications. The following system is given (s+1)(0.2 s+ 1 )(0.04 s + 1 )(0.00%+1) Create this system symbolically in Matlab. Use the command expand to get it in the form of a ratio of polynomials. Use the coefficients to create a transfer function. Import the transfer function to 'pidTuner. There is no perfect controller. So, to achieve the best result, one has to...
PROBLEM 4 Suppose that a system is shown in Figure 4. There are three controllers that might be incorporated into this system. 1. Ge (s)-K (proportional (P) controller) 2. GS)K/s (integral (I) controller) 3. G (s)K(1+1/s) (proportional, integral (PI) controller) The system requirements are T, < 10 seconds and P0 10% for a unit step response. (a) For the (P) controller, write a piece of MATLAB code to plot root locus for 0<K<,and find the K value so that the...
i need help on question 3 to 22 please.
Midterm ex review. MATH 101 Use the following information to answer the next four exercises. The midterm grades on a chemistry exam, graded on a scale of 0 to 100, were: 62, 64, 65, 65, 68, 70, 72, 72, 74, 75, 75, 75, 76,78, 78, 81, 82, 83, 84, 85, 87, 88, 92, 95, 98, 98, 100, 100,740 1. Do you see any outliers in this data? If so, how would...