123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- clear all;
- vwn_truth = 4.0;
- vwe_truth = 3.0;
- vwd_truth = -0.5;
-
-
- K_truth = 1.2;
- DT = 1.0;
- P = diag([10^2 10^2 0.001^2]);
- Q = diag([0.1^2 0.1^2 0.001^2])*DT^2;
- x = [0;0;1.0];
- for i = 1:1000
-
-
-
-
- time = i*DT;
- radius = 60;
- TAS_truth = 16;
- vwnrel_truth = TAS_truth*cos(TAS_truth*time/radius);
- vwerel_truth = TAS_truth*sin(TAS_truth*time/radius);
- vwdrel_truth = 0.0;
- vgn_truth = vwnrel_truth + vwn_truth;
- vge_truth = vwerel_truth + vwe_truth;
- vgd_truth = vwdrel_truth + vwd_truth;
-
-
-
- vgn_mea = vgn_truth + 0.1*rand;
- vge_mea = vge_truth + 0.1*rand;
- vgd_mea = vgd_truth + 0.1*rand;
- TAS_mea = K_truth * TAS_truth + 0.5*rand;
-
-
-
-
-
-
-
-
- P = P + Q;
-
-
-
-
-
- TAS_pred = x(3) * sqrt((vgn_mea - x(1))^2 + (vge_mea - x(2))^2 + vgd_mea^2);
-
-
- SH1 = (vge_mea - x(2))^2 + (vgn_mea - x(1))^2;
- SH2 = 1/sqrt(SH1);
- H_TAS = zeros(1,3);
- H_TAS(1,1) = -(x(3)*SH2*(2*vgn_mea - 2*x(1)))/2;
- H_TAS(1,2) = -(x(3)*SH2*(2*vge_mea - 2*x(2)))/2;
- H_TAS(1,3) = 1/SH2;
-
-
-
- S = H_TAS*P*H_TAS' + 1.0;
-
-
- KG = P*H_TAS'/S;
-
-
- x = x + KG*(TAS_mea - TAS_pred);
-
-
- P = P - KG*H_TAS*P;
-
-
-
-
-
-
-
- P = 0.5*(P + P');
-
-
- output(i,:) = [time,x(1),x(2),x(3),vwn_truth,vwe_truth,K_truth];
-
- end
- figure;
- subplot(3,1,1);plot(output(:,1),[output(:,2),output(:,5)]);
- ylabel('Wind Vel North (m/s)');
- xlabel('time (sec)');
- grid on;
- subplot(3,1,2);plot(output(:,1),[output(:,3),output(:,6)]);
- ylabel('Wind Vel East (m/s)');
- xlabel('time (sec)');
- grid on;
- subplot(3,1,3);plot(output(:,1),[output(:,4),output(:,7)]);
- ylim([0 1.5]);
- ylabel('Airspeed scale factor correction');
- xlabel('time (sec)');
- grid on;
|