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

Detailed Description

Definition at line 38 of file FGStateSpace.h.

+ Collaboration diagram for FGStateSpace:

Classes

class  AccelX
 
class  AccelY
 
class  AccelZ
 
class  Alpha
 
class  Alt
 
class  Beta
 
class  COG
 
class  Component
 
class  ComponentVector
 
class  DaCmd
 
class  DaPos
 
class  DeCmd
 
class  DePos
 
class  DrCmd
 
class  DrPos
 
class  Latitude
 
class  Longitude
 
class  P
 
class  Phi
 
class  Pi
 
class  PropPitch
 
class  Psi
 
class  Q
 
class  Qi
 
class  R
 
class  Ri
 
class  Rpm0
 
class  Rpm1
 
class  Rpm2
 
class  Rpm3
 
class  Theta
 
class  ThrottleCmd
 
class  ThrottlePos
 
class  Vd
 
class  Ve
 
class  VGround
 
class  Vn
 
class  Vt
 

Public Member Functions

 FGStateSpace (FGFDMExec *fdm)
 
void clear ()
 
void linearize (std::vector< double > x0, std::vector< double > u0, std::vector< double > y0, std::vector< std::vector< double > > &A, std::vector< std::vector< double > > &B, std::vector< std::vector< double > > &C, std::vector< std::vector< double > > &D)
 
void run ()
 
void setFdm (FGFDMExec *fdm)
 
double stateSum ()
 

Public Attributes

ComponentVector u
 
ComponentVector x
 
ComponentVector y
 

Constructor & Destructor Documentation

◆ FGStateSpace()

FGStateSpace ( FGFDMExec fdm)
inline

Definition at line 218 of file FGStateSpace.h.

218: x(fdm,this), u(fdm,this), y(fdm,this), m_fdm(fdm) {};

◆ ~FGStateSpace()

virtual ~FGStateSpace ( )
inlinevirtual

Definition at line 275 of file FGStateSpace.h.

275{};

Member Function Documentation

◆ clear()

void clear ( )
inline

Definition at line 268 of file FGStateSpace.h.

268 {
269 x.clear();
270 u.clear();
271 y.clear();
272 }

◆ linearize()

void linearize ( std::vector< double >  x0,
std::vector< double >  u0,
std::vector< double >  y0,
std::vector< std::vector< double > > &  A,
std::vector< std::vector< double > > &  B,
std::vector< std::vector< double > > &  C,
std::vector< std::vector< double > > &  D 
)

Definition at line 28 of file FGStateSpace.cpp.

36{
37 double h = 1e-4;
38
39 // A, d(x)/dx
40 numericalJacobian(A,x,x,x0,x0,h,true);
41 // B, d(x)/du
42 numericalJacobian(B,x,u,x0,u0,h,true);
43 // C, d(y)/dx
44 numericalJacobian(C,y,x,y0,x0,h);
45 // D, d(y)/du
46 numericalJacobian(D,y,u,y0,u0,h);
47
48}

◆ run()

void run ( )
inline

Definition at line 222 of file FGStateSpace.h.

222 {
223 // initialize
224 m_fdm->Initialize(m_fdm->GetIC().get());
225
226 for (unsigned int i=0; i<m_fdm->GetPropulsion()->GetNumEngines(); i++) {
227 m_fdm->GetPropulsion()->GetEngine(i)->InitRunning();
228 }
229
230 // wait for stable state
231 double cost = stateSum();
232 for(int i=0;i<1000;i++) {
233 m_fdm->GetPropulsion()->GetSteadyState();
234 m_fdm->SetTrimStatus(true);
235 m_fdm->DisableOutput();
236 m_fdm->SuspendIntegration();
237 m_fdm->Run();
238 m_fdm->SetTrimStatus(false);
239 m_fdm->EnableOutput();
240 m_fdm->ResumeIntegration();
241
242 double costNew = stateSum();
243 double dcost = fabs(costNew - cost);
244 if (dcost < std::numeric_limits<double>::epsilon()) {
245 if(m_fdm->GetDebugLevel() > 1) {
246 std::cout << "cost convergd, i: " << i << std::endl;
247 }
248 break;
249 }
250 if (i > 1000) {
251 if(m_fdm->GetDebugLevel() > 1) {
252 std::cout << "cost failed to converge, dcost: "
253 << std::scientific
254 << dcost << std::endl;
255 }
256 break;
257 }
258 cost = costNew;
259 }
260 }
void EnableOutput(void)
Enables data logging to all outputs.
Definition FGFDMExec.h:486
std::shared_ptr< FGInitialCondition > GetIC(void) const
Returns a pointer to the FGInitialCondition object.
Definition FGFDMExec.h:389
int GetDebugLevel(void) const
Retrieves the current debug level setting.
Definition FGFDMExec.h:601
bool Run(void)
This function executes each scheduled model in succession.
void DisableOutput(void)
Disables data logging to all outputs.
Definition FGFDMExec.h:484
std::shared_ptr< FGPropulsion > GetPropulsion(void) const
Returns the FGPropulsion pointer.
void SuspendIntegration(void)
Suspends the simulation and sets the delta T to zero.
Definition FGFDMExec.h:555
void Initialize(const FGInitialCondition *FGIC)
Initializes the simulation with initial conditions.
void ResumeIntegration(void)
Resumes the simulation by resetting delta T to the correct value.
Definition FGFDMExec.h:558

◆ setFdm()

void setFdm ( FGFDMExec fdm)
inline

Definition at line 220 of file FGStateSpace.h.

220{ m_fdm = fdm; }

◆ stateSum()

double stateSum ( )
inline

Definition at line 262 of file FGStateSpace.h.

262 {
263 double sum = 0;
264 for (unsigned int i=0;i<x.getSize();i++) sum += x.get(i);
265 return sum;
266 }

Member Data Documentation

◆ u

Definition at line 215 of file FGStateSpace.h.

◆ x

Definition at line 215 of file FGStateSpace.h.

◆ y

Definition at line 215 of file FGStateSpace.h.


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