Advanced Automation

[lecture #1] 2011.9.1 review of classical control theory

[lecture #2] 2011.9.8 CACSD introduction with review of classical control theory

%-- 9/8/2011 1:25 PM --%
pwd
ls
example
s = tf('s')
G2 = 1/(s^2 + 2*s + 1)
step(G2)
hold on
G2 = 4/(s^2 + 4*s + 4)
step(G2, 'r')
omega_n = 3
zeta = 0.1
G2 = omega_n^2/(s^2 + 2*zeta*omega_n*s + omega_n^2)
step(G2, 'g')
figure(2)
bode(G2)
G3 = 9/(s^2 + 0.4*s + 9);
G4 = 9/(s^2 + 0.2*s + 9);
bode(G2, 'r', G3, 'g', G4, 'b')

#ref(): File not found: "2011.9.8-1.jpg" at page "授業/制御工学特論2011"

[lecture #3] 2011.9.15 given by Prof. Kimura cancelled

[lecture #4] 2010.9.22 given by Prof. Kimura

[lecture #5] 2010.9.29 given by Prof. Kimura

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! the followings are under construction !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

[lecture #3] 2010.9.16 CACSD introduction

#ref(): File not found: "ex1.m" at page "授業/制御工学特論2011"

#ref(): File not found: "mod1.mdl" at page "授業/制御工学特論2011"

#ref(): File not found: "ex2.m" at page "授業/制御工学特論2011"

#ref(): File not found: "ex3.m" at page "授業/制御工学特論2011"

#ref(): File not found: "ex4.m" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.9.16-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.9.16-2.jpg" at page "授業/制御工学特論2011"

[lecture #4] 2010.9.30 Intro. to Robust Control

#ref(): File not found: "ex21.m" at page "授業/制御工学特論2011"

#ref(): File not found: "ex22.m" at page "授業/制御工学特論2011"

s = tf('s')
G = 1/(s+1)
norm(G, 'inf')
P = 1/(s^2 + 0.2*s + 1)
K = 1
nyquist(P*K)
help impulse
impulse(P)
T = 1/(1 + P*K)
impulse(T)
sqrt(2)/(2*pi)
1/ans
step(T)
ex21
ex22

#ref(): File not found: "2010.9.30-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.9.30-2.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.9.30-3.jpg" at page "授業/制御工学特論2011"

[lecture #5] 2010.10.7 Introduction to Robust Control (cont.)

#ref(): File not found: "ex23.m" at page "授業/制御工学特論2011"

#ref(): File not found: "ex24.m" at page "授業/制御工学特論2011"

#ref(): File not found: "ex25.m" at page "授業/制御工学特論2011"

#ref(): File not found: "mod2.mdl" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.7-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.7-2.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.7-3.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.7-4.jpg" at page "授業/制御工学特論2011"

[lecture #6] 2010.10.14 norm, vector space, normed linear space

#ref(): File not found: "2010.10.14-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.14-2.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.14-3.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.14-4.jpg" at page "授業/制御工学特論2011"

[lecture #7] 2010.10.21 eigenvalue, eigenvector, singular value decomposition

A = [2, 1; 0, 1]
[X, L] = eig(A)
X*L/X - A
[U, S, V] = svd(A)
U*U'
V*V'
U*S*V'
U*S*V' - A
sqrt(eig(A'*A))
S

#ref(): File not found: "2010.10.21-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.21-2.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.21-3.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.21-4.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.21-5.jpg" at page "授業/制御工学特論2011"

[lecture #8] 2010.10.28 state space representation of connected system, state space representation of generalized plant for various control problem, mixed sensitivity problem

#ref(): File not found: "2010.10.28-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.10.28-2.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "ex26.m" at page "授業/制御工学特論2011"

[lecture #9] 2010.11.4 robust control design example: Robust Control System Synthesis for Pneumatic Systems (given by Prof. Kimura)

see RubustControlOfPneumatic-e.pdf in Prof. Kimura's homepage for detail

#ref(): File not found: "2010.11.4-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.11.4-2.jpg" at page "授業/制御工学特論2011"

[lecture #10] 2010.11.11 robust control design example (cont.)

  1. Design H infinity controller with Eqs.(41)-(47) and generalized plant depicted in Fig.3 in the pdf file.
    1. Confirm the following m-file for design:

      #ref(): File not found: "pneum.m" at page "授業/制御工学特論2011"

      #ref(): File not found: "pneum_ans.m" at page "授業/制御工学特論2011"

    2. Derive the generalized plant by hand and correct the m-file.
    3. Run the m-file to find controller.
  2. Simulation

    #ref(): File not found: "simu_pneum.mdl" at page "授業/制御工学特論2011"

    #ref(): File not found: "simu_pneum_noise.mdl" at page "授業/制御工学特論2011"

simu_pneum
plot(t, y, 'r', t, r, 'b');

simu_pneum_noise
plot(t, y, 'r', t, n, 'b')

#ref(): File not found: "2010.11.11-1.jpg" at page "授業/制御工学特論2011"

#ref(): File not found: "2010.11.11-2.jpg" at page "授業/制御工学特論2011"

[lecture #11] 2010.11.18 robust control design example (cont.) (given by Prof. Kimura)

Exercise

  1. step response
  2. noise response (noise type: step, sinusoidal wave 1Hz, 50Hz, 500Hz)
  3. initial response (x(0) = [1;0;0])

#ref(): File not found: "2010.11.18-1.jpg" at page "授業/制御工学特論2011"

[lecture #12] 2010.11.25 Speed control of two inertia system with servo motor (1/3)

#ref(): File not found: "2010.11.25-1.jpg" at page "授業/制御工学特論2011"

[lecture #13] 2010.12.2 Speed control of two inertia system with servo motor (2/3)

  1. design your controller so that the system performance is improved compared with the given example above
  2. Draw the following figures and explain the difference between two control systems:
    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: 28th(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 and cont_order.dat to kobayasi@nagaokaut.ac.jp not later than 24th Dec

[lecture #14] 2010.12.9 Speed control of two inertia system with servo motor (3/3)

Due to a dimension change of the driven shaft, frequency response experiment has been re-conducted. Please use the following fixed files instead of the ones introduced on the previous lecture.

#ref(): File not found: "2010.12.9-1.jpg" at page "授業/制御工学特論2011"

[lecture #15] 2010.12.16 Speed control of two inertia system with servo motor (cont.)

participant list2010

related links


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS