🛰️航天仿真算法库 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
34
35constexpr const char* kIdentifierPos = "Pos";
36constexpr const char* kIdentifierVel = "Vel";
37constexpr const char* kIdentifierMass = "Mass";
38
39constexpr const char* kIdentifierAcc = "Acc";
40constexpr const char* kIdentifierAccTwoBody = "AccTwoBody";
41constexpr const char* kIdentifierAccThirdBody = "AccThirdBody";
42constexpr const char* kIdentifierAccGravity = "AccGravity";
43constexpr const char* kIdentifierAccGravityPert = "AccGravityPert";
44constexpr const char* kIdentifierAccRelativity = "AccRelativity";
45constexpr const char* kIdentifierAccDrag = "AccDrag";
46constexpr const char* kIdentifierAccSRP = "AccSRP";
47
49
51using BlockAstro = FuncBlock; // @todo;
52
53
54AST_NAMESPACE_END
函数块/功能块
定义 FuncBlock.hpp:41
constexpr const char * kIdentifierAccGravity
重力场加速度(3维向量)
定义 BlockAstro.hpp:42
constexpr const char * kIdentifierVel
速度信号(预报坐标系下,3维向量)
定义 BlockAstro.hpp:36
constexpr const char * kIdentifierAccDrag
大气阻力加速度(3维向量)
定义 BlockAstro.hpp:45
constexpr const char * kIdentifierAccThirdBody
三体引力加速度(3维向量)
定义 BlockAstro.hpp:41
constexpr const char * kIdentifierAccRelativity
相对论修正加速度(3维向量)
定义 BlockAstro.hpp:44
constexpr const char * kIdentifierAccGravityPert
重力场摄动加速度(3维向量)
定义 BlockAstro.hpp:43
constexpr const char * kIdentifierAccSRP
太阳辐射压力加速度(3维向量)
定义 BlockAstro.hpp:46
constexpr const char * kIdentifierAcc
总加速度信号(3维向量)
定义 BlockAstro.hpp:39
constexpr const char * kIdentifierPos
位置信号(预报坐标系下,3维向量)
定义 BlockAstro.hpp:35
constexpr const char * kIdentifierMass
质量信号(标量)
定义 BlockAstro.hpp:37
constexpr const char * kIdentifierAccTwoBody
二体引力加速度(3维向量)
定义 BlockAstro.hpp:40