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::Rpm3 Class Reference

Detailed Description

Definition at line 710 of file FGStateSpace.h.

+ Inheritance diagram for FGStateSpace::Rpm3:
+ Collaboration diagram for FGStateSpace::Rpm3:

Public Member Functions

double get () const
 
void set (double val)
 
- Public Member Functions inherited from FGStateSpace::Component
 Component (const std::string &name, const std::string &unit)
 
virtual double getDeriv () const
 
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

◆ Rpm3()

Rpm3 ( )
inline

Definition at line 713 of file FGStateSpace.h.

713: Component("Rpm3","rev/min") {};

Member Function Documentation

◆ get()

double get ( ) const
inlinevirtual

Implements FGStateSpace::Component.

Definition at line 714 of file FGStateSpace.h.

715 {
716 return m_fdm->GetPropulsion()->GetEngine(3)->GetThruster()->GetRPM();
717 }
std::shared_ptr< FGPropulsion > GetPropulsion(void) const
Returns the FGPropulsion pointer.

◆ set()

void set ( double  val)
inlinevirtual

Implements FGStateSpace::Component.

Definition at line 718 of file FGStateSpace.h.

719 {
720 m_fdm->GetPropulsion()->GetEngine(3)->GetThruster()->SetRPM(val);
721 }

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