📄 chap9_9.m
字号:
%仿真程序:chap9_9.m% Closed-loop system identification with frequency test (2008/1/31)clear all;close all;ts=0.001;Am=0.5;Gp=tf(5.235e005,[1,87.35,1.047e004,0]);zGp=c2d(Gp,ts,'z');[num,den]=tfdata(zGp,'v');kp=0.70;kk=0;u_1=0.0;u_2=0.0;u_3=0.0;y_1=0;y_2=0;y_3=0;for F=0.5:0.5:8kk=kk+1;FF(kk)=F;for k=1:1:2000time(k)=k*ts;yd(k)=Am*sin(1*2*pi*F*k*ts); % Tracking Sine Signal with different frequencyy(k)=-den(2)*y_1-den(3)*y_2-den(4)*y_3+num(2)*u_1+num(3)*u_2+num(4)*u_3;e(k)=yd(k)-y(k);u(k)=kp*e(k); %P Controlleru_3=u_2;u_2=u_1;u_1=u(k);y_3=y_2;y_2=y_1;y_1=y(k);endplot(time,yd,'r',time,y,'b');pause(0.6);for i=1:1:1000 fai(1,i) = sin(2*pi*F*i*ts); fai(2,i) = cos(2*pi*F*i*ts);endFai=fai';fai_in(kk)=0;Y_out=y(1001:1:2000)';cout=inv(Fai'*Fai)*Fai'*Y_out;fai_out(kk)=atan(cout(2)/cout(1)); % Phase Frequency(Deg.)Af(kk)=sqrt(cout(1)^2+cout(2)^2); % Magnitude Frequency(dB)mag_e(kk)=20*log10(Af(kk)/Am); % in dB.ph_e(kk)=(fai_out(kk)-fai_in(kk))*180/pi; % in Deg.if ph_e(kk)>0 ph_e(kk)=ph_e(kk)-360;endendFFFF=FF';%%%%%%%%%%%%%%% Closed system modelling %%%%%%%%%%%%%%%%%%mag_e1=Af'/Am; %From dB.to ratioph_e1=fai_out'-fai_in'; %From Deg. to radhp=mag_e1.*(cos(ph_e1)+j*sin(ph_e1)) %Practical frequency response vectorS=1;if S==1 na=3; %Three ranks nb=1;elseif S==2 na=3; %Four ranks nb=3;endw=2*pi*FF; % in rad./s% bb and aa gives real numerator and denominator of transfer function[bb,aa]=invfreqs(hp,w,nb,na); % w(in rad./s) contains the frequency valuessave model_Gc.mat bb aa;save closed.mat kp;Gc=tf(bb,aa) % Transfer function fittinghf=freqs(bb,aa,w); % Fited frequency response vector% Transfer function verify: Getting magnitude and phase of Bodesysmag=abs(hf); % ratio.sysmag1=20*log10(sysmag); % From ratio to dBsysph=angle(hf); % Rad.sysph1=sysph*180/pi; % From Rad.to Deg.% Compare practical Bode and identified Bodefigure(1);subplot(2,1,1); semilogx(w,mag_e,'r',w,sysmag1,'b');grid on;xlabel('rad./s');ylabel('Mag.(dB.)');subplot(2,1,2);semilogx(w,ph_e,'r',w,sysph1,'b');grid on;xlabel('rad./s');ylabel('Phase(Deg.)');figure(2);subplot(2,1,1); magError=sysmag1-mag_e';plot(w,magError,'r');xlabel('rad./s');ylabel('Mag.(dB.)');subplot(2,1,2); phError=sysph1-ph_e';plot(w,phError,'r');xlabel('rad./s');ylabel('Phase(Deg.)');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -