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 564件 [詳細] file2013.12.19-2.jpg 554件 [詳細] filecont_ex3.m 482件 [詳細] fileex4.mp4 450件 [詳細] fileex3.mp4 449件 [詳細] fileex1.mp4 437件 [詳細] fileopenloop.mp4 452件 [詳細] file2013.12.12-1.jpg 511件 [詳細] file2013.12.12-2.jpg 617件 [詳細] file2013.12.12-3.jpg 534件 [詳細] filecont_ex4.m 484件 [詳細] filehinf_app.c 789件 [詳細] filehinf_module.c 637件 [詳細] filehinf.h 508件 [詳細] filepulse.h 433件 [詳細] filepulse_module.c 511件 [詳細] filefreqresp_app.c 616件 [詳細] filefreqresp.h 546件 [詳細] filefreqresp_module.c 540件 [詳細] filecommon.h 475件 [詳細] filecont_ex2.m 476件 [詳細] filecompare.m 530件 [詳細] fileresult_ex4.dat 497件 [詳細] fileresult_ex3.dat 418件 [詳細] fileresult_ex2.dat 507件 [詳細] filecont_ex4_order.dat 415件 [詳細] filecont_ex3_order.dat 388件 [詳細] filecont_ex2_order.dat 409件 [詳細] filecont_ex4.dat 438件 [詳細] filecont_ex3.dat 394件 [詳細] filecont_ex2.dat 441件 [詳細] filecont_ex4.mat 429件 [詳細] filecont_ex3.mat 423件 [詳細] filecont_ex2.mat 485件 [詳細] filenominal_ex3.m 489件 [詳細] fileweight_ex3.m 426件 [詳細] fileweight_ex4.m 451件 [詳細] fileweight_ex2.m 471件 [詳細] filecheck_pcont.m 466件 [詳細] filecont_P.dat 487件 [詳細] filecont_P_order.dat 404件 [詳細] fileresult_P.dat 433件 [詳細] fileresult_openloop.dat 492件 [詳細] filependulum2.jpg 604件 [詳細] filefreqresp_fixed.m 502件 [詳細] filefrdata_0.5mm.dat 504件 [詳細] file2013.12.5-1.jpg 555件 [詳細] file2013.12.5-2.jpg 519件 [詳細] file2013.12.5-3.jpg 603件 [詳細] filefrdata_0_3.dat 448件 [詳細] filefrdata_0_2.dat 467件 [詳細] filefrdata_0_4.dat 427件 [詳細] filefreqresp.m 514件 [詳細] filephoto1.jpg 699件 [詳細] filephoto2.jpg 602件 [詳細] filephoto3.jpg 592件 [詳細] filephoto4.jpg 587件 [詳細] filephoto5.jpg 545件 [詳細] file2013.11.28-1.jpg 580件 [詳細] file2013.11.28-2.jpg 533件 [詳細] file2013.11.28-3.jpg 547件 [詳細] file2013.11.28-4.jpg 625件 [詳細] filemod1128_1.mdl 522件 [詳細] fileex1128_1.m 479件 [詳細] filemod_penddemo.mdl 290件 [詳細] fileex_penddemo.m 262件 [詳細] file2013.11.21-1.jpg 768件 [詳細] file2013.11.21-2.jpg 578件 [詳細] file2013.11.21-3.jpg 668件 [詳細] file2013.11.21-4.jpg 605件 [詳細] file2013.11.21-5.jpg 547件 [詳細] file2013.11.14-1.jpg 582件 [詳細] file2013.11.14-2.jpg 547件 [詳細] file2013.11.14-3.jpg 597件 [詳細] file2013.11.14-4.jpg 546件 [詳細] file2013.11.14-5.jpg 525件 [詳細] fileex1114_1.m 477件 [詳細] fileexam1.pdf 615件 [詳細] file2013.10.31-1.jpg 551件 [詳細] file2013.10.31-2.jpg 626件 [詳細] file2013.10.31-3.jpg 575件 [詳細] fileex1031_2.m 506件 [詳細] fileex1031_1.m 484件 [詳細] file2013.10.24-1.jpg 697件 [詳細] file2013.10.24-2.jpg 632件 [詳細] file2013.10.24-3.jpg 692件 [詳細] file2013.10.24-4.jpg 633件 [詳細] fileex1024_1.m 520件 [詳細] fileex1024_2.m 539件 [詳細] fileex1024_4.m 519件 [詳細] fileex1024_3.m 547件 [詳細] file2013.10.17-1.jpg 679件 [詳細] file2013.10.17-2.jpg 828件 [詳細] file2013.10.17-4.jpg 708件 [詳細] file2013.10.17-5.jpg 660件 [詳細] file2013.10.17-6.jpg 733件 [詳細] file2013.10.17-3.jpg 707件 [詳細] fileex1017.m 502件 [詳細] file2013.10.10-1.jpg 661件 [詳細] file2013.10.10-2.jpg 713件 [詳細] file2013.10.10-3.jpg 656件 [詳細] file2013.10.10-4.jpg 771件 [詳細] fileex1010_1.m 528件 [詳細] fileex1010_2.m 540件 [詳細] fileex1010_3.m 513件 [詳細] filemod1010.mdl 613件 [詳細] file2013.09.26-1.jpg 795件 [詳細] file2013.09.26-2.jpg 750件 [詳細] file2013.09.26-3.jpg 707件 [詳細] file2013.09.26-4.jpg 688件 [詳細] fileex0926_2.m 538件 [詳細] fileex0926_1.m 528件 [詳細] file2013.09.19-1.jpg 644件 [詳細] file2013.09.19-2.jpg 636件 [詳細] file2013.09.19-3.jpg 605件 [詳細] file2013.09.19-4.jpg 608件 [詳細] fileJ.pdf 837件 [詳細] filemod0919.mdl 635件 [詳細] file2013.09.12-1.jpg 626件 [詳細] file2013.09.12-2.jpg 619件 [詳細] filemod0912_2.mdl 637件 [詳細] filemod0912_1.mdl 632件 [詳細] file2013.09.05-1.jpg 783件 [詳細] file2013.09.05-2.jpg 829件 [詳細] file2013.09.05-3.jpg 808件 [詳細] file2013.09.05-4.jpg 724件 [詳細] filemap_v1.0.pdf 878件 [詳細]

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