]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/FGModel.h
369a5255ceaa6bdfcbcdc2ada49d530ae61c99d7
[flightgear.git] / src / FDM / JSBSim / models / FGModel.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGModel.h
4  Author:       Jon Berndt
5  Date started: 11/21/98
6
7  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU Lesser General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
17  details.
18
19  You should have received a copy of the GNU Lesser General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU Lesser General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 11/22/98   JSB   Created
29
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 SENTRY
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34 #ifndef FGMODEL_H
35 #define FGMODEL_H
36
37 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #include <FGJSBBase.h>
42 #include <input_output/FGPropertyManager.h>
43 #include <input_output/FGXMLElement.h>
44
45 #include <iostream>
46 #include <string>
47
48 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49 DEFINITIONS
50 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51
52 #define ID_MODEL "$Id$"
53
54 using namespace std;
55
56 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57 FORWARD DECLARATIONS
58 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59
60 namespace JSBSim {
61
62 class FGFDMExec;
63 class FGState;
64 class FGAtmosphere;
65 class FGFCS;
66 class FGPropulsion;
67 class FGMassBalance;
68 class FGAerodynamics;
69 class FGInertial;
70 class FGGroundReactions;
71 class FGExternalReactions;
72 class FGBuoyantForces;
73 class FGAircraft;
74 class FGPropagate;
75 class FGAuxiliary;
76
77 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78 CLASS DOCUMENTATION
79 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
80
81 /** Base class for all scheduled JSBSim models
82     @author Jon S. Berndt
83   */
84
85 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
86 CLASS DECLARATION
87 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
88
89 class FGModel : public FGJSBBase
90 {
91 public:
92
93   /// Constructor
94   FGModel(FGFDMExec*);
95   /// Destructor
96   virtual ~FGModel();
97
98   /** Loads this model.
99       @param el a pointer to the element
100       @return true if model is successfully loaded*/
101   virtual bool Load(Element* el) {return true;}
102
103   FGModel* NextModel;
104   string Name;
105
106   /** Runs the model; called by the Executive
107       @see JSBSim.cpp documentation
108       @return false if no error */
109   virtual bool Run(void);
110   virtual bool InitModel(void);
111   virtual void SetRate(int tt) {rate = tt;}
112   virtual int  GetRate(void)   {return rate;}
113
114   void SetPropertyManager(FGPropertyManager *fgpm) { PropertyManager=fgpm;}
115
116 protected:
117   int exe_ctr;
118   int rate;
119
120   virtual void Debug(int from);
121
122   FGFDMExec*         FDMExec;
123   FGState*           State;
124   FGAtmosphere*      Atmosphere;
125   FGFCS*             FCS;
126   FGPropulsion*      Propulsion;
127   FGMassBalance*     MassBalance;
128   FGAerodynamics*    Aerodynamics;
129   FGInertial*        Inertial;
130   FGGroundReactions* GroundReactions;
131   FGExternalReactions* ExternalReactions;
132   FGBuoyantForces*   BuoyantForces;
133   FGAircraft*        Aircraft;
134   FGPropagate*       Propagate;
135   FGAuxiliary*       Auxiliary;
136   FGPropertyManager* PropertyManager;
137 };
138 }
139 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
140 #endif
141