91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 13KB
    文件類(lèi)型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2021-06-13
  • 語(yǔ)言: Matlab
  • 標(biāo)簽: 星歷表??

資源簡(jiǎn)介

用于測(cè)量八大行星在任一時(shí)刻在測(cè)站坐標(biāo)系下所處的位置和分速度。

資源截圖

代碼片段和文件信息

function?coe?=?coe_from_sv(RV)
%?computes?the?classical?orbital?elements?(coe)?from?the?state?vector?(RV)
%?------------------------------------------------------------
%
%?This?function?computes?the?classical?orbital?elements?(coe)
%?from?the?state?vector?(RV)?using?Algorithm?4.1.
%
%?mu????-?gravitational?parameter?(km^3/s^2)
%?R?????-?position?vector?in?the?geocentric?equatorial?frame?(km)
%?V?????-?velocity?vector?in?the?geocentric?equatorial?frame?(km)
%?r?v??-?the?magnitudes?of?R?and?V
%?vr????-?radial?velocity?component?(km/s)徑向速度
%?H?????-?the?angular?momentum?vector?(km^2/s)
%?h?????-?the?magnitude?of?H?(km^2/s)
%?incl??-?inclination?of?the?orbit?(rad)軌道傾角
%?N?????-?the?node?line?vector?(km^2/s)
%?n?????-?the?magnitude?of?N
%?cp????-?cross?product?of?N?and?R
%?RA????-?right?ascension?of?the?ascending?node?(rad)升交點(diǎn)角距?
%?E?????-?eccentricity?vector偏心率矢量
%?e?????-?eccentricity?(magnitude?of?E)
%?eps???-?a?small?number?below?which?the?eccentricity?is?considered?to?be?zero
%?w?????-?argument?of?perigee?(rad)近地點(diǎn)角距
%?TA????-?true?anomaly?(rad)真近點(diǎn)角
%?a?????-?semimajor?axis?(km)半長(zhǎng)軸
%?pi????-?3.1415926...
%?coe???-?vector?of?orbital?elements?[h?e?RA?incl?w?TA?a]
%
%?User?M-functions?required:?None
%?------------------------------------------------------------
%???This?.m?file?was?from?Appendix?D?of?the?book:
%????????(Howard?D.?Curtis)
%???You?could?get?appendix?D?from:?http://books.elsevier.com/companions
%?------------------------------------------------------------
%???Last?Edit?by:???????????Li?yunfei???2008/07/31
%?------------------------------------------------------------

global?mu;
eps?=?1.e-10;

r?=?norm(R);
v?=?norm(V);

vr?=?dot(RV)/r;

H?=?cross(RV);
h?=?norm(H);

%...Equation?4.7:
incl?=?acos(H(3)/h);

%...Equation?4.8:
N?=?cross([0?0?1]H);
n?=?norm(N);

%...Equation?4.9:
if?n~=?0
????RA?=?acos(N(1)/n);
????if?N(2)?????????RA?=?2*pi?-?RA;
????end
else
????RA?=?0;
end

%...Equation?4.10:
E?=?1/mu*((v^2?-?mu/r)*R?-?r*vr*V);
e?=?norm(E);

%...Equation?4.12?(incorporating?the?case?e?=?0):
if?n~=?0
????if?e?>?eps
????????w?=?acos(dot(NE)/n/e);
????????if?E(3)?????????????w?=?2*pi?-?w;
????????end
????else
????????w?=?0;
????end
else
????w?=?0;
end

%...Equation?4.13a?(incorporating?the?case?e?=?0):
if?e?>?eps
????TA?=?acos(dot(ER)/e/r);
????if?vr?????????TA?=?2*pi?-?TA;
????end
else
????cp?=?cross(NR);
????if?cp(3)?>=?0
????????TA?=?acos(dot(NR)/n/r);
????else
????????TA?=?2*pi?-?acos(dot(NR)/n/r);
????end
end

%...Equation?2.61?(a?a?=?h^2/mu/(1?-?e^2);

coe?=?[h?e?RA?incl?w?TA?a];

?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----

?????文件???????2757??2018-06-18?13:57??星歷表\coe_from_sv.m

?????文件???????1388??2017-04-26?20:00??星歷表\fDot_and_gDot.m

?????文件???????1193??2017-04-26?00:05??星歷表\f_and_g.m

?????文件???????3124??2017-04-26?20:24??星歷表\interplanetary.m

?????文件????????972??2008-07-31?09:15??星歷表\J0.m

?????文件????????121??2018-06-18?11:25??星歷表\kepler_E.m

?????文件???????4069??2018-06-18?17:13??星歷表\lambert.m

?????文件????????430??2018-06-18?17:10??星歷表\main.m

?????文件???????1770??2008-07-31?09:10??星歷表\month_planet_names.m

?????文件???????8442??2018-06-18?14:13??星歷表\planet_elements_and_sv.m

?????文件???????1954??2018-06-18?14:57??星歷表\skmain.m

?????文件????????931??2008-07-31?09:06??星歷表\stumpC.m

?????文件????????893??2008-07-31?09:05??星歷表\stumpS.m

?????文件???????2527??2018-06-18?14:13??星歷表\sv_from_coe.m

?????目錄??????????0??2018-07-04?10:41??星歷表

-----------?---------??----------?-----??----

????????????????30571????????????????????15


評(píng)論

共有 條評(píng)論