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.h
1/*
2 * FGLinearization.h
3 * Copyright (C) James Goppert 2010 <james.goppert@gmail.com>
4 *
5 * FGLinearization.h is free software: you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License as published by the
7 * Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * FGLinearization.h is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef FGLinearization_H_
20#define FGLinearization_H_
21
22#include "math/FGStateSpace.h"
23#include <iomanip>
24#include <fstream>
25#include "models/FGAircraft.h"
26#include "models/propulsion/FGEngine.h"
27#include "models/propulsion/FGTurbine.h"
28#include "models/propulsion/FGTurboProp.h"
29#include <fstream>
30#include <cstdlib>
31
32namespace JSBSim {
33
34template <class T>
35using Vector2D = std::vector<std::vector<T>>;
36
39class JSBSIM_API FGLinearization
40{
41 Vector2D<double> A,B,C,D;
42 std::vector<double> x0, u0, y0;
43 std::vector<std::string> x_names, u_names, y_names, x_units, u_units, y_units;
44 std::string aircraft_name;
45public:
49 FGLinearization(FGFDMExec * fdmPtr);
50
55 void WriteScicoslab() const;
56
62 void WriteScicoslab(std::string& path) const;
63
72 const Vector2D<double>& GetSystemMatrix() const { return A; };
73 const Vector2D<double>& GetInputMatrix() const { return B; };
74 const Vector2D<double>& GetOutputMatrix() const { return C; };
75 const Vector2D<double>& GetFeedforwardMatrix() const { return D; };
76
77 const std::vector<double>& GetInitialState() const { return x0; };
78 const std::vector<double>& GetInitialInput() const { return u0; };
79 const std::vector<double>& GetInitialOutput() const { return y0; };
80
81 const std::vector<std::string>& GetStateNames() const { return x_names; };
82 const std::vector<std::string>& GetInputNames() const { return u_names; };
83 const std::vector<std::string>& GetOutputNames() const { return y_names; };
84
85 const std::vector<std::string>& GetStateUnits() const { return x_units; };
86 const std::vector<std::string>& GetInputUnits() const { return u_units; };
87 const std::vector<std::string>& GetOutputUnits() const { return y_units; };
88
89};
90
91} // JSBSim
92
93#endif //FGLinearization_H_
94
95// vim:ts=4:sw=4
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Class used to create linear models from FGFDMExec instances.
const Vector2D< double > & GetSystemMatrix() const
Get the state space model matrices.