Definition at line 43 of file FGStateSpace.h.
◆ Component()
Component |
( |
const std::string & |
name, |
|
|
const std::string & |
unit |
|
) |
| |
|
inline |
Definition at line 50 of file FGStateSpace.h.
50 :
51 m_stateSpace(), m_fdm(), m_name(name), m_unit(unit) {};
◆ ~Component()
◆ getDeriv()
virtual double getDeriv |
( |
| ) |
const |
|
inlinevirtual |
Definition at line 55 of file FGStateSpace.h.
56 {
57
58 std::vector<double> x0 = m_stateSpace->x.get();
59 double f0 = get();
62 m_fdm->
Setdt(1./120.);
65 double f1 = get();
66 m_stateSpace->x.set(x0);
68 {
69 std::cout << std::scientific
70 << "name: " << m_name
71 << "\nf1: " << f0
72 << "\nf2: " << f1
74 <<
"\tdf/dt: " << (f1-f0)/m_fdm->
GetDeltaT()
75 << std::fixed << std::endl;
76 }
77 double deriv = (f1-f0)/m_fdm->
GetDeltaT();
81 return deriv;
82 }
void EnableOutput(void)
Enables data logging to all outputs.
int GetDebugLevel(void) const
Retrieves the current debug level setting.
double GetDeltaT(void) const
Returns the simulation delta T.
double Setsim_time(double cur_time)
Sets the current sim time.
bool Run(void)
This function executes each scheduled model in succession.
void DisableOutput(void)
Disables data logging to all outputs.
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
void Setdt(double delta_t)
Sets the integration time step for the simulation executive.
◆ getName()
const std::string & getName |
( |
| ) |
const |
|
inline |
◆ getUnit()
const std::string & getUnit |
( |
| ) |
const |
|
inline |
◆ setFdm()
◆ setStateSpace()
Definition at line 83 of file FGStateSpace.h.
84 {
85 m_stateSpace = stateSpace;
86 }
◆ m_fdm
◆ m_name
◆ m_stateSpace
◆ m_unit
The documentation for this class was generated from the following file: