🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
BlockAstro.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AstCore/FuncBlock.hpp"
25
26AST_NAMESPACE_BEGIN
27
28constexpr const char* kIdentifierPos = "Pos";
29constexpr const char* kIdentifierVel = "Vel";
30constexpr const char* kIdentifierAcc = "Acc";
31constexpr const char* kIdentifierAccTwoBody = "AccTwoBody";
32constexpr const char* kIdentifierAccThirdBody = "AccThirdBody";
33constexpr const char* kIdentifierAccGravity = "AccGravity";
34constexpr const char* kIdentifierAccGravityPert = "AccGravityPert";
35constexpr const char* kIdentifierAccRelativity = "AccRelativity";
36constexpr const char* kIdentifierAccDrag = "AccDrag";
37constexpr const char* kIdentifierAccSRP = "AccSRP";
38
39using BlockAstro = FuncBlock; // @todo;
40
41
42AST_NAMESPACE_END