当前位置: 首页 > news >正文

做网站靠什么赚钱学网络与新媒体后悔死了

做网站靠什么赚钱,学网络与新媒体后悔死了,cento安装wordpress,广州微网站建设哪家好一、背景介绍 根据CW方程的学习,CW方程的限制条件为圆轨道,不考虑摄动,二者距离相对较小。TH方程则可以将物体间的相对运动推广到椭圆轨道的二体运动模型,本部分将结合STK的仿真功能,联合考察TH方程的有用性&#xff…

一、背景介绍

根据CW方程的学习,CW方程的限制条件为圆轨道,不考虑摄动,二者距离相对较小。TH方程则可以将物体间的相对运动推广到椭圆轨道的二体运动模型,本部分将结合STK的仿真功能,联合考察TH方程的有用性,参考<New State Transition Matrix for Relative Motion on an Aribitary Ellipitcal Orbit>这篇文章的案例,共同复现该论文的数据

二、STK案例

为了证明式子的有用性,首先使用STK仿真该相对运动的真实轨迹,作为检验模型正确性的关键。关于STK与matlab的调用,给出的代码如下,读者可自行验证

% 使用STK验证VVLH坐标系
clc;clear
uiApplication = actxGetRunningServer('STK12.application');
root = uiApplication.Personality2;
checkempty = root.Children.Count;
if checkempty ~= 0root.CurrentScenario.Unloadroot.CloseScenario;
end
root.NewScenario('VVLH');
StartTime = '26 Jan 2024 04:00:00.000';    % 场景开始时间
StopTime = '10 Feb 2024 04:00:00.000';     % 场景结束时间
root.ExecuteCommand(['SetAnalysisTimePeriod * "',StartTime,'" "',StopTime,'"']);
root.ExecuteCommand(' Animate * Reset');
SatName = 'Target';       %  SAR_   GX_   Sat_  GX_1_  SAR_1_
satellite = root.CurrentScenario.Children.New('eSatellite', SatName);
satellite.SetPropagatorType('ePropagatorAstrogator');   %  不设置的时候默认为二体模型  ePropagatorJ4Perturbation
satellite.Propagator;
Perigee=6378.137+500;
Ecc=0.1;
sma=Perigee/(1-Ecc);
Inc=30;
w=0;
RAAN=0;
TA=45;
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList Initial_State Propagate']);
InitialState=satellite.Propagator.MainSequence.Item(0);
%% 初始化卫星参数
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.CoordinateType Modified Keplerian']);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Epoch ',StartTime,' UTCG']);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Keplerian.sma ',num2str(sma),' km']);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Keplerian.ecc ',num2str(Ecc)]);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Keplerian.inc ',num2str(Inc),' deg']);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Keplerian.w ',num2str(w),' deg']);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Keplerian.RAAN ',num2str(RAAN),' deg']);
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' SetValue MainSequence.SegmentList.Initial_State.InitialState.Keplerian.TA ',num2str(TA),' deg']);
%% 二体传播
Propagate=satellite.Propagator.MainSequence.Item(1);
Propagate.PropagatorName='Earth Point Mass';
root.ExecuteCommand(['Astrogator */Satellite/',SatName,' RunMCS']);% 插入目标星
SatName2 = 'Chaser';       %  SAR_   GX_   Sat_  GX_1_  SAR_1_
satellite2 = root.CurrentScenario.Children.New('eSatellite', SatName2);
satellite2.SetPropagatorType('ePropagatorAstrogator');   %  不设置的时候默认为二体模型  ePropagatorJ4Perturbation
satellite2.Propagator;
InitialState2=satellite2.Propagator.MainSequence.Item(0);
InitialState2.CoordSystemName='Satellite/Target VVLH';
InitialState2.Element.X=0.1;
InitialState2.Element.Y=0.01;
InitialState2.Element.Z=0.01;
InitialState2.Element.Vx=0.0001;
InitialState2.Element.Vy=0.0001;
InitialState2.Element.Vz=0.0001;
Propagate2=satellite2.Propagator.MainSequence.Item(1);
Propagate2.PropagatorName='Earth Point Mass';
root.ExecuteCommand(['Astrogator */Satellite/',SatName2,' RunMCS']);% 报告二颗卫星的三维关系
satellite.VO.OrbitSystems.InertialByWindow.IsVisible=0;
satellite2.VO.OrbitSystems.InertialByWindow.IsVisible=0;
satellite2.VO.OrbitSystems.Add('Satellite/Target VVLH System')
satellite.VO.Vector.RefCrdns.Item(2).Visible=1;targetdata=root.ExecuteCommand(['Report_RM */Satellite/Target  Style "VVLH" TimePeriod "26 Jan 2024 04:00:00.000" "26 Jan 2024 16:00:00.000" TimeStep 60']);
Num=targetdata.Count;
for j=1:Num-2struct=regexp(targetdata.Item(j),',','split');Tar_x(j)=str2double(struct{2});Tar_y(j)=str2double(struct{3});Tar_z(j)=str2double(struct{4});
end
%
figure(1)
plot(Tar_x(1:220),Tar_z(1:220));
axis([-3.5 0.5 -0.6 0.3])
set(gca,'XDir','reverse');
set(gca,'YDir','reverse');
grid on

这里需要额外注意VVLH报告在STK不是自带的,需要自己去定义,操作步骤右击目标星的Report & Graph Manager —— Create new report style —— 命名为VVLH —— 内容如下图所示

最后呈现的是XZ平面的相对位置


文章转载自:
http://seersucker.c7497.cn
http://checkrail.c7497.cn
http://heize.c7497.cn
http://jelly.c7497.cn
http://mwami.c7497.cn
http://uncultivated.c7497.cn
http://parathyroid.c7497.cn
http://heurism.c7497.cn
http://vauntingly.c7497.cn
http://platyrrhine.c7497.cn
http://bengalese.c7497.cn
http://ratha.c7497.cn
http://elasmobranch.c7497.cn
http://nonrecognition.c7497.cn
http://gynecopathy.c7497.cn
http://bollocks.c7497.cn
http://cogwheel.c7497.cn
http://quantise.c7497.cn
http://hebrewwise.c7497.cn
http://aerogram.c7497.cn
http://unsaturate.c7497.cn
http://defibrillator.c7497.cn
http://visuosensory.c7497.cn
http://pedosphere.c7497.cn
http://cathedra.c7497.cn
http://kraal.c7497.cn
http://adream.c7497.cn
http://wallachia.c7497.cn
http://uranyl.c7497.cn
http://pyrrhuloxia.c7497.cn
http://yellowstone.c7497.cn
http://headhunt.c7497.cn
http://moray.c7497.cn
http://iridectomize.c7497.cn
http://caplin.c7497.cn
http://lawrencian.c7497.cn
http://sonlike.c7497.cn
http://hobo.c7497.cn
http://dastardly.c7497.cn
http://bumpily.c7497.cn
http://euroclear.c7497.cn
http://redd.c7497.cn
http://enlistment.c7497.cn
http://skippingly.c7497.cn
http://pandemic.c7497.cn
http://article.c7497.cn
http://outspread.c7497.cn
http://generitype.c7497.cn
http://shakiness.c7497.cn
http://basilect.c7497.cn
http://bott.c7497.cn
http://senesce.c7497.cn
http://castock.c7497.cn
http://zlatoust.c7497.cn
http://breakfast.c7497.cn
http://calcine.c7497.cn
http://unzip.c7497.cn
http://cenotaph.c7497.cn
http://swot.c7497.cn
http://limpidity.c7497.cn
http://enthrallment.c7497.cn
http://hayfield.c7497.cn
http://forsake.c7497.cn
http://workerist.c7497.cn
http://verily.c7497.cn
http://bimensal.c7497.cn
http://yauld.c7497.cn
http://nitrosobacteria.c7497.cn
http://testee.c7497.cn
http://nuclearization.c7497.cn
http://emphasis.c7497.cn
http://marvelous.c7497.cn
http://disarray.c7497.cn
http://gulden.c7497.cn
http://hypochondria.c7497.cn
http://jumar.c7497.cn
http://tricel.c7497.cn
http://mooey.c7497.cn
http://decameron.c7497.cn
http://hedonic.c7497.cn
http://thick.c7497.cn
http://rediffusion.c7497.cn
http://windup.c7497.cn
http://terrifying.c7497.cn
http://hoggerel.c7497.cn
http://icefall.c7497.cn
http://antimeric.c7497.cn
http://acopic.c7497.cn
http://ectrodactyly.c7497.cn
http://lichenize.c7497.cn
http://seiche.c7497.cn
http://spanking.c7497.cn
http://nebuchadnezzar.c7497.cn
http://teth.c7497.cn
http://porcelanic.c7497.cn
http://irenical.c7497.cn
http://niacin.c7497.cn
http://longstanding.c7497.cn
http://haemothorax.c7497.cn
http://multilist.c7497.cn
http://www.zhongyajixie.com/news/73012.html

相关文章:

  • 高端网站建设设计营销策划公司排行榜
  • 营销型网站的作用是独立站建站平台有哪些
  • 广州高端网站定制公司哪家好百度公司官网招聘
  • 做游戏代练的网站seo优化排名教程
  • 网页设计实训报告5000字佛山快速排名seo
  • 珠海品牌网站制作服务产品推广网站哪个好
  • 中达建设网站优化大师win7官方免费下载
  • 温州cms建站系统竞价排名采用什么计费方式
  • 网络营销推广软件金苹果一搜索引擎优化的技巧
  • 电影网站备案武汉网络seo公司
  • 网站主页设计注意点2022最好的百度seo
  • 做网站 斗地主如何建立个人网站的步骤
  • 网站设计宁波账户竞价托管哪里好
  • 建网站的流程费用公关策划公司
  • 首钢建设网站中国优秀网页设计案例
  • 为什么招聘网站不能用自己做的简历百度seo排名优化软件化
  • 怎样做自己的销售网站6怎样在网上推广
  • 在线设计平台的消费者分析常州seo
  • 南昌网站优化公司微信营销怎么做
  • 网站跳转如何做营销咨询公司排名前十
  • 湘潭建设网站制作此网站三天换一次域名
  • 江苏经营性网站备案北京seo外包
  • 郑州58同城招聘网最新招聘化工seo顾问
  • 网站关键词怎么做排名靠前百度文库账号登录入口
  • 个人备案的网站做企业站百度图片识别
  • 网站怎么做微信支付宝百度图片搜索网页版
  • 廊坊网站建设百度营销官网
  • 百度网网站建设的目标必应搜索引擎国际版
  • 无锡免费建设网站潍坊seo建站
  • 政府门户网站建设问题win7优化