🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
DetectorPeriapsis.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "EventDetector.hpp"
26
27AST_NAMESPACE_BEGIN
28
35class AST_CORE_API DetectorPeriapsis : public DetectorBodyRelated
36{
37public:
38 AST_OBJECT(DetectorPeriapsis)
39
40 static DetectorPeriapsis* New();
41 static SharedPtr<DetectorPeriapsis> MakeShared();
42
44
45 double getValue(const SpacecraftState& state, double t) const override;
46
47};
48
51AST_NAMESPACE_END
定义 DetectorBodyRelated.hpp:36
近拱点事件检测器
定义 DetectorPeriapsis.hpp:36
virtual double getValue(const SpacecraftState &state, double t) const =0
获取事件检测开关函数的值
共享指针
定义 SharedPtr.hpp:33
航天器状态,包含轨道状态、航天器参数(质量、面积、阻力系数、光压、密度、压力、温度等)
定义 SpacecraftState.hpp:39