1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 Purpose: Models the Martian atmosphere very simply
9 ------------- Copyright (C) 2004 Jon S. Berndt (jon@jsbsim.org) -------------
11 This program is free software; you can redistribute it and/or modify it under
12 the terms of the GNU Lesser General Public License as published by the Free Software
13 Foundation; either version 2 of the License, or (at your option) any later
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
21 You should have received a copy of the GNU Lesser General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23 Place - Suite 330, Boston, MA 02111-1307, USA.
25 Further information about the GNU Lesser General Public License can also be found on
26 the world wide web at http://www.gnu.org.
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30 Models the Martian atmosphere.
33 --------------------------------------------------------------------------------
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37 COMMENTS, REFERENCES, and NOTES
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51 static const char *IdSrc = "$Id: FGMars.cpp,v 1.10 2010/02/25 05:21:36 jberndt Exp $";
52 static const char *IdHdr = ID_MARS;
54 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
56 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59 FGMars::FGMars(FGFDMExec* fdmex) : FGAtmosphere(fdmex)
68 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70 void FGMars::Calculate(double altitude)
72 //Calculate reftemp, refpress, and density
74 // LIMIT the temperatures so they do not descend below absolute zero.
76 if (altitude < 22960.0) {
77 intTemperature = -25.68 - 0.000548*altitude; // Deg Fahrenheit
79 intTemperature = -10.34 - 0.001217*altitude; // Deg Fahrenheit
81 intPressure = 14.62*exp(-0.00003*altitude); // psf - 14.62 psf =~ 7 millibars
82 intDensity = intPressure/(Reng*intTemperature); // slugs/ft^3 (needs deg R. as input
84 //cout << "Atmosphere: h=" << altitude << " rho= " << intDensity << endl;
87 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
88 // The bitmasked value choices are as follows:
89 // unset: In this case (the default) JSBSim would only print
90 // out the normally expected messages, essentially echoing
91 // the config files as they are read. If the environment
92 // variable is not set, debug_lvl is set to 1 internally
93 // 0: This requests JSBSim not to output any messages
95 // 1: This value explicity requests the normal JSBSim
97 // 2: This value asks for a message to be printed out when
98 // a class is instantiated
99 // 4: When this value is set, a message is displayed when a
100 // FGModel object executes its Run() method
101 // 8: When this value is set, various runtime state variables
102 // are printed out periodically
103 // 16: When set various parameters are sanity checked and
104 // a message is printed out when they go out of bounds
106 void FGMars::Debug(int from)
108 if (debug_lvl <= 0) return;
110 if (debug_lvl & 1) { // Standard console startup message output
111 if (from == 0) { // Constructor
114 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
115 if (from == 0) cout << "Instantiated: FGMars" << endl;
116 if (from == 1) cout << "Destroyed: FGMars" << endl;
118 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
120 if (debug_lvl & 8 ) { // Runtime state variables
122 if (debug_lvl & 16) { // Sanity checking
124 if (debug_lvl & 32) { // Turbulence
125 if (first_pass && from == 2) {
126 cout << "vTurbulenceNED(X), vTurbulenceNED(Y), vTurbulenceNED(Z), "
127 << "vTurbulenceGrad(X), vTurbulenceGrad(Y), vTurbulenceGrad(Z), "
128 << "vDirection(X), vDirection(Y), vDirection(Z), "
130 << "vTurbPQR(P), vTurbPQR(Q), vTurbPQR(R), " << endl;
131 } else if (from == 2) {
132 cout << vTurbulenceNED << ", " << vTurbulenceGrad << ", " << vDirection << ", " << Magnitude << ", " << vTurbPQR << endl;
135 if (debug_lvl & 64) {
136 if (from == 0) { // Constructor
137 cout << IdSrc << endl;
138 cout << IdHdr << endl;
143 } // namespace JSBSim