test_cone_gen.m
上传用户:skyjin520
上传日期:2016-12-06
资源大小:20k
文件大小:1k
源码类别:

交通/航空行业

开发平台:

Matlab

  1. clear
  2. close
  3. glvs
  4. afa = 1.0*glv.deg;  %半锥角
  5. f = 1;    %锥运动频率(Hz)
  6. th = 0.01;       %采样时间
  7. w = 2*pi*f;     %锥运动频率
  8. time = 10;  %仿真时间长度
  9. len = fix(time/th);  %仿真步数
  10. t = 0;          %初始姿态四元数
  11. qnb0 = [cos(afa/2); sin(afa/2)*cos(w*t); sin(afa/2)*sin(w*t); 0];  
  12. for k=1:len
  13.     % 姿态四元数真值
  14.     t = k*th;
  15.     qnbk(k,:) = [cos(afa/2); sin(afa/2)*cos(w*t); sin(afa/2)*sin(w*t); 0]';
  16.     % 角增量
  17.     t = (k-1)*th;
  18.     dthetak(k,:) = [-2*sin(afa)*sin(w*th/2)*sin(w*(t+th/2));
  19.         2*sin(afa)*sin(w*th/2)*cos(w*(t+th/2));
  20.         -2*w*th*(sin(afa/2))^2 ]';
  21. end
  22. save test_cone_gen_1deg_1Hz.mat   afa f th qnb0 qnbk dthetak
  23. figure
  24. subplot(3,1,1), plot([1:len]*th,dthetak(:,1)/glv.sec), ylabel('itDeltatheta_xrm / arcsec'); grid on 
  25. subplot(3,1,2), plot([1:len]*th,dthetak(:,2)/glv.sec), ylabel('itDeltatheta_yrm / arcsec'); grid on
  26. subplot(3,1,3), plot([1:len]*th,dthetak(:,3)/glv.sec), ylabel('itDeltatheta_zrm / arcsec'); grid on
  27. xlabel('itt rm / s');