JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGStateSpace::Ri Class Reference

Detailed Description

Definition at line 817 of file FGStateSpace.h.

+ Inheritance diagram for FGStateSpace::Ri:
+ Collaboration diagram for FGStateSpace::Ri:

Public Member Functions

double get () const
 
double getDeriv () const
 
void set (double val)
 
- Public Member Functions inherited from FGStateSpace::Component
 Component (const std::string &name, const std::string &unit)
 
const std::string & getName () const
 
const std::string & getUnit () const
 
void setFdm (FGFDMExec *fdm)
 
void setStateSpace (FGStateSpace *stateSpace)
 

Additional Inherited Members

- Protected Attributes inherited from FGStateSpace::Component
FGFDMExecm_fdm
 
std::string m_name
 
FGStateSpacem_stateSpace
 
std::string m_unit
 

Constructor & Destructor Documentation

◆ Ri()

Ri ( )
inline

Definition at line 820 of file FGStateSpace.h.

820: Component("R inertial","rad/s") {};

Member Function Documentation

◆ get()

double get ( ) const
inlinevirtual

Implements FGStateSpace::Component.

Definition at line 821 of file FGStateSpace.h.

822 {
823 return m_fdm->GetPropagate()->GetPQRi(3);
824 }
std::shared_ptr< FGPropagate > GetPropagate(void) const
Returns the FGPropagate pointer.

◆ getDeriv()

double getDeriv ( ) const
inlinevirtual

Reimplemented from FGStateSpace::Component.

Definition at line 832 of file FGStateSpace.h.

833 {
834 return m_fdm->GetAccelerations()->GetPQRdot(3);
835 }
std::shared_ptr< FGAccelerations > GetAccelerations(void) const
Returns the FGAccelerations pointer.

◆ set()

void set ( double  val)
inlinevirtual

Implements FGStateSpace::Component.

Definition at line 825 of file FGStateSpace.h.

826 {
827 //Set PQR from PQRi
828 //VState.vPQR = VState.vPQRi - Ti2b * vOmegaEarth;
829 m_fdm->GetIC()->SetQRadpsIC(val + \
830 (m_fdm->GetPropagate()->GetPQR(3) - m_fdm->GetPropagate()->GetPQRi(3)));
831 }
std::shared_ptr< FGInitialCondition > GetIC(void) const
Returns a pointer to the FGInitialCondition object.
Definition FGFDMExec.h:389

The documentation for this class was generated from the following file: