26#ifndef MODELS_ENVIRONMENT_TABULAR_ATMOSPHERE_MODEL_H
27#define MODELS_ENVIRONMENT_TABULAR_ATMOSPHERE_MODEL_H
60 MODEL(TabularAtmosphereModel)
68 SIGNAL(atmos_file, std::string, warptwinDir()+
"data"+slash()+
"atmosphere"+slash()+
"1976stdatmos.txt")
70 SIGNAL(R_idealgas_kJ_kg_K,
double, 286.0)
79 SIGNAL(altitude_m,
double, 0.0)
86 SIGNAL(temperature_K,
double, 0.0)
88 SIGNAL(pressure_Pa,
double, 0.0)
90 SIGNAL(density_kg_m3,
double, 0.0)
92 SIGNAL(speed_of_sound,
double, 0.0)
96 int16
start() override;
#define SIGNAL(NAME, TYPE, INITIAL_VALUE)
Definition appmacros.h:27
#define START_PARAMS
Definition appmacros.h:42
#define END_OUTPUTS
Definition appmacros.h:33
#define END_PARAMS
Definition appmacros.h:47
#define START_OUTPUTS
Definition appmacros.h:28
#define END_INPUTS
Definition appmacros.h:40
#define START_INPUTS
Definition appmacros.h:35
A class for performing simple x-y linear interpolation.
Definition Interpolate2D.h:50
Extensions to the C++ standard library.
Definition half.hpp:2325
Class to propagate CR3BP dynamics in characteristic units.
Definition statistics.hpp:22
Interpolate2D _interp_density
Definition TabularAtmosphereModel.h:106
int16 start() override
Class to execute logging.
SIGNAL(_mu, double, warpos::earth_wgs84.mu)
Interpolate2D _interp_pressure
Definition TabularAtmosphereModel.h:104
std::vector< std::vector< double > > _atmos_table
Definition TabularAtmosphereModel.h:103
bool _min_warned
Definition TabularAtmosphereModel.h:109
Interpolate2D _interp_temperature
Definition TabularAtmosphereModel.h:105
@ MODEL
Simplified dynamics model representing motion in the circular restricted 3 body problem.
Definition ImNode.h:31
double _max_altitude_km
Definition TabularAtmosphereModel.h:102
double _alt_km
Definition TabularAtmosphereModel.h:100
double _min_altitude_km
Definition TabularAtmosphereModel.h:101
bool _max_warned
Definition TabularAtmosphereModel.h:110
int16 execute() override
Function to check monitor input conditions and set trigger flag accordingly. Should be implemented in...