satvis.m
来自「航天工程工具箱」· M 代码 · 共 15 行
M
15 行
function [phi,s]=satvis(el0,R,h)
%SATVIS Visibility of satellite.
% [PHI,S]=SATVIS(EL0,R,H) gives the visibility of the satellite
% in terms of angle from base station with respect to Earth centre
% at a distance R from the surface. EL0 is the minimum elevation angle
% with respect to the horizon plane of a satellite at altitude H.
% S is the distance from base station along the earth surface to the
% subsatellite point where the limit of visibility occurs.
%
% See also ORB2CART, MSATTRACK.
% Copyright (c) 2003-04-03, B. Rasmus Anthin.
phi=acos(R/(R+h)*cos(el0))-el0;
s=R*phi;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?