]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/FGModel.h
Sync. w. JSBSim cvs
[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 (jon@jsbsim.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
43 #include <string>
44 #include <vector>
45
46 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47 DEFINITIONS
48 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
49
50 #define ID_MODEL "$Id$"
51
52 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53 FORWARD DECLARATIONS
54 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55
56 namespace JSBSim {
57
58 class FGFDMExec;
59 class FGState;
60 class FGAtmosphere;
61 class FGFCS;
62 class FGPropulsion;
63 class FGMassBalance;
64 class FGAerodynamics;
65 class FGInertial;
66 class FGGroundReactions;
67 class FGExternalReactions;
68 class FGBuoyantForces;
69 class FGAircraft;
70 class FGPropagate;
71 class FGAuxiliary;
72 class Element;
73 class FGPropertyManager;
74
75 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76 CLASS DOCUMENTATION
77 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
78
79 /** Base class for all scheduled JSBSim models
80     @author Jon S. Berndt
81   */
82
83 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84 CLASS DECLARATION
85 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
86
87 class FGModel : public FGJSBBase
88 {
89 public:
90
91   /// Constructor
92   FGModel(FGFDMExec*);
93   /// Destructor
94   ~FGModel();
95
96   /** Loads this model.
97       @param el a pointer to the element
98       @return true if model is successfully loaded*/
99   virtual bool Load(Element* el);
100
101   FGModel* NextModel;
102   std::string Name;
103
104   /** Runs the model; called by the Executive
105       @see JSBSim.cpp documentation
106       @return false if no error */
107   virtual bool Run(void);
108   virtual bool InitModel(void);
109   virtual void SetRate(int tt) {rate = tt;}
110   virtual int  GetRate(void)   {return rate;}
111   FGFDMExec* GetExec(void)     {return FDMExec;}
112
113   void SetPropertyManager(FGPropertyManager *fgpm) { PropertyManager=fgpm;}
114
115 protected:
116   int exe_ctr;
117   int rate;
118
119   virtual void Debug(int from);
120
121   FGFDMExec*         FDMExec;
122   FGState*           State;
123   FGAtmosphere*      Atmosphere;
124   FGFCS*             FCS;
125   FGPropulsion*      Propulsion;
126   FGMassBalance*     MassBalance;
127   FGAerodynamics*    Aerodynamics;
128   FGInertial*        Inertial;
129   FGGroundReactions* GroundReactions;
130   FGExternalReactions* ExternalReactions;
131   FGBuoyantForces*   BuoyantForces;
132   FGAircraft*        Aircraft;
133   FGPropagate*       Propagate;
134   FGAuxiliary*       Auxiliary;
135   FGPropertyManager* PropertyManager;
136
137   std::vector <double*> interface_properties;
138 };
139 }
140 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
141 #endif
142