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
FGMars.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGMars.cpp
4 Author: Jon Berndt
5 Date started: 1/4/04
6 Purpose: Models the Martian atmosphere very simply
7 Called by: FGFDMExec
8
9 ------------- Copyright (C) 2004 Jon S. Berndt (jon@jsbsim.org) -------------
10
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
14 version.
15
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
19 details.
20
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.
24
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.
27
28FUNCTIONAL DESCRIPTION
29--------------------------------------------------------------------------------
30Models the Martian atmosphere.
31
32HISTORY
33--------------------------------------------------------------------------------
341/04/2004 JSB Created
35
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37COMMENTS, REFERENCES, and NOTES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41INCLUDES
42%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
43
44#include "FGMars.h"
45#include <iostream>
46
47using namespace std;
48
49namespace JSBSim {
50
51/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52CLASS IMPLEMENTATION
53%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
54
55
57{
58 Name = "FGMars";
59 Reng = 53.5 * 44.01;
60
61 bind();
62 Debug(0);
63}
64
65//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66
67void FGMars::Calculate(double altitude)
68{
69 //Calculate reftemp, refpress, and density
70
71 // LIMIT the temperatures so they do not descend below absolute zero.
72
73 if (altitude < 22960.0) {
74 Temperature = -25.68 - 0.000548*altitude; // Deg Fahrenheit
75 } else {
76 Temperature = -10.34 - 0.001217*altitude; // Deg Fahrenheit
77 }
78 Pressure = 14.62*exp(-0.00003*altitude); // psf - 14.62 psf =~ 7 millibars
79 Density = Pressure/(Reng*Temperature); // slugs/ft^3 (needs deg R. as input
80
81 //cout << "Atmosphere: h=" << altitude << " rho= " << intDensity << endl;
82}
83
84//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
85// The bitmasked value choices are as follows:
86// unset: In this case (the default) JSBSim would only print
87// out the normally expected messages, essentially echoing
88// the config files as they are read. If the environment
89// variable is not set, debug_lvl is set to 1 internally
90// 0: This requests JSBSim not to output any messages
91// whatsoever.
92// 1: This value explicity requests the normal JSBSim
93// startup messages
94// 2: This value asks for a message to be printed out when
95// a class is instantiated
96// 4: When this value is set, a message is displayed when a
97// FGModel object executes its Run() method
98// 8: When this value is set, various runtime state variables
99// are printed out periodically
100// 16: When set various parameters are sanity checked and
101// a message is printed out when they go out of bounds
102
103void FGMars::Debug(int from)
104{
105 if (debug_lvl <= 0) return;
106
107 if (debug_lvl & 1) { // Standard console startup message output
108 if (from == 0) { // Constructor
109 }
110 }
111 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
112 if (from == 0) cout << "Instantiated: FGMars" << endl;
113 if (from == 1) cout << "Destroyed: FGMars" << endl;
114 }
115 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
116 }
117 if (debug_lvl & 8 ) { // Runtime state variables
118 }
119 if (debug_lvl & 16) { // Sanity checking
120 }
121 if (debug_lvl & 32) { // Turbulence
122 }
123 if (debug_lvl & 64) {
124 if (from == 0) { // Constructor
125 }
126 }
127}
128
129} // namespace JSBSim
Models an empty, abstract base atmosphere class.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
FGMars(FGFDMExec *)
Constructor.
Definition FGMars.cpp:56