67void FGMars::Calculate(
double altitude)
73 if (altitude < 22960.0) {
74 Temperature = -25.68 - 0.000548*altitude;
76 Temperature = -10.34 - 0.001217*altitude;
78 Pressure = 14.62*exp(-0.00003*altitude);
79 Density = Pressure/(Reng*Temperature);
103void FGMars::Debug(
int from)
105 if (debug_lvl <= 0)
return;
111 if (debug_lvl & 2 ) {
112 if (from == 0) cout <<
"Instantiated: FGMars" << endl;
113 if (from == 1) cout <<
"Destroyed: FGMars" << endl;
115 if (debug_lvl & 4 ) {
117 if (debug_lvl & 8 ) {
119 if (debug_lvl & 16) {
121 if (debug_lvl & 32) {
123 if (debug_lvl & 64) {
Models an empty, abstract base atmosphere class.
Encapsulates the JSBSim simulation executive.
FGMars(FGFDMExec *)
Constructor.