⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 insdem01.m

📁 gpsoft 的惯性导航工具箱
💻 M
字号:
%
%   insdem01.m
%
%   program to show the use of PROGEN.M
%
%
clear
close

initpos = [0 0 0];   % initial position
initvel = [0 0 0];   % initial velocity
initacc = [0 0 0];   % initial acceleration

phi=0*pi/180;       % initial roll angle is zero
theta=0*pi/180;     % initial pitch angle is zero
psi=0*pi/180;       % initial yaw angle is zero (thus aircraft is pointed north)

initdcm=eulr2dcm([phi theta psi]);   % Compute initial direction cosine matrix
%                                    % for aircraft attitude (nav-to-body frame)

segparam = [2  10 0.1   0 -999 0 -999 0 0.1;    % 1 - Level acceleration for 10 seconds
            4 NaN NaN NaN -999 0   10 1 0.1;    % 2 - pitch up transition
            1  15 NaN NaN -999 0 -999 0 1;    % 3 - 15 second climb
            4 NaN NaN NaN -999 0    0 1 0.1;    % 4 - level off
            4 NaN NaN NaN  -15 3 -999 0 0.1;    % 5 - roll into a turn
            3 NaN NaN  90 -999 0 -999 0 0.005;    % 6 - 90 degree turn
            4 NaN NaN NaN    0 3 -999 0 0.1;    % 7 - roll back to straight and level
            1  10 NaN NaN -999 0 -999 0 1];    % 8 - 10 second straight segment to the West?

profile = progen(initpos,initvel,initdcm,segparam);
time = profile(:,19);   % run time in seconds

for k = 1:size(profile,1),
    dcmnb=[profile(k,10:12); profile(k,13:15); profile(k,16:18)];
    dcmbn=dcmnb';
    eulv=dcm2eulr(dcmbn);
    roll(k) = eulv(1)*180/pi;
    pitch(k) = eulv(2)*180/pi;
    yaw(k) = eulv(3)*180/pi; 
    if yaw(k) < 0, yaw(k)=yaw(k)+360; end
end

plot3(profile(:,1),profile(:,2),profile(:,3))
axis equal
title('Flight Path Generated By PROGEN')
xlabel('east (meters)')
ylabel('north (meters)')
zlabel('up (meters)')
grid

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -