1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 Header: FGMassBalance.h
5 Date started: 09/12/2000
7 ------------- Copyright (C) 2000 Jon S. Berndt (jsb@hal-pc.org) --------------
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
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
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.
23 Further information about the GNU General Public License can also be found on
24 the world wide web at http://www.gnu.org.
27 --------------------------------------------------------------------------------
28 09/12/2000 JSB Created
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 COMMENTS, REFERENCES, and NOTES
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
38 #ifndef FGMASSBALANCE_H
39 #define FGMASSBALANCE_H
41 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
46 #include "FGPropulsion.h"
49 #define ID_MASSBALANCE "$Id$"
51 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55 class FGMassBalance : public FGModel
59 FGMassBalance(FGFDMExec*);
64 inline double GetMass(void) const {return Mass;}
65 inline double GetWeight(void) const {return Weight;}
66 inline double GetIxx(void) const {return Ixx;}
67 inline double GetIyy(void) const {return Iyy;}
68 inline double GetIzz(void) const {return Izz;}
69 inline double GetIxy(void) const {return Ixy;}
70 inline double GetIxz(void) const {return Ixz;}
71 inline FGColumnVector3& GetXYZcg(void) {return vXYZcg;}
72 inline double GetXYZcg(int axis) const {return vXYZcg(axis);}
74 inline void SetEmptyWeight(double EW) { EmptyWeight = EW;}
75 inline void SetBaseIxx(double bixx) { baseIxx = bixx;}
76 inline void SetBaseIyy(double biyy) { baseIyy = biyy;}
77 inline void SetBaseIzz(double bizz) { baseIzz = bizz;}
78 inline void SetBaseIxy(double bixy) { baseIxy = bixy;}
79 inline void SetBaseIxz(double bixz) { baseIxz = bixz;}
80 inline void SetBaseCG(const FGColumnVector3& CG) {vbaseXYZcg = CG;}
82 void AddPointMass(double weight, double X, double Y, double Z);
83 double GetPointMassWeight(void);
84 FGColumnVector3& GetPointMassMoment(void);
85 double GetPMIxx(void);
86 double GetPMIyy(void);
87 double GetPMIzz(void);
88 double GetPMIxy(void);
89 double GetPMIxz(void);
108 FGColumnVector3 vXYZcg;
109 FGColumnVector3 vXYZtank;
110 FGColumnVector3 vbaseXYZcg;
111 vector <FGColumnVector3> PointMassLoc;
112 vector <double> PointMassWeight;
113 FGColumnVector3 PointMassCG;
114 void Debug(int from);
117 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%