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

Detailed Description

Definition at line 322 of file FGStateSpace.h.

+ Inheritance diagram for FGStateSpace::VGround:
+ Collaboration diagram for FGStateSpace::VGround:

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

◆ VGround()

VGround ( )
inline

Definition at line 325 of file FGStateSpace.h.

325: Component("VGround","ft/s") {};

Member Function Documentation

◆ get()

double get ( ) const
inlinevirtual

Implements FGStateSpace::Component.

Definition at line 326 of file FGStateSpace.h.

327 {
328 return m_fdm->GetAuxiliary()->GetVground();
329 }
std::shared_ptr< FGAuxiliary > GetAuxiliary(void) const
Returns the FGAuxiliary pointer.

◆ set()

void set ( double  val)
inlinevirtual

Implements FGStateSpace::Component.

Definition at line 330 of file FGStateSpace.h.

331 {
332 m_fdm->GetIC()->SetVgroundFpsIC(val);
333 }
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: