Question

Solve the question by using MATLAB.

EXERCISE 1: Consider a process given below to be controlled by a PID controller, 400 G,(s) = S(S + 48.5) a) Obtain the unit s

2 0
Add a comment Improve this question Transcribed image text
Answer #1

Solution: a) Obtain the unit step response of Gp(s). Command Window 70 >> num=[400]; 60 den=[1 48.5 0); 50 plant-tf (num, denStep Response Command Window >> num=[400]: den-[1 48.5 01? plant-tf(num, den): step (plant) kp=10: ki-kp/10: contr=tf(tkp kitStep Response 2 1.5 System sys_cl Time (seconds): 0.119 Amplitude: 0.998 Command Window >> num=[400]; den=[1 48.5 0]; plant=t1.5 Step Response System sys_cl Time (seconds): 0.0316 Amplitude: 1 Command Window >> num=[400]; den=[1 48.5 0); plant-tf (nuConclusion: By comparing all above responses we can conclude that the proportional controller (kp) will have the effect of ex

Add a comment
Know the answer?
Add Answer to:
Solve the question by using MATLAB. EXERCISE 1: Consider a process given below to be controlled...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Exercise: Given the mass-damper-spring network below: x(t) flt) m- 1kg; X(s) F(s) (s2 +10s + 20) ...

    Exercise: Given the mass-damper-spring network below: x(t) flt) m- 1kg; X(s) F(s) (s2 +10s + 20) b-10N-m/s 20N/m; f(t)-1 N Show how each of the controller gain, Kp, Kd and Ki contributes to obtain Fast rise time Minimum overshoot i. No steady state error MATLAB code S-tf('s') Sys 1/(sA2+10*s+20) Step Proportional Controller: Kp 300 % for faster reponse Gpspid(Кр) sys_p-feedback(sys Gp, 1) t-0:0.01:2 step(sys, sys p) Proportional-Derivative Controller: Kp 300 Kd-10 Gpdspid(Kp,0,Kd) sys pd feedback(Gpd sys, 1) step( sys, sys_p,...

  • Solve C & D please slide 3 is the one with the pendulum ...use the Matlab...

    Solve C & D please slide 3 is the one with the pendulum ...use the Matlab command C pid (Kp, Ki, Kd, Tf) to create your PID controller for Tr 0.5, KI = Kp = 0.5, and 1 < Kp < 10. c. (20 POINTS) REFER TO SLIDE 3: Create your frequency-domain plant as a state-space object, such that Mss1 ss (A,B,C,D) where D = 0.Similarly, Mss2 = ss (GC) d. (20 points) Use the feedback command to connect your...

  • Design by Synthesis: It is possible to design the PID so that the overshoot of the feedback syste...

    If anyone has Matlab, help me with problem e and f. Thank you. Design by Synthesis: It is possible to design the PID so that the overshoot of the feedback system would be zero, furthermore, the feedback system would behave as a first order system. This is done by noting the PID transfer function: 3. PID Controller Plant Gp (s) R(s) C(s) s2+s+1 Note in the above KPK and Ki/Kp may be chosen so that the numerator of the PID...

  • Using matlab and simulink! Lab Assignment Solve the following problems using the Word and MATLAB. The...

    Using matlab and simulink! Lab Assignment Solve the following problems using the Word and MATLAB. The table should be prepared in Word (Do not use MATLAB) for this. Use the MATLAB PUBLISH to submit your code. If you cannot, you may submit your report as a pdf form (prepare in word and save as pdf). The code, simulink model and figures should be included (print as a pdf or screen capture - consider readability). 1. Create the Simulink model as...

  • PLEASE DO IN MATLAB Problem 8 (PID feedback control). This problem is about Proportional-Integral-Derivative feedback control...

    PLEASE DO IN MATLAB Problem 8 (PID feedback control). This problem is about Proportional-Integral-Derivative feedback control systems. The general setup of the system we are going to look at is given below: e(t) u(t) |C(s) y(t) P(s) r(t) Here the various signals are: signal/system r(t) y(t) e(t) P(s) C(s) и(t) meaning desired output signal actual output signal error signal r(t) y(t) Laplace transform of the (unstable) plant controller to be designed control signal Our goal is to design a controller...

  • Question: CODE: >> %% PID controller design Kp = 65.2861; Ki = 146.8418; Kd = 4.0444;...

    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...

  • Please wriite the matlab code of the question

    &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Please wriite the matlab code of the question :))) &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& PROBLEM 4 Suppose that a system is shown in Figure 4. There are three controllers that might be incorporated into this system. 1·G,(s)-K (proportional (P) controller) 2·G,(s)=K/s (integral (I) controller) 3. G (s) K(1+1/s) (proportional, integral (PI) controller) The system requirements are Ts < 10 seconds and P.。. 10% for a unit step response. (a) For the (P) controller, write a piece of MATLAB code to plot root locus...

  • Reinforcement Problem # 3 (30 pts.) A) Given For the open-loop process with negative feedback R(S)...

    Reinforcement Problem # 3 (30 pts.) A) Given For the open-loop process with negative feedback R(S) C(s) Oc(s) Op(s) H(s) B) Determine Design the simplest controller (P, PI, PD or PID) capable to meet the required conditions: Gpls)..1 3 rad/s The system has negative feedback and H(s) -1. As part of the process, performjthe following steps 1) Justify selection of Gc(s) among the P, PI, PD or PID controllers. 2) Test the angular condition: Gc(s)Gp(s)H(180 3) Test the magnitude condition:...

  • show steps please 10 A second-order open-loop system with transfer function G(s) = is to be...

    show steps please 10 A second-order open-loop system with transfer function G(s) = is to be $2+45+10 controlled with unity negative feedback. (a) Derive the error transfer functions E(s) of the closed-loop system subjected to a unit step input, when using a P controller and a PI controller, respectively, in terms P control gain kp, and PI control gains kp and ki, respectively. [7] (b) Determine the steady-state errors in (a). Briefly comment on the differences in control performance by...

  • Please solve by hand, NOT MATLAB.Consider the PID-controlled system shown in Figure 8–19. The PID...

    Please solve by hand, NOT MATLAB.Consider the PID-controlled system shown in Figure 8–19. The PID controller is given by Gc(s) = K (s + a)2 /S It is desired to find a combination of K and a such that the closed-loop system will have 10% (or less) maximum overshoot in the unit-step response. Assume that the region to search for K and a is 

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT