當前位置:編程學習大全網 - 編程軟體 - matlab 卡爾曼濾波器PID控制程序。

matlab 卡爾曼濾波器PID控制程序。

clc% 清屏

clear all; %刪除workspace變量

close all; %關掉顯示圖形窗口

ts=0.001; %仿真時間

M=3000; %Gen

%Continuous Plant

a=25;b=133;

sys=tf(b,[1,a,0]);%傳遞函數

dsys=c2d(sys,ts,'z'); %離散化

[num,den]=tfdata(dsys,'v');

A1=[0 1;0 -a];

B1=[0;b];

C1=[1 0];

D1=[0];

[A,B,C,D]=c2dm(A1,B1,C1,D1,ts,'z');

Q=1; %Covariances of w

R=1; %Covariances of v

P=B*Q*B'; %Initial error covariance

x=zeros(2,1); %Initial condition on the state

ye=zeros(M,1);

ycov=zeros(M,1);

u_1=0;u_2=0;

y_1=0;y_2=0;

for k=1:1:M

time(k)=k*ts;

w(k)=0.10*rands(1); %Process noise on u

v(k)=0.10*rands(1); %Measurement noise on y

u(k)=1.0*sin(2*pi*1.5*k*ts); %正弦信號

u(k)=u(k)+w(k);

y(k)=-den(2)*y_1-den(3)*y_2+num(2)*u_1+num(3)*u_2;

yv(k)=y(k)+v(k);

%Measurement update

Mn=P*C'/(C*P*C'+R);

P=A*P*A'+B*Q*B';

P=(eye(2)-Mn*C)*P;

x=A*x+Mn*(yv(k)-C*A*x);

ye(k)=C*x+D; %Filtered value

errcov(k)=C*P*C'; %Covariance of estimation error

%Time update

x=A*x+B*u(k);

u_2=u_1;u_1=u(k);

y_2=y_1;y_1=ye(k);

end

figure(1);

plot(time,yv,'k:',time,y,'r','linewidth',2);

xlabel('時間(s)');ylabel('y,yv')

grid on

legend('噪聲信號','理想信號');

figure(2);

plot(time,y,'r',time,ye,'k:','linewidth',2);

xlabel('時間(s)');ylabel('y,ye')

grid on

legend('理想信號','濾波信號');

figure(3);

plot(time,errcov,'k','linewidth',2);

grid on

xlabel('時間(s)');ylabel('誤差協方差');

  • 上一篇:有什麽可以在家做的工作
  • 下一篇:雲計算的核心特征是
  • copyright 2024編程學習大全網