Advanced Automation

[lecture #1] 2013.9.5 outline of the lecture, review of classical and modern control theory (1/3)

... missed (derivation of G(s) = 1/(ms^2+cs+k) by Laplace transformation from given equation of motion)

[lecture #2] 2013.9.12 CACSD introduction with review of classical and modern control theory (2/3)

  1. introduction of Matlab and Simulink
  2. How to define open-loop system
    1. TF
      s = tf('s');
      G1 = 1 / (s+1);
      G2 = 1 / (s^2 + 0.1*s + 1);
    2. SSR
      A = [-0.3, -1; 1, 0];
      B = [1; 0];
      C = [0, 1];
      D = 0;
      G3 = ss(A, B, C, D);
    • Bode plot
      bode(G1, 'b-', G2, 'g', G3, 'r--');
      grid on;
  3. open-loop stability can be checked by
    1. poles of TF
      roots(G2.den{:})
    2. eigenvalues of A-matrix in SSR
      eig(G3.a)
    3. also by simulation
  4. closed-loop stability
    L = 1/(s^3+1.5*s^2+1.5*s+1); % example of open-loop system
    roots(L.den{:}) % confirm the open-loop system is stable 
    1. graphical test by Nyquist stability criterion and Bode plot with GM(gain margin) and PM(phase margin)
      nyquist(L)
      bode(L)
    2. numerical test by closed-loop system
      clp_den = L.den{:} + L.num{:};
      roots(clp_den)
    3. simulation
a = 1
ver
t = [1 2 3]
pwd
ls
foo
pwd
bar
s = tf('s')
G1 = 1 / (s+1);
G2 = 1 / (s^2 + 0.1*s + 1);
G1
G2
A = [-0.3, -1; 1, 0];
B = [1; 0];
C = [0, 1];
D = 0;
G3 = ss(A, B, C, D);
G3
bode(G1, 'b-', G2, 'g', G3, 'r--');
grid on;
G2
G2.den
G2.den{:}
roots(G2.den{:})
G3.a
eig(G3.a)
mod0912_1
L = 1/(s^3+1.5*s^2+1.5*s+1); % example of open-loop system
roots(L.den{:}) % confirm the open-loop system is stable
nyquist(L)
nyquist(L*1.25)
nyquist(L)
clp_den = L.den{:} + L.num{:};
roots(clp_den)
ex0912_2
mod0912_2
L = 1.5*L 

[lecture #3] 2013.9.19 CACSD introduction with review of classical and modern control theory (3/3)

  1. LQR problem
  2. ARE and quadratic equation
  3. (semi)-positive definiteness
  4. example
mod0919
A = [1, 2, 3; 4, 5, 6; 7, 8, 9]
eig(A)
B = [1; 1; 1]
Uc = ctrb(A, B)
det(Uc)
B = [1; 0; 0]
Uc = ctrb(A, B)
det(Uc)
help are
P = are(A, B/R*B', Q)
Q = eye(3)
R = 1
P = are(A, B/R*B', Q)
P = are(A, B*inv(R)*B', Q)
P - P'
eig(P)
x(0)
x0 = [1; 1; 1]
x0'*P*x0
F = R\B'*P
C = eye(3)
D = [0; 0; 0]
J

[lecture #4] 2013.9.26 Intro. to robust control theory (H infinity control theory) 1/3

  1. Typical design problems
    1. robust stabilization
    2. performance optimization
    3. robust performance problem (robust stability and performance optimization are simultaneously considered)
  2. H infinity norm
    • definition
    • example
  3. H infinity control problem
    • definition
    • application example : reference tracking problem
      • relation to the sensitivity function S(s) (S(s) -> 0 is desired but impossible)
      • given control system
s = tf('s')
G = 1/(s+1)
norm(G, 'inf')
G = s/(s+1)
norm(G, 'inf')
G = 1/(s^2+0.1*s+1)
bodemag(G)
norm(G, 'inf')
bodemag(G, 'b', ss(10.0125), 'r--')
G = 1/(s^2+0.5*s+1)
norm(G, 'inf')
bodemag(G, 'b', ss(2.0656), 'r--')
ex0926_1
ex0926_2
eig(K_hinf)

[lecture #5] 2013.10.3 Intro. to Robust Control Theory (H infinity control theory) 2/3 cancelled

[lecture #5] 2013.10.10 Intro. to Robust Control Theory (H infinity control theory) 2/3

  1. Typical design problems
    1. robust stabilization
    2. performance optimization
    3. robust performance problem (robust stability and performance optimization are simultaneously considered)
  2. connection between [H infinity control problem] and [robust stabilization problem]
    • small gain theorem
    • normalized uncertainty \Delta
    • sketch proof ... Nyquist stability criterion
  3. How to design robust stabilizing controller with H infinity control problem ?
    • practical example : unstable plant with perturbation
    • how to use uncertainty model (multiplicative uncertainty model)
    • how to set generalized plant G ?
    • simulation
ex1010_1
ex1010_2
WT]
WT
P0
P0_jw
ex1010_3
mod1010

[lecture #6] 2013.10.17 Intro. to robust control theory (H infinity control theory) (3/3)

  1. review
    • robust stabilization ... (1) ||WT T||_inf < 1 (for multiplicative uncertainty)
    • performance optimization ... (2) ||WS S||_inf < gamma -> min
    • mixed sensitivity problem ... simultaneous consideration of stability and performance
  2. a sufficient condition for (1) and (2) ... (*) property of maximum singular value
  3. definition of singular value
  4. mini report #1
  5. meaning of singular value ... singular value decomposition (SVD)
  6. proof of (*)
  7. example
j
A = [1, j; 0, 2]
A'
eig(A'*A)
sqrt(ans)
3+sqrt(5)
sqrt(3+sqrt(5))
sqrt(3-sqrt(5))
A
[U,S,V] = svd(A)
U'*U
U*U'
help svd
ex1017

... sorry for missing to take photo ... mini report #1: write by hand; submit at the beginning of the next lecture; You will have a mini exam #1 related to this report on 31st Oct.

[lecture #7] 2013.10.24 review of SVD, motivation of robust performance (robust performance problem 1/3), state space representation of generalized plant

ex1024_1
ex1024_2
ex1024_3
ex1024_4

[lecture #8] 2013.10.31 Robust performance problem (2/3)

  1. review of mini report #1
  2. review of the limitation of mixed sensitivity problem
  3. a solution of conservative design
    • example based on the one given in the last lecture
    • a check of the conservativeness
  4. mini exam #1
%-- 10/31/2013 1:02 PM --%
A = [j, 0; -j, 0]
A = [j, 0; -j, 1]
svd(A)
sqrt((3+sqrt(5))/2)
sqrt((3-sqrt(5))/2)
ex1024_2
ex1024_3
ex1024_4
ex1031_1

[lecture #9] 2013.11.14 Robust performance problem (3/3)

ex1024_2
ex1024_3
ex1024_4
ex1024_5
ex1031_1
gam
ex1024_3
gam
ex1031_2
help lft
ex1031_2
ex1031_1
ex1031_2

[lecture #10] 2013.11.21 Robust performance problem (1/3) (cont.)

ex1024_2
ex1024_3
gam
ex1024_4
ex1031_1
gam
ex1031_2
ex1114_1
gam

[lecture #11] 2013.11.28 Robust stabilization of inverted pendulum

[lecture #12] 2013.12.5 Robust control design for a practical system : Active vibration control of a pendulum using linear motor (1/3)

[lecture #13] 2013.12.12 Robust control design for a practical system : Active vibration control of a pendulum using linear motor (2/3)

  1. design your controller(s) so that the system performance is improved compared with the design example 3 (ex3) example 2 (ex2)
  2. Draw the following figures and explain the difference between two control systems (your controller and ex3 ex2):
    1. bode diagram of controllers
    2. gain characteristic of closed-loop systems
    3. time response of control experiment
  3. Why is the performance of your system improved(or unfortunately decreased)?
    • due date: 31th(Tue) Dec 17:00
    • submit your report(pdf or doc) by e-mail to kobayasi@nagaokaut.ac.jp
    • You can use Japanese
    • maximum controller order is 20
    • submit your cont.dat, cont_order.dat, and cont.mat to kobayasi@nagaokaut.ac.jp not later than 26th(Thu) Dec

[lecture #14] 2013.12.19 Robust control design for a practical system : Active vibration control of a pendulum using linear motor (3/3)

[IMPORTANT] Due to unavailability of n4sid in IPC which is used in cont_ex3.m, please compare your controller and example 2 (not 3) in your report. The explanation of the report has been modified due to this change. See above.

participant list2013

freqresp_fixed
frdata
check_pcont
weight_ex2
freqresp_fixed
weight_ex2
cont_ex2
nominal_ex3
weight_ex4
cont_ex4
compare

[lecture #15] 2013.12.26 Robust control design for a practical system : Active vibration control of a pendulum using linear motor (cont.)


添付ファイル: file2013.12.19-1.jpg 561件 [詳細] file2013.12.19-2.jpg 550件 [詳細] filecont_ex3.m 478件 [詳細] fileex4.mp4 429件 [詳細] fileex3.mp4 430件 [詳細] fileex1.mp4 416件 [詳細] fileopenloop.mp4 431件 [詳細] file2013.12.12-1.jpg 508件 [詳細] file2013.12.12-2.jpg 614件 [詳細] file2013.12.12-3.jpg 530件 [詳細] filecont_ex4.m 480件 [詳細] filehinf_app.c 783件 [詳細] filehinf_module.c 633件 [詳細] filehinf.h 505件 [詳細] filepulse.h 431件 [詳細] filepulse_module.c 507件 [詳細] filefreqresp_app.c 614件 [詳細] filefreqresp.h 542件 [詳細] filefreqresp_module.c 536件 [詳細] filecommon.h 472件 [詳細] filecont_ex2.m 471件 [詳細] filecompare.m 526件 [詳細] fileresult_ex4.dat 494件 [詳細] fileresult_ex3.dat 415件 [詳細] fileresult_ex2.dat 502件 [詳細] filecont_ex4_order.dat 412件 [詳細] filecont_ex3_order.dat 384件 [詳細] filecont_ex2_order.dat 406件 [詳細] filecont_ex4.dat 435件 [詳細] filecont_ex3.dat 390件 [詳細] filecont_ex2.dat 437件 [詳細] filecont_ex4.mat 423件 [詳細] filecont_ex3.mat 420件 [詳細] filecont_ex2.mat 481件 [詳細] filenominal_ex3.m 485件 [詳細] fileweight_ex3.m 421件 [詳細] fileweight_ex4.m 448件 [詳細] fileweight_ex2.m 468件 [詳細] filecheck_pcont.m 462件 [詳細] filecont_P.dat 484件 [詳細] filecont_P_order.dat 400件 [詳細] fileresult_P.dat 430件 [詳細] fileresult_openloop.dat 486件 [詳細] filependulum2.jpg 601件 [詳細] filefreqresp_fixed.m 495件 [詳細] filefrdata_0.5mm.dat 500件 [詳細] file2013.12.5-1.jpg 552件 [詳細] file2013.12.5-2.jpg 515件 [詳細] file2013.12.5-3.jpg 600件 [詳細] filefrdata_0_3.dat 445件 [詳細] filefrdata_0_2.dat 463件 [詳細] filefrdata_0_4.dat 423件 [詳細] filefreqresp.m 510件 [詳細] filephoto1.jpg 695件 [詳細] filephoto2.jpg 597件 [詳細] filephoto3.jpg 588件 [詳細] filephoto4.jpg 583件 [詳細] filephoto5.jpg 541件 [詳細] file2013.11.28-1.jpg 577件 [詳細] file2013.11.28-2.jpg 526件 [詳細] file2013.11.28-3.jpg 543件 [詳細] file2013.11.28-4.jpg 622件 [詳細] filemod1128_1.mdl 517件 [詳細] fileex1128_1.m 473件 [詳細] filemod_penddemo.mdl 286件 [詳細] fileex_penddemo.m 258件 [詳細] file2013.11.21-1.jpg 764件 [詳細] file2013.11.21-2.jpg 574件 [詳細] file2013.11.21-3.jpg 665件 [詳細] file2013.11.21-4.jpg 600件 [詳細] file2013.11.21-5.jpg 542件 [詳細] file2013.11.14-1.jpg 576件 [詳細] file2013.11.14-2.jpg 542件 [詳細] file2013.11.14-3.jpg 593件 [詳細] file2013.11.14-4.jpg 544件 [詳細] file2013.11.14-5.jpg 522件 [詳細] fileex1114_1.m 473件 [詳細] fileexam1.pdf 607件 [詳細] file2013.10.31-1.jpg 545件 [詳細] file2013.10.31-2.jpg 619件 [詳細] file2013.10.31-3.jpg 571件 [詳細] fileex1031_2.m 501件 [詳細] fileex1031_1.m 480件 [詳細] file2013.10.24-1.jpg 694件 [詳細] file2013.10.24-2.jpg 628件 [詳細] file2013.10.24-3.jpg 688件 [詳細] file2013.10.24-4.jpg 628件 [詳細] fileex1024_1.m 514件 [詳細] fileex1024_2.m 533件 [詳細] fileex1024_4.m 513件 [詳細] fileex1024_3.m 544件 [詳細] file2013.10.17-1.jpg 675件 [詳細] file2013.10.17-2.jpg 824件 [詳細] file2013.10.17-4.jpg 705件 [詳細] file2013.10.17-5.jpg 656件 [詳細] file2013.10.17-6.jpg 728件 [詳細] file2013.10.17-3.jpg 703件 [詳細] fileex1017.m 498件 [詳細] file2013.10.10-1.jpg 654件 [詳細] file2013.10.10-2.jpg 708件 [詳細] file2013.10.10-3.jpg 652件 [詳細] file2013.10.10-4.jpg 767件 [詳細] fileex1010_1.m 524件 [詳細] fileex1010_2.m 534件 [詳細] fileex1010_3.m 510件 [詳細] filemod1010.mdl 608件 [詳細] file2013.09.26-1.jpg 792件 [詳細] file2013.09.26-2.jpg 746件 [詳細] file2013.09.26-3.jpg 704件 [詳細] file2013.09.26-4.jpg 685件 [詳細] fileex0926_2.m 531件 [詳細] fileex0926_1.m 523件 [詳細] file2013.09.19-1.jpg 640件 [詳細] file2013.09.19-2.jpg 634件 [詳細] file2013.09.19-3.jpg 601件 [詳細] file2013.09.19-4.jpg 604件 [詳細] fileJ.pdf 825件 [詳細] filemod0919.mdl 631件 [詳細] file2013.09.12-1.jpg 622件 [詳細] file2013.09.12-2.jpg 614件 [詳細] filemod0912_2.mdl 632件 [詳細] filemod0912_1.mdl 627件 [詳細] file2013.09.05-1.jpg 780件 [詳細] file2013.09.05-2.jpg 825件 [詳細] file2013.09.05-3.jpg 805件 [詳細] file2013.09.05-4.jpg 720件 [詳細] filemap_v1.0.pdf 872件 [詳細]

トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2013-12-25 (水) 09:03:07