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
FGMSIS.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGMSIS.h
4 Description: MSIS-00 Atmosphere
5 Author: David Culp
6 Date started: 12/14/03
7
8 ------------- Copyright (C) 2003 David P. Culp (davidculp2@comcast.net) ------
9
10 This program is free software; you can redistribute it and/or modify it under
11 the terms of the GNU Lesser General Public License as published by the Free Software
12 Foundation; either version 2 of the License, or (at your option) any later
13 version.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18 details.
19
20 You should have received a copy of the GNU Lesser General Public License along with
21 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22 Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 Further information about the GNU Lesser General Public License can also be found on
25 the world wide web at http://www.gnu.org.
26
27HISTORY
28--------------------------------------------------------------------------------
2912/14/03 DPC Created
3001/11/04 DPC Derive from FGAtmosphere
3103/18/23 BC Refactored
32
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34SENTRY
35%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
36
37#ifndef FGMSIS_H
38#define FGMSIS_H
39
40/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41INCLUDES
42%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
43
44#include "models/atmosphere/FGStandardAtmosphere.h"
45
46/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47FORWARD DECLARATIONS
48%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
49
50extern "C" {
51#include "MSIS/nrlmsise-00.h"
52}
53
54namespace JSBSim {
55
56/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57CLASS DOCUMENTATION
58%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59
79/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80CLASS DECLARATION
81%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
82
83class JSBSIM_API FGMSIS : public FGStandardAtmosphere
84{
85public:
86
90 ~FGMSIS();
99 bool InitModel(void) override;
100 bool Load(Element* el) override;
101
102 using FGAtmosphere::GetTemperature; // Prevent C++ from hiding GetTemperature(void)
103 double GetTemperature(double altitude) const override {
104 double t, p, rho, R;
105 Compute(altitude, p, t, rho, R);
106 return t;
107 }
108
109 using FGAtmosphere::GetPressure; // Prevent C++ from hiding GetPressure(void)
110 double GetPressure(double altitude) const override {
111 double t, p, rho, R;
112 Compute(altitude, p, t, rho, R);
113 return p;
114 }
115
116 using FGAtmosphere::GetDensity; // Prevent C++ from hiding GetDensity(void)
117 double GetDensity(double altitude) const override {
118 double t, p, rho, R;
119 Compute(altitude, p, t, rho, R);
120 return rho;
121 }
122
123 using FGAtmosphere::GetSoundSpeed; // Prevent C++ from hiding GetSoundSpeed(void)
124 double GetSoundSpeed(double altitude) const override {
125 double t, p, rho, R;
126 Compute(altitude, p, t, rho, R);
127 return sqrt(FGAtmosphere::SHRatio*R*t);
128 }
129
130protected:
131 void Calculate(double altitude) override;
132 void Compute(double altitude, double& pression, double& temperature,
133 double& density, double &Rair) const;
134
135 double day_of_year = 1.0;
136 double seconds_in_day = 0.0;
137
138 mutable struct nrlmsise_flags flags;
139 mutable struct nrlmsise_input input;
140
141private:
142 // Setting temperature & pressure is not allowed in this model.
143 void SetTemperature(double t, double h, eTemperature unit) override {};
144 void SetTemperatureSL(double t, eTemperature unit) override {};
145 void SetPressureSL(ePressure unit, double pressure) override {};
146 void Debug(int from) override;
147};
148
149} // namespace JSBSim
150
151//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
152#endif
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Models the MSIS-00 atmosphere.
Definition FGMSIS.h:84
double GetDensity(double altitude) const override
Returns the density in slugs/ft^3 at a given altitude in ft.
Definition FGMSIS.h:117
double GetPressure(double altitude) const override
Returns the pressure at a specified altitude in psf.
Definition FGMSIS.h:110
double GetTemperature(double altitude) const override
Returns the actual modeled temperature in degrees Rankine at a specified altitude.
Definition FGMSIS.h:103
double GetSoundSpeed(double altitude) const override
Returns the speed of sound in ft/sec at a given altitude in ft.
Definition FGMSIS.h:124