Chp12xx1.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. PL=0.2;
  2. A = [-5  0  -100; 2  -2  0; 0  0.1  -0.08];
  3. B = [0;  0;  -0.1]; BPL=PL*B;
  4. C = [0  0  1];
  5. D = 0;
  6. Q = [20 0  0; 0  10 0; 0  0  5];
  7. R = .15;
  8. [K, P] = lqr2(A, B, Q, R)
  9. Af = A - B*K
  10. t=0:0.02:1;
  11. [y, x] = step(Af, BPL, C, D, 1, t);
  12. plot(t, y), grid
  13. xlabel('t, sec'), ylabel('pu')
  14. disp('(b) Open sim12xx1.mdl in SIMULINK WINDOW and click on simulation')