🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
LandingSiteCalcSunAzimuth.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AstCore/SegmentCalculation.hpp"
25
26
27AST_NAMESPACE_BEGIN
28
35{
36public:
38
39 errc_t calculate(const Segment& segment, double& result) override;
40 Dimension getDimension() const override{return EDimension::eAngle;}
41};
42
43
46AST_NAMESPACE_END
47
48
49
50
量纲
定义 Dimension.hpp:360
定义 LandingSiteCalcSunAzimuth.hpp:35
Dimension getDimension() const override
获取计算结果的量纲
定义 LandingSiteCalcSunAzimuth.hpp:40
定义 SegmentCalculation.hpp:35
轨道段(虚基类),用于描述任务序列中的轨道段,例如初始状态段、轨道机动段、轨道预报段等
定义 Segment.hpp:45