JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
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 (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
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later 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
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2809/12/2000 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGMASSBALANCE_H
35#define FGMASSBALANCE_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <memory>
42
43#include "FGModel.h"
44#include "math/FGMatrix33.h"
45
46/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47FORWARD DECLARATIONSS
48%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
49
50namespace JSBSim {
51
52class FGPropagate;
53class FGGroundReactions;
54
55/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
56CLASS DOCUMENTATION
57%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
58
120/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
121CLASS DECLARATION
122%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
123
124class JSBSIM_API FGMassBalance : public FGModel
125{
126
127public:
128 explicit FGMassBalance(FGFDMExec*);
130
131 bool Load(Element* el) override;
132 bool InitModel(void) override;
141 bool Run(bool Holding) override;
142
143 double GetMass(void) const {return Mass;}
144 double GetWeight(void) const {return Weight;}
145 double GetEmptyWeight(void) const {return EmptyWeight;}
148 const FGColumnVector3& GetXYZcg(void) const {return vXYZcg;}
149 double GetXYZcg(int axis) const {return vXYZcg(axis);}
150 const FGColumnVector3& GetDeltaXYZcg(void) const {return vDeltaXYZcg;}
151 double GetDeltaXYZcg(int axis) const {return vDeltaXYZcg(axis);}
152
161 FGMatrix33 GetPointmassInertia(double mass_sl, const FGColumnVector3& r) const
162 {
163 FGColumnVector3 v = StructuralToBody( r );
164 FGColumnVector3 sv = mass_sl*v;
165 double xx = sv(1)*v(1);
166 double yy = sv(2)*v(2);
167 double zz = sv(3)*v(3);
168 double xy = -sv(1)*v(2);
169 double xz = -sv(1)*v(3);
170 double yz = -sv(2)*v(3);
171 return FGMatrix33( yy+zz, xy, xz,
172 xy, xx+zz, yz,
173 xz, yz, xx+yy );
174 }
175
185 FGColumnVector3 StructuralToBody(const FGColumnVector3& r) const;
186
187 void SetEmptyWeight(double EW) { EmptyWeight = EW;}
188 void SetBaseCG(const FGColumnVector3& CG) {vbaseXYZcg = vXYZcg = CG;}
189
190 void AddPointMass(Element* el);
191 double GetTotalPointMassWeight(void) const;
192
193 const FGColumnVector3& GetPointMassMoment(void);
195 const FGMatrix33& GetJ(void) const {return mJ;}
197 const FGMatrix33& GetJinv(void) const {return mJinv;}
198 void SetAircraftBaseInertias(const FGMatrix33& BaseJ) {baseJ = BaseJ;}
199 void GetMassPropertiesReport(int i);
200
201 struct Inputs {
202 double GasMass;
203 double TanksWeight;
204 FGColumnVector3 GasMoment;
205 FGMatrix33 GasInertia;
206 FGColumnVector3 TanksMoment;
207 FGMatrix33 TankInertia;
208 bool WOW;
209 } in;
210
211private:
212 std::shared_ptr<FGPropagate> Propagate;
213 double Weight;
214 double EmptyWeight;
215 double Mass;
216 FGMatrix33 mJ;
217 FGMatrix33 mJinv;
218 FGMatrix33 pmJ;
219 FGMatrix33 baseJ;
220 FGColumnVector3 vXYZcg;
221 FGColumnVector3 vLastXYZcg;
222 FGColumnVector3 vDeltaXYZcg;
223 FGColumnVector3 vDeltaXYZcgBody;
224 FGColumnVector3 vXYZtank;
225 FGColumnVector3 vbaseXYZcg;
226 FGColumnVector3 vPMxyz;
227 FGColumnVector3 PointMassCG;
228 const FGMatrix33& CalculatePMInertias(void);
229 double GetIxx(void) const { return mJ(1,1); }
230 double GetIyy(void) const { return mJ(2,2); }
231 double GetIzz(void) const { return mJ(3,3); }
232 double GetIxy(void) const { return -mJ(1,2); }
233 double GetIxz(void) const { return mJ(1,3); }
234 double GetIyz(void) const { return -mJ(2,3); }
235
238 struct PointMass {
239 PointMass(double w, FGColumnVector3& vXYZ) :
240 eShapeType(esUnspecified), Location(vXYZ), Weight(w), Radius(0.0),
241 Length(0.0) {}
242
243 void CalculateShapeInertia(void) {
244 switch(eShapeType) {
245 case esTube:
246 mPMInertia(1,1) = (Weight/(slugtolb))*Radius*Radius; // mr^2
247 mPMInertia(2,2) = (Weight/(slugtolb*12))*(6*Radius*Radius + Length*Length);
248 mPMInertia(3,3) = mPMInertia(2,2);
249 break;
250 case esCylinder:
251 mPMInertia(1,1) = (Weight/(slugtolb*2))*Radius*Radius; // 0.5*mr^2
252 mPMInertia(2,2) = (Weight/(slugtolb*12))*(3*Radius*Radius + Length*Length);
253 mPMInertia(3,3) = mPMInertia(2,2);
254 break;
255 case esSphere:
256 mPMInertia(1,1) = (Weight/(slugtolb*3))*Radius*Radius*2; // (2mr^2)/3
257 mPMInertia(2,2) = mPMInertia(1,1);
258 mPMInertia(3,3) = mPMInertia(1,1);
259 break;
260 case esBall:
261 mPMInertia(1,1) = (Weight/(slugtolb*5))*Radius*Radius*2; // (2mr^2)/5
262 mPMInertia(2,2) = mPMInertia(1,1);
263 mPMInertia(3,3) = mPMInertia(1,1);
264 break;
265 default:
266 break;
267 }
268 }
269
270 enum esShape {esUnspecified, esTube, esCylinder, esSphere, esBall} eShapeType;
271 FGColumnVector3 Location;
272 double Weight;
273 double Radius;
274 double Length;
275 std::string Name;
276 FGMatrix33 mPMInertia;
277
278 double GetPointMassLocation(int axis) const {return Location(axis);}
279 double GetPointMassWeight(void) const {return Weight;}
280 esShape GetShapeType(void) {return eShapeType;}
281 const FGColumnVector3& GetLocation(void) {return Location;}
282 const FGMatrix33& GetPointMassInertia(void) {return mPMInertia;}
283 const std::string& GetName(void) {return Name;}
284
285 void SetPointMassLocation(int axis, double value) {Location(axis) = value;}
286 void SetPointMassWeight(double wt) {
287 Weight = wt;
288 CalculateShapeInertia();
289 }
290 void SetPointMassShapeType(esShape st) {eShapeType = st;}
291 void SetRadius(double r) {Radius = r;}
292 void SetLength(double l) {Length = l;}
293 void SetName(const std::string& name) {Name = name;}
294 void SetPointMassMoI(const FGMatrix33& MoI) { mPMInertia = MoI; }
295 double GetPointMassMoI(int r, int c) {return mPMInertia(r,c);}
296
297 void bind(FGPropertyManager* PropertyManager, unsigned int num);
298 };
299
300 std::vector <struct PointMass*> PointMasses;
301
302 void bind(void);
303 void Debug(int from) override;
304};
305}
306//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
307#endif
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Models weight, balance and moment of inertia information.
const FGColumnVector3 & GetXYZcg(void) const
Returns the coordinates of the center of gravity expressed in the structural frame.
const FGMatrix33 & GetJinv(void) const
Returns the inverse of the inertia matrix expressed in the body frame.
FGMatrix33 GetPointmassInertia(double mass_sl, const FGColumnVector3 &r) const
Computes the inertia contribution of a pointmass.
const FGMatrix33 & GetJ(void) const
Returns the inertia matrix expressed in the body frame.
Handles matrix math operations.
Definition FGMatrix33.h:70
Base class for all scheduled JSBSim models.
Definition FGModel.h:70