49#include "JSBSim_API.h"
52# define M_PI 3.14159265358979323846
63 BaseException(
const std::string& msg) : std::runtime_error(msg) {}
79 auto seed_value = std::chrono::system_clock::now().time_since_epoch().count();
80 generator.seed(
static_cast<unsigned int>(seed_value));
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();
98 std::default_random_engine generator;
99 std::uniform_real_distribution<double> uniform_random;
100 std::normal_distribution<double> normal_random;
133 Filter(
double coeff,
double dt) {
134 prev_in = prev_out = 0.0;
135 double denom = 2.0 + coeff*dt;
137 cb = (2.0 - coeff*dt)/denom;
139 double execute(
double in) {
140 double out = (in + prev_in)*ca + prev_out*cb;
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];
175 static const std::string&
GetVersion(
void) {
return JSBSim_version;}
178 void disableHighLighting(
void);
180 static short debug_lvl;
186 return 1.8*kelvin - 459.4;
193 return celsius * 1.8 + 491.67;
200 return (rankine - 491.67)/1.8;
221 return (fahrenheit - 32.0)/1.8;
228 return celsius * 1.8 + 32.0;
235 return celsius + 273.15;
242 return kelvin - 273.15;
249 return measure*0.3048;
257 double eps = 2.0*DBL_EPSILON;
258 return std::fabs(a - b) <= eps * std::max<double>(std::fabs(a), std::fabs(b));
266 float eps = 2.0*FLT_EPSILON;
267 return std::fabs(a - b) <= eps * std::max<double>(std::fabs(a), std::fabs(b));
275 return EqualToRoundoff(a, (
float)b);
283 return EqualToRoundoff((
float)a, b);
288 static constexpr double Constrain(
double min,
double value,
double max) {
289 return value<min?(min):(value>max?(max):(value));
292 static constexpr double sign(
double num) {
return num>=0.0?1.0:-1.0;}
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;
320 static std::string CreateIndexedPropertyName(
const std::string& Property,
int index);
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 };
First order, (low pass / lag) filter.
static bool EqualToRoundoff(double a, double b)
Finite precision comparison.
static const std::string & GetVersion(void)
Returns the version number of JSBSim.
static constexpr double KelvinToCelsius(double kelvin)
Converts from degrees Kelvin to degrees Celsius.
virtual ~FGJSBBase()
Destructor for FGJSBBase.
static bool EqualToRoundoff(float a, double b)
Finite precision comparison.
static bool EqualToRoundoff(double a, float b)
Finite precision comparison.
FGJSBBase()
Constructor for FGJSBBase.
static constexpr double Constrain(double min, double value, double max)
Constrain a value between a minimum and a maximum value.
static constexpr double KelvinToFahrenheit(double kelvin)
Converts from degrees Kelvin to degrees Fahrenheit.
static constexpr double RankineToKelvin(double rankine)
Converts from degrees Rankine to degrees Kelvin.
static constexpr double CelsiusToRankine(double celsius)
Converts from degrees Celsius to degrees Rankine.
static constexpr double FeetToMeters(double measure)
Converts from feet to meters.
static constexpr double RankineToCelsius(double rankine)
Converts from degrees Rankine to degrees Celsius.
static constexpr double CelsiusToKelvin(double celsius)
Converts from degrees Celsius to degrees Kelvin.
static bool EqualToRoundoff(float a, float b)
Finite precision comparison.
static constexpr double KelvinToRankine(double kelvin)
Converts from degrees Kelvin to degrees Rankine.
static constexpr double FahrenheitToCelsius(double fahrenheit)
Converts from degrees Fahrenheit to degrees Celsius.
static constexpr double CelsiusToFahrenheit(double celsius)
Converts from degrees Celsius to degrees Fahrenheit.
double GetNormalRandomNumber(void)
Get a random number which probability of occurrence is following Gauss normal distribution with a mea...
double GetUniformRandomNumber(void)
Get a random number which probability of occurrence is uniformly distributed over the segment [-1;1(.
RandomNumberGenerator(void)
Default constructor using a seed based on the system clock.
RandomNumberGenerator(unsigned int seed)
Constructor allowing to specify a seed.
void seed(unsigned int value)
Specify a new seed and reinitialize the random generation process.