]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/initialization/FGTrim.h
Sync. w. JSBSim CVS.
[flightgear.git] / src / FDM / JSBSim / initialization / FGTrim.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGTrim.h
4  Author:       Tony Peden
5  Date started: 7/1/99
6
7  ------------- Copyright (C) 1999  Anthony K. Peden (apeden@earthlink.net) -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  details.
18
19  You should have received a copy of the GNU General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26
27  HISTORY
28 --------------------------------------------------------------------------------
29 9/8/99   TP   Created
30
31
32 FUNCTIONAL DESCRIPTION
33 --------------------------------------------------------------------------------
34
35 This class takes the given set of IC's and finds the aircraft state required to
36 maintain a specified flight condition.  This flight condition can be
37 steady-level with non-zero sideslip, a steady turn, a pull-up or pushover.
38 On-ground conditions can be trimmed as well, but this is currently limited to
39 adjusting altitude and pitch angle only. It is implemented using an iterative,
40 one-axis-at-a-time scheme.
41
42 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 SENTRY
44 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
45
46 #ifndef FGTRIM_H
47 #define FGTRIM_H
48
49 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50 INCLUDES
51 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
53 #include "FGFDMExec.h"
54 #include "FGJSBBase.h"
55 #include "FGTrimAxis.h"
56
57 #include <vector>
58
59 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
60 DEFINITIONS
61 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
62
63 #define ID_TRIM "$Id$"
64
65 #if defined(_WIN32) && !defined(__CYGWIN__)
66   #define snprintf _snprintf
67 #endif
68
69 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70 FORWARD DECLARATIONS
71 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
72
73 namespace JSBSim {
74
75 typedef enum { tLongitudinal=0, tFull, tGround, tPullup,
76                tCustom, tTurn, tNone } TrimMode;
77
78 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79 CLASS DOCUMENTATION
80 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
81
82 /** FGTrim -- the trimming routine for JSBSim.
83     FGTrim finds the aircraft attitude and control settings needed to maintain
84     the steady state described by the FGInitialCondition object .  It does this
85     iteratively by assigning a control to each state and adjusting that control
86     until the state is within a specified tolerance of zero. States include the
87     recti-linear accelerations udot, vdot, and wdot, the angular accelerations
88     qdot, pdot, and rdot, and the difference between heading and ground track.
89     Controls include the usual flight deck controls available to the pilot plus
90     angle of attack (alpha), sideslip angle(beta), flight path angle (gamma),
91     pitch attitude(theta), roll attitude(phi), and altitude above ground.  The
92     last three are used for on-ground trimming. The state-control pairs used in
93     a given trim are completely user configurable and several pre-defined modes
94     are provided as well. They are:
95     - tLongitudinal: Trim wdot with alpha, udot with thrust, qdot with elevator
96     - tFull: tLongitudinal + vdot with phi, pdot with aileron, rdot with rudder
97              and heading minus ground track (hmgt) with beta
98     - tPullup: tLongitudinal but adjust alpha to achieve load factor input
99                with SetTargetNlf()
100     - tGround: wdot with altitude, qdot with theta, and pdot with phi
101
102     The remaining modes include <b>tCustom</b>, which is completely user defined and
103     <b>tNone</b>.
104
105     Note that trims can (and do) fail for reasons that are completely outside
106     the control of the trimming routine itself. The most common problem is the
107     initial conditions: is the model capable of steady state flight
108     at those conditions?  Check the speed, altitude, configuration (flaps,
109     gear, etc.), weight, cg, and anything else that may be relevant.
110
111     Example usage:
112     @code
113     FGFDMExec* FDMExec = new FGFDMExec();
114
115     FGInitialCondition* fgic = new FGInitialCondition(FDMExec);
116     FGTrim fgt(FDMExec, fgic, tFull);
117     fgic->SetVcaibratedKtsIC(100);
118     fgic->SetAltitudeFtIC(1000);
119     fgic->SetClimbRate(500);
120     if( !fgt.DoTrim() ) {
121       cout << "Trim Failed" << endl;
122     }
123     fgt.Report();
124     @endcode
125     @author Tony Peden
126     @version "$Id$"
127 */
128
129 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
130 CLASS DECLARATION
131 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
132
133 class FGTrim : public FGJSBBase
134 {
135 private:
136
137   vector<FGTrimAxis*> TrimAxes;
138   unsigned int current_axis;
139   int N, Nsub;
140   TrimMode mode;
141   int DebugLevel, Debug;
142   double Tolerance, A_Tolerance;
143   double wdot,udot,qdot;
144   double dth;
145   double *sub_iterations;
146   double *successful;
147   bool *solution;
148   int max_sub_iterations;
149   int max_iterations;
150   int total_its;
151   bool trimudot;
152   bool gamma_fallback;
153   bool trim_failed;
154   unsigned int axis_count;
155   int solutionDomain;
156   double xlo,xhi,alo,ahi;
157   double targetNlf;
158   int debug_axis;
159
160   double psidot,thetadot;
161
162   FGFDMExec* fdmex;
163   FGInitialCondition* fgic;
164
165   bool solve(void);
166
167   /** @return false if there is no change in the current axis accel
168       between accel(control_min) and accel(control_max). If there is a
169       change, sets solutionDomain to:
170       0 for no sign change,
171      -1 if sign change between accel(control_min) and accel(0)
172       1 if sign between accel(0) and accel(control_max)
173   */
174   bool findInterval(void);
175
176   bool checkLimits(void);
177
178   void setupPullup(void);
179   void setupTurn(void);
180
181   void updateRates(void);
182
183   void setDebug(void);
184
185 public:
186   /** Initializes the trimming class
187       @param FDMExec pointer to a JSBSim executive object.
188       @param tm trim mode
189   */
190   FGTrim(FGFDMExec *FDMExec, TrimMode tm=tGround );
191
192   ~FGTrim(void);
193
194   /** Execute the trim
195   */
196   bool DoTrim(void);
197
198   /** Print the results of the trim. For each axis trimmed, this
199       includes the final state value, control value, and tolerance
200       used.
201       @return true if trim succeeds
202   */
203   void Report(void);
204
205   /** Iteration statistics
206   */
207   void TrimStats();
208
209   /** Clear all state-control pairs and set a predefined trim mode
210       @param tm the set of axes to trim. Can be:
211              tLongitudinal, tFull, tGround, tCustom, or tNone
212   */
213   void SetMode(TrimMode tm);
214
215   /** Clear all state-control pairs from the current configuration.
216       The trimming routine must have at least one state-control pair
217       configured to be useful
218   */
219   void ClearStates(void);
220
221   /** Add a state-control pair to the current configuration. See the enums
222       State and Control in FGTrimAxis.h for the available options.
223       Will fail if the given state is already configured.
224       @param state the accel or other condition to zero
225       @param control the control used to zero the state
226       @return true if add is successful
227   */
228   bool AddState( State state, Control control );
229
230   /** Remove a specific state-control pair from the current configuration
231       @param state the state to remove
232       @return true if removal is successful
233   */
234   bool RemoveState( State state );
235
236   /** Change the control used to zero a state previously configured
237       @param state the accel or other condition to zero
238       @param new_control the control used to zero the state
239   */
240   bool EditState( State state, Control new_control );
241
242   /** automatically switch to trimming longitudinal acceleration with
243       flight path angle (gamma) once it becomes apparent that there
244       is not enough/too much thrust.
245       @param bb true to enable fallback
246   */
247   inline void SetGammaFallback(bool bb) { gamma_fallback=bb; }
248
249   /** query the fallback state
250       @return true if fallback is enabled.
251   */
252   inline bool GetGammaFallback(void) { return gamma_fallback; }
253
254   /** Set the iteration limit. DoTrim() will return false if limit
255       iterations are reached before trim is achieved.  The default
256       is 60.  This does not ordinarily need to be changed.
257       @param ii integer iteration limit
258   */
259   inline void SetMaxCycles(int ii) { max_iterations = ii; }
260
261   /** Set the per-axis iteration limit.  Attempt to zero each state
262       by iterating limit times before moving on to the next. The
263       default limit is 100 and also does not ordinarily need to
264       be changed.
265       @param ii integer iteration limit
266   */
267   inline void SetMaxCyclesPerAxis(int ii) { max_sub_iterations = ii; }
268
269   /** Set the tolerance for declaring a state trimmed. Angular accels are
270       held to a tolerance of 1/10th of the given.  The default is
271       0.001 for the recti-linear accelerations and 0.0001 for the angular.
272   */
273   inline void SetTolerance(double tt) {
274     Tolerance = tt;
275     A_Tolerance = tt / 10;
276   }
277
278   /**
279     Debug level 1 shows results of each top-level iteration
280     Debug level 2 shows level 1 & results of each per-axis iteration
281   */
282   inline void SetDebug(int level) { DebugLevel = level; }
283   inline void ClearDebug(void) { DebugLevel = 0; }
284
285   /**
286     Output debug data for one of the axes
287     The State enum is defined in FGTrimAxis.h
288   */
289   inline void DebugState(State state) { debug_axis=state; }
290
291   inline void SetTargetNlf(double nlf) { targetNlf=nlf; }
292   inline double GetTargetNlf(void) { return targetNlf; }
293
294 };
295 }
296
297 #endif