🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
BlockMotionPartial.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "BlockMotion.hpp"
25#include "AstMath/Matrix.hpp"
26
27AST_NAMESPACE_BEGIN
28
58class AST_CORE_API BlockMotionPartial : public BlockMotion
59{
60public:
62
64 BlockMotionPartial& operator=(const BlockMotionPartial&) = delete;
65
66 errc_t run(const SimTime& simTime) override;
67private:
68 void init();
69private:
70 Matrix6d* aMatrixPtr_{&aMatrixBuffer_};
71 Matrix6d aMatrixBuffer_{};
72};
73
76AST_NAMESPACE_END
运动学偏导数函数块
定义 BlockMotionPartial.hpp:59
运动学函数块
定义 BlockMotion.hpp:44
errc_t run(const SimTime &simTime) override
计算函数块
定义 BlockMotion.cpp:59
仿真时间
定义 SimTime.hpp:30