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

Detailed Description

Class used to create linear models from FGFDMExec instances.

Definition at line 39 of file FGLinearization.h.

#include <FGLinearization.h>

Public Member Functions

 FGLinearization (FGFDMExec *fdmPtr)
 
const Vector2D< double > & GetFeedforwardMatrix () const
 
const std::vector< double > & GetInitialInput () const
 
const std::vector< double > & GetInitialOutput () const
 
const std::vector< double > & GetInitialState () const
 
const Vector2D< double > & GetInputMatrix () const
 
const std::vector< std::string > & GetInputNames () const
 
const std::vector< std::string > & GetInputUnits () const
 
const Vector2D< double > & GetOutputMatrix () const
 
const std::vector< std::string > & GetOutputNames () const
 
const std::vector< std::string > & GetOutputUnits () const
 
const std::vector< std::string > & GetStateNames () const
 
const std::vector< std::string > & GetStateUnits () const
 
const Vector2D< double > & GetSystemMatrix () const
 Get the state space model matrices.
 
void WriteScicoslab () const
 Write Scicoslab source file with the state space model to a file in the current working directory.
 
void WriteScicoslab (std::string &path) const
 Write Scicoslab source file with the state space model to the given path.
 

Constructor & Destructor Documentation

◆ FGLinearization()

FGLinearization ( FGFDMExec fdmPtr)
Parameters
fdmPtrAlready configured FGFDMExec instance used to create the new linear model.

Definition at line 25 of file FGLinearization.cpp.

26 : aircraft_name(fdm->GetAircraft()->GetAircraftName())
27{
28 FGStateSpace ss(fdm);
29 ss.x.add(new FGStateSpace::Vt);
30 ss.x.add(new FGStateSpace::Alpha);
31 ss.x.add(new FGStateSpace::Theta);
32 ss.x.add(new FGStateSpace::Q);
33
34 // get propulsion pointer to determine type/ etc.
35 auto engine0 = fdm->GetPropulsion()->GetEngine(0);
36 FGThruster * thruster0 = engine0->GetThruster();
37
38 if (thruster0->GetType()==FGThruster::ttPropeller)
39 {
40 ss.x.add(new FGStateSpace::Rpm0);
41 // TODO add variable prop pitch property
42 // if (variablePropPitch) ss.x.add(new FGStateSpace::PropPitch);
43 int numEngines = fdm->GetPropulsion()->GetNumEngines();
44 if (numEngines>1) ss.x.add(new FGStateSpace::Rpm1);
45 if (numEngines>2) ss.x.add(new FGStateSpace::Rpm2);
46 if (numEngines>3) ss.x.add(new FGStateSpace::Rpm3);
47 if (numEngines>4) {
48 std::cerr << "more than 4 engines not currently handled" << std::endl;
49 }
50 }
51 ss.x.add(new FGStateSpace::Beta);
52 ss.x.add(new FGStateSpace::Phi);
53 ss.x.add(new FGStateSpace::P);
54 ss.x.add(new FGStateSpace::Psi);
55 ss.x.add(new FGStateSpace::R);
56 ss.x.add(new FGStateSpace::Latitude);
57 ss.x.add(new FGStateSpace::Longitude);
58 ss.x.add(new FGStateSpace::Alt);
59
60 ss.u.add(new FGStateSpace::ThrottleCmd);
61 ss.u.add(new FGStateSpace::DaCmd);
62 ss.u.add(new FGStateSpace::DeCmd);
63 ss.u.add(new FGStateSpace::DrCmd);
64
65 // state feedback
66 ss.y = ss.x;
67
68 x0 = ss.x.get();
69 u0 = ss.u.get();
70 y0 = x0; // state feedback
71
72 fdm->SuspendIntegration();
73 ss.linearize(x0, u0, y0, A, B, C, D);
74 fdm->ResumeIntegration();
75
76 x_names = ss.x.getName();
77 u_names = ss.u.getName();
78 y_names = ss.y.getName();
79 x_units = ss.x.getUnit();
80 u_units = ss.u.getUnit();
81 y_units = ss.y.getUnit();
82}
+ Here is the call graph for this function:

Member Function Documentation

◆ GetFeedforwardMatrix()

const Vector2D< double > & GetFeedforwardMatrix ( ) const
inline

Definition at line 75 of file FGLinearization.h.

75{ return D; };

◆ GetInitialInput()

const std::vector< double > & GetInitialInput ( ) const
inline

Definition at line 78 of file FGLinearization.h.

78{ return u0; };

◆ GetInitialOutput()

const std::vector< double > & GetInitialOutput ( ) const
inline

Definition at line 79 of file FGLinearization.h.

79{ return y0; };

◆ GetInitialState()

const std::vector< double > & GetInitialState ( ) const
inline

Definition at line 77 of file FGLinearization.h.

77{ return x0; };

◆ GetInputMatrix()

const Vector2D< double > & GetInputMatrix ( ) const
inline

Definition at line 73 of file FGLinearization.h.

73{ return B; };

◆ GetInputNames()

const std::vector< std::string > & GetInputNames ( ) const
inline

Definition at line 82 of file FGLinearization.h.

82{ return u_names; };

◆ GetInputUnits()

const std::vector< std::string > & GetInputUnits ( ) const
inline

Definition at line 86 of file FGLinearization.h.

86{ return u_units; };

◆ GetOutputMatrix()

const Vector2D< double > & GetOutputMatrix ( ) const
inline

Definition at line 74 of file FGLinearization.h.

74{ return C; };

◆ GetOutputNames()

const std::vector< std::string > & GetOutputNames ( ) const
inline

Definition at line 83 of file FGLinearization.h.

83{ return y_names; };

◆ GetOutputUnits()

const std::vector< std::string > & GetOutputUnits ( ) const
inline

Definition at line 87 of file FGLinearization.h.

87{ return y_units; };

◆ GetStateNames()

const std::vector< std::string > & GetStateNames ( ) const
inline

Definition at line 81 of file FGLinearization.h.

81{ return x_names; };

◆ GetStateUnits()

const std::vector< std::string > & GetStateUnits ( ) const
inline

Definition at line 85 of file FGLinearization.h.

85{ return x_units; };

◆ GetSystemMatrix()

const Vector2D< double > & GetSystemMatrix ( ) const
inline

Get the state space model matrices.

Parameters
A_System matrix
B_Input matrix
C_Output matrix
D_Feedforward matrix

Definition at line 72 of file FGLinearization.h.

72{ return A; };

◆ WriteScicoslab() [1/2]

void WriteScicoslab ( ) const

Write Scicoslab source file with the state space model to a file in the current working directory.

Definition at line 84 of file FGLinearization.cpp.

84 {
85 auto path = std::string(aircraft_name+"_lin.sce");
86 WriteScicoslab(path);
87}
void WriteScicoslab() const
Write Scicoslab source file with the state space model to a file in the current working directory.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ WriteScicoslab() [2/2]

void WriteScicoslab ( std::string &  path) const

Write Scicoslab source file with the state space model to the given path.

Parameters
path

Definition at line 89 of file FGLinearization.cpp.

89 {
90 int width=20;
91 int precision=10;
92 std::ofstream scicos(path.c_str());
93 scicos.precision(precision);
94 width=20;
95 scicos << std::scientific
96 << aircraft_name << ".x0=..\n" << std::setw(width) << x0 << ";\n"
97 << aircraft_name << ".u0=..\n" << std::setw(width) << u0 << ";\n"
98 << aircraft_name << ".sys = syslin('c',..\n"
99 << std::setw(width) << A << ",..\n"
100 << std::setw(width) << B << ",..\n"
101 << std::setw(width) << C << ",..\n"
102 << std::setw(width) << D << ");\n"
103 << aircraft_name << ".tfm = ss2tf(" << aircraft_name << ".sys);\n"
104 << std::endl;
105 scicos.close();
106
107}

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