🛰️航天仿真算法库 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
34class AST_CORE_API DetectorPeriapsis : public DetectorBodyRelated
35{
36public:
37 AST_OBJECT(DetectorPeriapsis)
38
39 static DetectorPeriapsis* New();
40
42
43 double getValue(const SpacecraftState& state, double t) const override;
44
45};
46
49AST_NAMESPACE_END
定义 DetectorBodyRelated.hpp:36
定义 DetectorPeriapsis.hpp:35
virtual double getValue(const SpacecraftState &state, double t) const =0
获取事件检测开关函数的值
航天器状态,包含轨道状态、质量、面积、阻力系数、光压、密度、压力、温度等属性
定义 SpacecraftState.hpp:38