]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGMassBalance.h
Turn the console colors back to default before continueing
[flightgear.git] / src / FDM / JSBSim / FGMassBalance.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGMassBalance.h
4  Author:       Jon S. Berndt
5  Date started: 09/12/2000
6
7  ------------- Copyright (C) 2000  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 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 General Public License for more
17  details.
18
19  You should have received a copy of the GNU 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 General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 09/12/2000  JSB  Created
29
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 SENTRY
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34 #ifndef FGMASSBALANCE_H
35 #define FGMASSBALANCE_H
36
37 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #include "FGModel.h"
42 #include "FGPropulsion.h"
43 #include <vector>
44
45 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46 DEFINITIONS
47 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49 #define ID_MASSBALANCE "$Id$"
50
51 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52 FORWARD DECLARATIONSS
53 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
54
55 namespace JSBSim {
56
57 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58 CLASS DOCUMENTATION
59 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
60
61 /** Models weight and balance information.
62   */
63
64 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65 CLASS DECLARATION
66 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
67
68 class FGMassBalance : public FGModel
69 {
70
71 public:
72   FGMassBalance(FGFDMExec*);
73   ~FGMassBalance();
74
75   bool Run(void);
76
77   inline double GetMass(void) const {return Mass;}
78   inline double GetWeight(void) const {return Weight;}
79   inline double GetIxx(void) const {return Ixx;}
80   inline double GetIyy(void) const {return Iyy;}
81   inline double GetIzz(void) const {return Izz;}
82   inline double GetIxy(void) const {return Ixy;}
83   inline double GetIxz(void) const {return Ixz;}
84   inline FGColumnVector3& GetXYZcg(void) {return vXYZcg;}
85   inline double GetXYZcg(int axis) const  {return vXYZcg(axis);}
86
87   inline void SetEmptyWeight(double EW) { EmptyWeight = EW;}
88   inline void SetBaseIxx(double bixx)   { baseIxx = bixx;}
89   inline void SetBaseIyy(double biyy)   { baseIyy = biyy;}
90   inline void SetBaseIzz(double bizz)   { baseIzz = bizz;}
91   inline void SetBaseIxy(double bixy)   { baseIxy = bixy;}
92   inline void SetBaseIxz(double bixz)   { baseIxz = bixz;}
93   inline void SetBaseCG(const FGColumnVector3& CG) {vbaseXYZcg = CG;}
94   
95   void AddPointMass(double weight, double X, double Y, double Z);
96   double GetPointMassWeight(void);
97   FGColumnVector3& GetPointMassMoment(void);
98   double GetPMIxx(void);
99   double GetPMIyy(void);
100   double GetPMIzz(void);
101   double GetPMIxy(void);
102   double GetPMIxz(void);
103   
104   void bind(void);
105   void unbind(void);
106
107 private:
108   double Weight;
109   double EmptyWeight;
110   double Mass;
111   double Ixx;
112   double Iyy;
113   double Izz;
114   double Ixy;
115   double Ixz;
116   double baseIxx;
117   double baseIyy;
118   double baseIzz;
119   double baseIxy;
120   double baseIxz;
121   FGColumnVector3 vXYZcg;
122   FGColumnVector3 vXYZtank;
123   FGColumnVector3 vbaseXYZcg;
124   vector <FGColumnVector3> PointMassLoc;
125   vector <double> PointMassWeight;
126   FGColumnVector3 PointMassCG;
127   void Debug(int from);
128 };
129 }
130 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
131 #endif