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
FGJSBBase.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGJSBBase.h
4 Author: Jon S. Berndt
5 Date started: 07/01/01
6
7 ------------- Copyright (C) 2001 Jon S. Berndt (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later 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 Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2807/01/01 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGJSBBASE_H
35#define FGJSBBASE_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <float.h>
42#include <queue>
43#include <string>
44#include <cmath>
45#include <stdexcept>
46#include <random>
47#include <chrono>
48
49#include "JSBSim_API.h"
50
51#ifndef M_PI
52# define M_PI 3.14159265358979323846
53#endif
54
55/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
56FORWARD DECLARATIONS
57%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
58
59namespace JSBSim {
60
61class JSBSIM_API BaseException : public std::runtime_error {
62 public:
63 BaseException(const std::string& msg) : std::runtime_error(msg) {}
64};
65
74class JSBSIM_API RandomNumberGenerator {
75 public:
77 RandomNumberGenerator(void) : uniform_random(-1.0, 1.0), normal_random(0.0, 1.0)
78 {
79 auto seed_value = std::chrono::system_clock::now().time_since_epoch().count();
80 generator.seed(static_cast<unsigned int>(seed_value));
81 }
83 RandomNumberGenerator(unsigned int seed)
84 : generator(seed), uniform_random(-1.0, 1.0), normal_random(0.0, 1.0) {}
86 void seed(unsigned int value) {
87 generator.seed(value);
88 uniform_random.reset();
89 normal_random.reset();
90 }
93 double GetUniformRandomNumber(void) { return uniform_random(generator); }
96 double GetNormalRandomNumber(void) { return normal_random(generator); }
97 private:
98 std::default_random_engine generator;
99 std::uniform_real_distribution<double> uniform_random;
100 std::normal_distribution<double> normal_random;
101};
102
103/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
104CLASS DOCUMENTATION
105%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
106
113/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
114CLASS DECLARATION
115%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
116
117class JSBSIM_API FGJSBBase {
118public:
121
123 virtual ~FGJSBBase() {};
124
126 class Filter {
127 double prev_in;
128 double prev_out;
129 double ca;
130 double cb;
131 public:
132 Filter(void) {}
133 Filter(double coeff, double dt) {
134 prev_in = prev_out = 0.0;
135 double denom = 2.0 + coeff*dt;
136 ca = coeff*dt/denom;
137 cb = (2.0 - coeff*dt)/denom;
138 }
139 double execute(double in) {
140 double out = (in + prev_in)*ca + prev_out*cb;
141 prev_in = in;
142 prev_out = out;
143 return out;
144 }
145 };
146
148
149
150 static char highint[5];
152 static char halfint[5];
154 static char normint[6];
156 static char reset[5];
158 static char underon[5];
160 static char underoff[6];
162 static char fgblue[6];
164 static char fgcyan[6];
166 static char fgred[6];
168 static char fggreen[6];
170 static char fgdef[6];
172
175 static const std::string& GetVersion(void) {return JSBSim_version;}
176
178 void disableHighLighting(void);
179
180 static short debug_lvl;
181
185 static constexpr double KelvinToFahrenheit (double kelvin) {
186 return 1.8*kelvin - 459.4;
187 }
188
192 static constexpr double CelsiusToRankine (double celsius) {
193 return celsius * 1.8 + 491.67;
194 }
195
199 static constexpr double RankineToCelsius (double rankine) {
200 return (rankine - 491.67)/1.8;
201 }
202
206 static constexpr double KelvinToRankine (double kelvin) {
207 return kelvin * 1.8;
208 }
209
213 static constexpr double RankineToKelvin (double rankine) {
214 return rankine/1.8;
215 }
216
220 static constexpr double FahrenheitToCelsius (double fahrenheit) {
221 return (fahrenheit - 32.0)/1.8;
222 }
223
227 static constexpr double CelsiusToFahrenheit (double celsius) {
228 return celsius * 1.8 + 32.0;
229 }
230
234 static constexpr double CelsiusToKelvin (double celsius) {
235 return celsius + 273.15;
236 }
237
241 static constexpr double KelvinToCelsius (double kelvin) {
242 return kelvin - 273.15;
243 }
244
248 static constexpr double FeetToMeters (double measure) {
249 return measure*0.3048;
250 }
251
256 static bool EqualToRoundoff(double a, double b) {
257 double eps = 2.0*DBL_EPSILON;
258 return std::fabs(a - b) <= eps * std::max<double>(std::fabs(a), std::fabs(b));
259 }
260
265 static bool EqualToRoundoff(float a, float b) {
266 float eps = 2.0*FLT_EPSILON;
267 return std::fabs(a - b) <= eps * std::max<double>(std::fabs(a), std::fabs(b));
268 }
269
274 static bool EqualToRoundoff(float a, double b) {
275 return EqualToRoundoff(a, (float)b);
276 }
277
282 static bool EqualToRoundoff(double a, float b) {
283 return EqualToRoundoff((float)a, b);
284 }
285
288 static constexpr double Constrain(double min, double value, double max) {
289 return value<min?(min):(value>max?(max):(value));
290 }
291
292 static constexpr double sign(double num) {return num>=0.0?1.0:-1.0;}
293
294protected:
295 static constexpr double radtodeg = 180. / M_PI;
296 static constexpr double degtorad = M_PI / 180.;
297 static constexpr double hptoftlbssec = 550.0;
298 static constexpr double psftoinhg = 0.014138;
299 static constexpr double psftopa = 47.88;
300 static constexpr double fttom = 0.3048;
301 static constexpr double ktstofps = 1852./(3600*fttom);
302 static constexpr double fpstokts = 1.0 / ktstofps;
303 static constexpr double inchtoft = 1.0/12.0;
304 static constexpr double m3toft3 = 1.0/(fttom*fttom*fttom);
305 static constexpr double in3tom3 = inchtoft*inchtoft*inchtoft/m3toft3;
306 static constexpr double inhgtopa = 3386.38;
313 static constexpr double slugtolb = 32.174049;
314 static constexpr double lbtoslug = 1.0/slugtolb;
315 static constexpr double kgtolb = 2.20462;
316 static constexpr double kgtoslug = 0.06852168;
317 static const std::string needed_cfg_version;
318 static const std::string JSBSim_version;
319
320 static std::string CreateIndexedPropertyName(const std::string& Property, int index);
321
322public:
324enum {eL = 1, eM, eN };
326enum {eP = 1, eQ, eR };
328enum {eU = 1, eV, eW };
330enum {eX = 1, eY, eZ };
332enum {ePhi = 1, eTht, ePsi };
334enum {eDrag = 1, eSide, eLift };
336enum {eRoll = 1, ePitch, eYaw };
338enum {eNorth = 1, eEast, eDown };
340enum {eLat = 1, eLong, eRad };
342enum {inNone = 0, inDegrees, inRadians, inMeters, inFeet };
343
344};
345
346}
347//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
348#endif
First order, (low pass / lag) filter.
Definition FGJSBBase.h:126
JSBSim Base class.
Definition FGJSBBase.h:117
static bool EqualToRoundoff(double a, double b)
Finite precision comparison.
Definition FGJSBBase.h:256
static const std::string & GetVersion(void)
Returns the version number of JSBSim.
Definition FGJSBBase.h:175
static constexpr double KelvinToCelsius(double kelvin)
Converts from degrees Kelvin to degrees Celsius.
Definition FGJSBBase.h:241
virtual ~FGJSBBase()
Destructor for FGJSBBase.
Definition FGJSBBase.h:123
static bool EqualToRoundoff(float a, double b)
Finite precision comparison.
Definition FGJSBBase.h:274
static bool EqualToRoundoff(double a, float b)
Finite precision comparison.
Definition FGJSBBase.h:282
FGJSBBase()
Constructor for FGJSBBase.
Definition FGJSBBase.h:120
static constexpr double Constrain(double min, double value, double max)
Constrain a value between a minimum and a maximum value.
Definition FGJSBBase.h:288
static constexpr double KelvinToFahrenheit(double kelvin)
Converts from degrees Kelvin to degrees Fahrenheit.
Definition FGJSBBase.h:185
static constexpr double RankineToKelvin(double rankine)
Converts from degrees Rankine to degrees Kelvin.
Definition FGJSBBase.h:213
static constexpr double CelsiusToRankine(double celsius)
Converts from degrees Celsius to degrees Rankine.
Definition FGJSBBase.h:192
static constexpr double FeetToMeters(double measure)
Converts from feet to meters.
Definition FGJSBBase.h:248
static constexpr double RankineToCelsius(double rankine)
Converts from degrees Rankine to degrees Celsius.
Definition FGJSBBase.h:199
static constexpr double CelsiusToKelvin(double celsius)
Converts from degrees Celsius to degrees Kelvin.
Definition FGJSBBase.h:234
static bool EqualToRoundoff(float a, float b)
Finite precision comparison.
Definition FGJSBBase.h:265
static constexpr double KelvinToRankine(double kelvin)
Converts from degrees Kelvin to degrees Rankine.
Definition FGJSBBase.h:206
static constexpr double FahrenheitToCelsius(double fahrenheit)
Converts from degrees Fahrenheit to degrees Celsius.
Definition FGJSBBase.h:220
static constexpr double CelsiusToFahrenheit(double celsius)
Converts from degrees Celsius to degrees Fahrenheit.
Definition FGJSBBase.h:227
Random number generator.
Definition FGJSBBase.h:74
double GetNormalRandomNumber(void)
Get a random number which probability of occurrence is following Gauss normal distribution with a mea...
Definition FGJSBBase.h:96
double GetUniformRandomNumber(void)
Get a random number which probability of occurrence is uniformly distributed over the segment [-1;1(.
Definition FGJSBBase.h:93
RandomNumberGenerator(void)
Default constructor using a seed based on the system clock.
Definition FGJSBBase.h:77
RandomNumberGenerator(unsigned int seed)
Constructor allowing to specify a seed.
Definition FGJSBBase.h:83
void seed(unsigned int value)
Specify a new seed and reinitialize the random generation process.
Definition FGJSBBase.h:86