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.cpp
1/*
2 * FGLinearization.cpp
3 * Copyright (C) James Goppert 2011 <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#include "FGInitialCondition.h"
20#include "FGLinearization.h"
21
22
23namespace JSBSim {
24
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}
83
85 auto path = std::string(aircraft_name+"_lin.sce");
86 WriteScicoslab(path);
87}
88
89void FGLinearization::WriteScicoslab(std::string& path) const {
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}
108
109} // JSBSim
110
111// vim:ts=4:sw=4
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
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 ResumeIntegration(void)
Resumes the simulation by resetting delta T to the correct value.
Definition FGFDMExec.h:558
void WriteScicoslab() const
Write Scicoslab source file with the state space model to a file in the current working directory.
FGLinearization(FGFDMExec *fdmPtr)
Base class for specific thrusting devices such as propellers, nozzles, etc.
Definition FGThruster.h:77