标签:adaptive control adaptive control sys
(2)调节时间(过渡过程时间)1 s
%% **************************************************************** % Series compensator demonstration % Code writer : EOF % Code date : 2014.05.27 % e-mail : jasonleaster@gmail.com % If you have any question about this code, you could touch me by e-mail. % I glad to answer your question and study adaptive control together. Thank % you. % **************************************************************************** clear all clc original_open_sys = tf([5],[0.1 0.2 0]); original_closed_sys = feedback(original_open_sys,1); compensator = tf([13.9*0.047 1],[0.047 1]); compensated_open_sys = compensator * original_open_sys; compensated_closed_sys = feedback(compensated_open_sys,1); figure(1); hold on; step(original_closed_sys); step(compensated_closed_sys); grid on; title('The different response between the original closed sytem and the complendted closed system'); legend('original closed system','compensated closed system');
series compensator 串联校正 自动控制原理实验,布布扣,bubuko.com
series compensator 串联校正 自动控制原理实验
标签:adaptive control adaptive control sys
原文地址:http://blog.csdn.net/cinmyheart/article/details/27170403