1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7 ------------- Copyright (C) 1999 Anthony K. Peden (apeden@earthlink.net) -------------
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
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
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.
23 Further information about the GNU General Public License can also be found on
24 the world wide web at http://www.gnu.org.
27 --------------------------------------------------------------------------------
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
43 #include "FGFDMExec.h"
44 #include "FGJSBBase.h"
45 #include "FGInitialCondition.h"
47 #define ID_TRIMAXIS "$Id$"
49 #define DEFAULT_TOLERANCE 0.001
51 const string StateNames[10]= { "all","udot","vdot","wdot","qdot","pdot","rdot",
54 const string ControlNames[14]= { "Throttle","Sideslip","Angle of Attack",
55 "Elevator","Ailerons","Rudder",
56 "Altitude AGL", "Pitch Angle",
57 "Roll Angle", "Flight Path Angle",
58 "Pitch Trim", "Roll Trim", "Yaw Trim",
62 class FGInitialCondition;
64 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
68 enum State { tAll,tUdot,tVdot,tWdot,tQdot,tPdot,tRdot,tHmgt,tNlf };
69 enum Control { tThrottle, tBeta, tAlpha, tElevator, tAileron, tRudder, tAltAGL,
70 tTheta, tPhi, tGamma, tPitchTrim, tRollTrim, tYawTrim, tHeading };
72 class FGTrimAxis : public FGJSBBase
75 FGTrimAxis(FGFDMExec* fdmex,
76 FGInitialCondition *ic,
83 double GetState(void) { getState(); return state_value; }
84 //Accels are not settable
85 inline void SetControl(double value ) { control_value=value; }
86 inline double GetControl(void) { return control_value; }
88 inline State GetStateType(void) { return state; }
89 inline Control GetControlType(void) { return control; }
91 inline string GetStateName(void) { return StateNames[state]; }
92 inline string GetControlName(void) { return ControlNames[control]; }
94 inline double GetControlMin(void) { return control_min; }
95 inline double GetControlMax(void) { return control_max; }
97 inline void SetControlToMin(void) { control_value=control_min; }
98 inline void SetControlToMax(void) { control_value=control_max; }
100 inline void SetControlLimits(double min, double max) {
105 inline void SetTolerance(double ff) { tolerance=ff;}
106 inline double GetTolerance(void) { return tolerance; }
108 inline double GetSolverEps(void) { return solver_eps; }
109 inline void SetSolverEps(double ff) { solver_eps=ff; }
111 inline int GetIterationLimit(void) { return max_iterations; }
112 inline void SetIterationLimit(int ii) { max_iterations=ii; }
114 inline int GetStability(void) { return its_to_stable_value; }
115 inline int GetRunCount(void) { return total_stability_iterations; }
116 double GetAvgStability( void );
118 void SetThetaOnGround(double ff);
119 void SetPhiOnGround(double ff);
121 inline void SetStateTarget(float target) { state_target=target; }
122 inline float GetStateTarget(void) { return state_target; }
124 bool initTheta(void);
126 void AxisReport(void);
128 bool InTolerance(void) { getState(); return (fabs(state_value) <= tolerance); }
132 FGInitialCondition *fgic;
149 double state_convert;
150 double control_convert;
154 int its_to_stable_value;
155 int total_stability_iterations;
156 int total_iterations;
158 void setThrottlesPct(void);
161 void getControl(void);
162 void setControl(void);
164 double computeHmgt(void);
166 void Debug(int from);