77 for(
unsigned int i=0; i<24; ++i)
78 flags.switches[i] = 1;
99 FGStandardAtmosphere::InitModel();
110 if (!
Upload(el,
true))
return false;
128 Compute(0.0, SLpressure, SLtemperature, SLdensity, SLRair);
129 Compute(altitude, Pressure, Temperature, Density, Reng);
131 SLsoundspeed = sqrt(SHRatio*SLRair*SLtemperature);
132 Soundspeed = sqrt(SHRatio*Reng*Temperature);
136 Viscosity = Beta * pow(Temperature, 1.5) / (SutherlandConstant + Temperature);
137 KinematicViscosity = Viscosity / Density;
144void FGMSIS::Compute(
double altitude,
double& pressure,
double& temperature,
145 double& density,
double &Rair)
const
147 constexpr double fttokm = fttom / 1000.;
148 constexpr double kgm3_to_slugft3 = kgtoslug / m3toft3;
149 constexpr double gtoslug = kgtoslug / 1000.;
152 const double species_mmol[8] {28.0134, 31.9988, 31.9988/2.0, 4.0, 1.0, 39.948,
153 28.0134/2.0, 31.9988/2.0};
155 double dn[10] {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
156 double h = altitude*fttokm;
157 double lat = in.GeodLatitudeDeg;
158 double lon = in.LongitudeDeg;
161 double utc_seconds = seconds_in_day + FDMExec->
GetSimTime();
162 unsigned int days = utc_seconds / 86400.;
163 utc_seconds -= days * 86400.;
164 double today = day_of_year + days;
165 unsigned int year = today / 365.;
166 today -= year * 365.;
168 struct nrlmsise_output output;
171 input.sec = utc_seconds;
175 input.lst = utc_seconds/3600 + lon/15;
176 assert(flags.switches[9] != -1);
178 gtd7(&input, &flags, &output);
181 density = output.d[5] * kgm3_to_slugft3;
195 double qty_mol = 0.0;
197 for (
unsigned int i=1; i<9; ++i) {
198 mmol += dn[i]*species_mmol[i-1];
201 double mair = mmol * gtoslug / qty_mol;
204 pressure = density * Rair * temperature;
226void FGMSIS::Debug(
int from)
228 if (debug_lvl <= 0)
return;
233 cout <<
" NRLMSIS atmosphere model" << endl;
234 cout <<
" day: " << day_of_year << endl;
235 cout <<
" UTC: " << seconds_in_day << endl << endl;
238 if (debug_lvl & 2 ) {
239 if (from == 0) std::cout <<
"Instantiated: MSIS" << std::endl;
240 if (from == 1) std::cout <<
"Destroyed: MSIS" << std::endl;
242 if (debug_lvl & 4 ) {
244 if (debug_lvl & 8 ) {
246 if (debug_lvl & 16) {
248 if (debug_lvl & 128) {
250 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
double FindElementValueAsNumber(const std::string &el="")
Searches for the named element and returns the data belonging to it as a number.
static constexpr double Rstar
Universal gas constant - ft*lbf/R/mol.
Encapsulates the JSBSim simulation executive.
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
static constexpr double KelvinToRankine(double kelvin)
Converts from degrees Kelvin to degrees Rankine.
void Calculate(double altitude) override
Calculate the atmosphere for the given altitude.
bool InitModel(void) override
Runs the MSIS-00 atmosphere model; called by the Executive Can pass in a value indicating if the exec...
FGMSIS(FGFDMExec *)
Constructor.
bool Upload(Element *el, bool preLoad)
Uploads this model in memory.
double CalculateDensityAltitude(double density, double geometricAlt) override
Calculates the density altitude given any temperature or pressure bias.
double CalculatePressureAltitude(double pressure, double geometricAlt) override
Calculates the pressure altitude given any temperature or pressure bias.