🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
ast::MotionSimpleAscent类 参考

#include <MotionSimpleAscent.hpp>

+ 类 ast::MotionSimpleAscent 继承关系图:

Public 成员函数

errc_t makeEphemerisSpec (ScopedPtr< Ephemeris > &eph) const override
 
errc_t makeEphemerisSimple (ScopedPtr< Ephemeris > &eph) const override
 
void accept (MotionProfileVisitor &visitor) override
 
void setLaunchTime (const TimePoint &time)
 
const TimePointgetLaunchTime () const
 
void setUseScenTime (bool useScenTime)
 
bool getUseScenTime () const
 
void setBurnoutTime (const TimePoint &time)
 
const TimePointgetBurnoutTime () const
 
void setLaunchPosition (double latitude, double longitude, double altitude)
 
double getLaunchLatitude () const
 
double getLaunchLongitude () const
 
double getLaunchAltitude () const
 
void setBurnoutPosition (double latitude, double longitude, double altitude)
 
double getBurnoutLatitude () const
 
double getBurnoutLongitude () const
 
double getBurnoutAltitude () const
 
void setBurnoutVelocity (double velocity)
 
double getBurnoutVelocity () const
 
void setGranularity (double granularity)
 
double getGranularity () const
 
- Public 成员函数 继承自 ast::MotionProfile
MotionHPOPtoHPOP () const
 
MotionTwoBodytoTwoBody () const
 
MotionSPICEtoSPICE () const
 
MotionBallistictoBallistic () const
 
MotionSimpleAscenttoSimpleAscent () const
 
- Public 成员函数 继承自 ast::ObjectNamed
 ObjectNamed ()=default
 
 ObjectNamed (StringView name)
 
const std::string & getName () const override
 
void setName (StringView name) override
 
- Public 成员函数 继承自 ast::Object
 Object (Object *parentScope)
 
 Object (std::nullptr_t)
 
 Object (initial_strong_ref_t)
 
virtual ClassgetType () const
 
virtual std::string getRepresentation () const
 
const std::string & name () const
 
errc_t showEditDialog ()
 
Attribute attr (StringView path)
 
errc_t getAttrBool (StringView path, bool &value) const
 
errc_t getAttrInt (StringView path, int &value) const
 
errc_t getAttrDouble (StringView path, double &value) const
 
errc_t getAttrString (StringView path, std::string &value) const
 
errc_t getAttrObject (StringView path, Object *&value) const
 
double getAttrDouble (StringView path) const
 
int getAttrInt (StringView path) const
 
bool getAttrBool (StringView path) const
 
std::string getAttrString (StringView path) const
 
ObjectgetAttrObject (StringView path) const
 
errc_t setAttrBool (StringView path, bool value)
 
errc_t setAttrInt (StringView path, int value)
 
errc_t setAttrDouble (StringView path, double value)
 
errc_t setAttrString (StringView path, StringView value)
 
errc_t setAttrObject (StringView path, Object *value)
 
Classtype () const
 
const std::string & typeName () const
 
PropertygetProperty (StringView fieldName) const
 
ObjectId getID () const
 
errc_t setParentScope (Object *parentScope)
 
ObjectgetParentScope () const
 
bool isOfType (const Class *type) const
 
bool isOfType (StringView typeName) const
 
template<typename T >
bool isOfType () const
 
uint32_t refCount () const
 
uint32_t weakRefCount () const
 
bool isDestructed () const
 
void destruct ()
 
uint32_t incWeakRef ()
 
uint32_t decWeakRef ()
 
uint32_t incRef ()
 
uint32_t decRef ()
 
uint32_t decRefNoDelete ()
 
template<typename Func >
void addDelayedLink (Func &&link)
 
template<typename Func >
void addDelayedLinkIfFailed (Func &&link)
 
void resolveLinks ()
 

静态 Public 成员函数

static MotionSimpleAscentNew ()
 
- 静态 Public 成员函数 继承自 ast::Object
static ObjectResolve (StringView value)
 
static void ClassInit (Class *cls)
 
static ClassStaticType ()
 

额外继承的成员函数

- 静态 Public 属性 继承自 ast::Object
static Class staticType
 
- Protected 成员函数 继承自 ast::Object
 Object (const Object &obj)
 
Objectoperator= (const Object &)
 

详细描述

简单上升运动模型,用于模拟运载火箭的上升阶段运动

参见
MotionProfile

成员函数说明

◆ accept()

void ast::MotionSimpleAscent::accept ( MotionProfileVisitor & visitor)
overridevirtual

接受访问者

参数
visitor访问者

实现了 ast::MotionProfile.

◆ getBurnoutAltitude()

double ast::MotionSimpleAscent::getBurnoutAltitude ( ) const
inline

获取关机高度

返回
关机高度(米)

◆ getBurnoutLatitude()

double ast::MotionSimpleAscent::getBurnoutLatitude ( ) const
inline

获取关机纬度

返回
关机纬度(度)

◆ getBurnoutLongitude()

double ast::MotionSimpleAscent::getBurnoutLongitude ( ) const
inline

获取关机经度

返回
关机经度(度)

◆ getBurnoutTime()

const TimePoint & ast::MotionSimpleAscent::getBurnoutTime ( ) const
inline

获取关机时间

返回
关机时间

◆ getBurnoutVelocity()

double ast::MotionSimpleAscent::getBurnoutVelocity ( ) const
inline

获取关机速度

返回
关机速度(米/秒)

◆ getGranularity()

double ast::MotionSimpleAscent::getGranularity ( ) const
inline

获取时间粒度

返回
时间粒度(秒)

◆ getLaunchAltitude()

double ast::MotionSimpleAscent::getLaunchAltitude ( ) const
inline

获取发射高度

返回
发射高度(米)

◆ getLaunchLatitude()

double ast::MotionSimpleAscent::getLaunchLatitude ( ) const
inline

获取发射纬度

返回
发射纬度(度)

◆ getLaunchLongitude()

double ast::MotionSimpleAscent::getLaunchLongitude ( ) const
inline

获取发射经度

返回
发射经度(度)

◆ getLaunchTime()

const TimePoint & ast::MotionSimpleAscent::getLaunchTime ( ) const
inline

获取发射时间

返回
发射时间

◆ getUseScenTime()

bool ast::MotionSimpleAscent::getUseScenTime ( ) const
inline

获取是否使用场景时间

返回
是否使用场景时间

◆ makeEphemerisSimple()

errc_t ast::MotionSimpleAscent::makeEphemerisSimple ( ScopedPtr< Ephemeris > & eph) const
overridevirtual

生成简单星历

参数
eph星历指针
返回
错误码

实现了 ast::MotionProfile.

◆ makeEphemerisSpec()

errc_t ast::MotionSimpleAscent::makeEphemerisSpec ( ScopedPtr< Ephemeris > & eph) const
overridevirtual

生成特定星历

参数
eph星历指针
返回
错误码

实现了 ast::MotionProfile.

◆ setBurnoutPosition()

void ast::MotionSimpleAscent::setBurnoutPosition ( double latitude,
double longitude,
double altitude )
inline

设置关机位置

参数
latitude纬度(度)
longitude经度(度)
altitude高度(米)

◆ setBurnoutTime()

void ast::MotionSimpleAscent::setBurnoutTime ( const TimePoint & time)
inline

设置关机时间

参数
time关机时间

◆ setBurnoutVelocity()

void ast::MotionSimpleAscent::setBurnoutVelocity ( double velocity)
inline

设置关机速度

参数
velocity关机速度(米/秒)

◆ setGranularity()

void ast::MotionSimpleAscent::setGranularity ( double granularity)
inline

设置时间粒度

参数
granularity时间粒度(秒)

◆ setLaunchPosition()

void ast::MotionSimpleAscent::setLaunchPosition ( double latitude,
double longitude,
double altitude )
inline

设置发射位置

参数
latitude纬度(度)
longitude经度(度)
altitude高度(米)

◆ setLaunchTime()

void ast::MotionSimpleAscent::setLaunchTime ( const TimePoint & time)
inline

设置发射时间

参数
time发射时间

◆ setUseScenTime()

void ast::MotionSimpleAscent::setUseScenTime ( bool useScenTime)
inline

设置是否使用场景时间

参数
useScenTime是否使用场景时间

该类的文档由以下文件生成: