🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
USSA1976.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AtmosphereBase.hpp"
25
26AST_NAMESPACE_BEGIN
27
34class AST_CORE_API USSA1976: public AtmosphereBase
35{
36public:
37 using AtmosphereBase::AtmosphereBase;
38 double getDensity(const TimePoint& tp, const Vector3d& posInBodyFixed) const override;
39
40};
41
42
45AST_NAMESPACE_END
定义 AtmosphereBase.hpp:34
double getDensity(const TimePoint &tp, const Vector3d &posInBodyFixed) const override=0
获取大气密度
绝对时间点
定义 TimePoint.hpp:107
USSA1976大气模型
定义 USSA1976.hpp:35