1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 Purpose: Base class for all models
7 Called by: FGSimExec, et. al.
9 ------------- Copyright (C) 1999 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 This base class for the FGAerodynamics, FGPropagate, etc. classes defines methods
34 --------------------------------------------------------------------------------
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
42 #include "FGFDMExec.h"
43 #include "FGAtmosphere.h"
45 #include "FGPropulsion.h"
46 #include "FGMassBalance.h"
47 #include "FGAerodynamics.h"
48 #include "FGInertial.h"
49 #include "FGGroundReactions.h"
50 #include "FGExternalReactions.h"
51 #include "FGAircraft.h"
52 #include "FGPropagate.h"
53 #include "FGAuxiliary.h"
60 static const char *IdSrc = "$Id: FGModel.cpp,v 1.15 2010/09/07 00:19:38 jberndt Exp $";
61 static const char *IdHdr = ID_MODEL;
63 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
67 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
69 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
71 FGModel::FGModel(FGFDMExec* fdmex)
82 ExternalReactions = 0;
87 //in order for FGModel derived classes to self-bind (that is, call
88 //their bind function in the constructor, the PropertyManager pointer
89 //must be brought up now.
90 PropertyManager = FDMExec->GetPropertyManager();
95 if (debug_lvl & 2) cout << " FGModel Base Class" << endl;
98 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
102 if (debug_lvl & 2) cout << "Destroyed: FGModel" << endl;
105 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
107 bool FGModel::InitModel(void)
109 Atmosphere = FDMExec->GetAtmosphere();
110 FCS = FDMExec->GetFCS();
111 Propulsion = FDMExec->GetPropulsion();
112 MassBalance = FDMExec->GetMassBalance();
113 Aerodynamics = FDMExec->GetAerodynamics();
114 Inertial = FDMExec->GetInertial();
115 GroundReactions = FDMExec->GetGroundReactions();
116 ExternalReactions = FDMExec->GetExternalReactions();
117 BuoyantForces = FDMExec->GetBuoyantForces();
118 Aircraft = FDMExec->GetAircraft();
119 Propagate = FDMExec->GetPropagate();
120 Auxiliary = FDMExec->GetAuxiliary();
129 !ExternalReactions ||
132 !Auxiliary) return(false);
136 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
140 if (debug_lvl & 4) cout << "Entering Run() for model " << Name << endl;
142 if (rate == 1) return false; // Fast exit if nothing to do
144 if (exe_ctr >= rate) exe_ctr = 1;
146 if (exe_ctr++ == 1) return false;
150 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151 // The bitmasked value choices are as follows:
152 // unset: In this case (the default) JSBSim would only print
153 // out the normally expected messages, essentially echoing
154 // the config files as they are read. If the environment
155 // variable is not set, debug_lvl is set to 1 internally
156 // 0: This requests JSBSim not to output any messages
158 // 1: This value explicity requests the normal JSBSim
160 // 2: This value asks for a message to be printed out when
161 // a class is instantiated
162 // 4: When this value is set, a message is displayed when a
163 // FGModel object executes its Run() method
164 // 8: When this value is set, various runtime state variables
165 // are printed out periodically
166 // 16: When set various parameters are sanity checked and
167 // a message is printed out when they go out of bounds
169 void FGModel::Debug(int from)
171 if (debug_lvl <= 0) return;
173 if (debug_lvl & 1) { // Standard console startup message output
174 if (from == 0) { // Constructor
178 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
179 if (from == 0) cout << "Instantiated: FGModel" << endl;
180 if (from == 1) cout << "Destroyed: FGModel" << endl;
182 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
184 if (debug_lvl & 8 ) { // Runtime state variables
186 if (debug_lvl & 16) { // Sanity checking
188 if (debug_lvl & 64) {
189 if (from == 0) { // Constructor
190 cout << IdSrc << endl;
191 cout << IdHdr << endl;