43#include "FGMassBalance.h"
45#include "input_output/FGXMLElement.h"
56FGMassBalance::FGMassBalance(FGFDMExec* fdmex)
59 Name =
"FGMassBalance";
60 Weight = EmptyWeight = Mass = 0.0;
62 vbaseXYZcg.InitMatrix();
64 vLastXYZcg.InitMatrix();
65 vDeltaXYZcg.InitMatrix();
70 Propagate = fdmex->GetPropagate();
79FGMassBalance::~FGMassBalance()
81 for(
auto pm: PointMasses) delete pm;
88bool FGMassBalance::InitModel(
void)
90 if (!FGModel::InitModel())
return false;
92 vLastXYZcg.InitMatrix();
93 vDeltaXYZcg.InitMatrix();
100static FGMatrix33 ReadInertiaMatrix(Element* document)
102 double bixx, biyy, bizz, bixy, bixz, biyz;
104 bixx = biyy = bizz = bixy = bixz = biyz = 0.0;
105 if (document->FindElement(
"ixx"))
106 bixx = document->FindElementValueAsNumberConvertTo(
"ixx",
"SLUG*FT2");
107 if (document->FindElement(
"iyy"))
108 biyy = document->FindElementValueAsNumberConvertTo(
"iyy",
"SLUG*FT2");
109 if (document->FindElement(
"izz"))
110 bizz = document->FindElementValueAsNumberConvertTo(
"izz",
"SLUG*FT2");
111 if (document->FindElement(
"ixy"))
112 bixy = document->FindElementValueAsNumberConvertTo(
"ixy",
"SLUG*FT2");
113 if (document->FindElement(
"ixz"))
114 bixz = document->FindElementValueAsNumberConvertTo(
"ixz",
"SLUG*FT2");
115 if (document->FindElement(
"iyz"))
116 biyz = document->FindElementValueAsNumberConvertTo(
"iyz",
"SLUG*FT2");
120 if (document->GetAttributeValue(
"negated_crossproduct_inertia") ==
string(
"false"))
121 return FGMatrix33( bixx, bixy, -bixz,
125 return FGMatrix33( bixx, -bixy, bixz,
132bool FGMassBalance::Load(Element* document)
134 string element_name =
"";
136 Name =
"Mass Properties Model: " + document->GetAttributeValue(
"name");
139 if (!FGModel::Upload(document,
true))
142 SetAircraftBaseInertias(ReadInertiaMatrix(document));
143 if (document->FindElement(
"emptywt")) {
144 EmptyWeight = document->FindElementValueAsNumberConvertTo(
"emptywt",
"LBS");
147 Element *element = document->FindElement(
"location");
149 element_name = element->GetAttributeValue(
"name");
150 if (element_name ==
"CG") vbaseXYZcg = element->FindElementTripletConvertTo(
"IN");
151 element = document->FindNextElement(
"location");
157 element = document->FindElement(
"pointmass");
159 AddPointMass(element);
160 element = document->FindNextElement(
"pointmass");
163 double ChildFDMWeight = 0.0;
164 for (
size_t fdm=0; fdm<FDMExec->
GetFDMCount(); fdm++) {
165 if (FDMExec->
GetChildFDM(fdm)->mated) ChildFDMWeight += FDMExec->
GetChildFDM(fdm)->exec->GetMassBalance()->GetWeight();
168 Weight = EmptyWeight + in.TanksWeight + GetTotalPointMassWeight()
169 + in.GasMass*slugtolb + ChildFDMWeight;
171 Mass = lbtoslug*Weight;
173 PostLoad(document, FDMExec);
181bool FGMassBalance::Run(
bool Holding)
183 double denom, k1, k2, k3, k4, k5, k6;
184 double Ixx, Iyy, Izz, Ixy, Ixz, Iyz;
186 if (FGModel::Run(Holding))
return true;
187 if (Holding)
return false;
191 double ChildFDMWeight = 0.0;
192 for (
size_t fdm=0; fdm<FDMExec->
GetFDMCount(); fdm++) {
193 if (FDMExec->
GetChildFDM(fdm)->mated) ChildFDMWeight += FDMExec->
GetChildFDM(fdm)->exec->GetMassBalance()->GetWeight();
196 Weight = EmptyWeight + in.TanksWeight + GetTotalPointMassWeight()
197 + in.GasMass*slugtolb + ChildFDMWeight;
199 Mass = lbtoslug*Weight;
203 vXYZcg = (EmptyWeight*vbaseXYZcg
204 + GetPointMassMoment()
206 + in.GasMoment) / Weight;
210 if (vLastXYZcg.Magnitude() == 0.0) vLastXYZcg = vXYZcg;
211 vDeltaXYZcg = vXYZcg - vLastXYZcg;
212 vDeltaXYZcgBody = StructuralToBody(vLastXYZcg) - StructuralToBody(vXYZcg);
218 Propagate->NudgeBodyLocation(vDeltaXYZcgBody);
225 mJ += GetPointmassInertia( lbtoslug * EmptyWeight, vbaseXYZcg );
227 mJ += CalculatePMInertias();
228 mJ += in.TankInertia;
241 k1 = (Iyy*Izz - Iyz*Iyz);
242 k2 = (Iyz*Ixz + Ixy*Izz);
243 k3 = (Ixy*Iyz + Iyy*Ixz);
245 denom = 1.0/(Ixx*k1 - Ixy*k2 - Ixz*k3 );
249 k4 = (Izz*Ixx - Ixz*Ixz)*denom;
250 k5 = (Ixy*Ixz + Iyz*Ixx)*denom;
251 k6 = (Ixx*Iyy - Ixy*Ixy)*denom;
253 mJinv = { k1, k2, k3,
266void FGMassBalance::AddPointMass(
Element* el)
272 s << el->
ReadFrom() <<
"Pointmass " << pointmass_name
273 <<
" has no location.";
274 cerr << endl << s.str() << endl;
281 PointMass *pm =
new PointMass(w, vXYZ);
282 pm->SetName(pointmass_name);
286 double radius=0, length=0;
288 Element* radius_element = form_element->FindElement(
"radius");
289 Element* length_element = form_element->FindElement(
"length");
290 if (radius_element) radius = form_element->FindElementValueAsNumberConvertTo(
"radius",
"FT");
291 if (length_element) length = form_element->FindElementValueAsNumberConvertTo(
"length",
"FT");
292 if (shape ==
"tube") {
293 pm->SetPointMassShapeType(PointMass::esTube);
294 pm->SetRadius(radius);
295 pm->SetLength(length);
296 pm->CalculateShapeInertia();
297 }
else if (shape ==
"cylinder") {
298 pm->SetPointMassShapeType(PointMass::esCylinder);
299 pm->SetRadius(radius);
300 pm->SetLength(length);
301 pm->CalculateShapeInertia();
302 }
else if (shape ==
"sphere") {
303 pm->SetPointMassShapeType(PointMass::esSphere);
304 pm->SetRadius(radius);
305 pm->CalculateShapeInertia();
306 }
else if (shape ==
"ball") {
307 pm->SetPointMassShapeType(PointMass::esBall);
308 pm->SetRadius(radius);
309 pm->CalculateShapeInertia();
314 pm->SetPointMassShapeType(PointMass::esUnspecified);
315 pm->SetPointMassMoI(ReadInertiaMatrix(el));
318 pm->bind(PropertyManager.get(), PointMasses.size());
319 PointMasses.push_back(pm);
324double FGMassBalance::GetTotalPointMassWeight(
void)
const
326 double PM_total_weight = 0.0;
328 for(
auto pm: PointMasses)
329 PM_total_weight += pm->Weight;
331 return PM_total_weight;
336const FGColumnVector3& FGMassBalance::GetPointMassMoment(
void)
338 PointMassCG.InitMatrix();
340 for (
auto pm: PointMasses)
341 PointMassCG += pm->Weight * pm->Location;
348const FGMatrix33& FGMassBalance::CalculatePMInertias(
void)
350 if (PointMasses.empty())
return pmJ;
354 for (
auto pm: PointMasses) {
355 pmJ += GetPointmassInertia( lbtoslug * pm->Weight, pm->Location );
356 pmJ += pm->GetPointMassInertia();
391 inchtoft*(r(2)-vXYZcg(2)),
392 inchtoft*(vXYZcg(3)-r(3)));
397void FGMassBalance::bind(
void)
400 PropertyManager->Tie(
"inertia/mass-slugs",
this,
401 &FGMassBalance::GetMass);
402 PropertyManager->Tie(
"inertia/weight-lbs",
this,
403 &FGMassBalance::GetWeight);
404 PropertyManager->Tie(
"inertia/empty-weight-lbs",
this,
405 &FGMassBalance::GetEmptyWeight);
406 PropertyManager->Tie(
"inertia/cg-x-in",
this,1,
407 (PMF)&FGMassBalance::GetXYZcg);
408 PropertyManager->Tie(
"inertia/cg-y-in",
this,2,
409 (PMF)&FGMassBalance::GetXYZcg);
410 PropertyManager->Tie(
"inertia/cg-z-in",
this,3,
411 (PMF)&FGMassBalance::GetXYZcg);
412 PropertyManager->Tie(
"inertia/ixx-slugs_ft2",
this,
413 &FGMassBalance::GetIxx);
414 PropertyManager->Tie(
"inertia/iyy-slugs_ft2",
this,
415 &FGMassBalance::GetIyy);
416 PropertyManager->Tie(
"inertia/izz-slugs_ft2",
this,
417 &FGMassBalance::GetIzz);
418 PropertyManager->Tie(
"inertia/ixy-slugs_ft2",
this,
419 &FGMassBalance::GetIxy);
420 PropertyManager->Tie(
"inertia/ixz-slugs_ft2",
this,
421 &FGMassBalance::GetIxz);
422 PropertyManager->Tie(
"inertia/iyz-slugs_ft2",
this,
423 &FGMassBalance::GetIyz);
425 PropertyManager->Tie(
"inertia/print-mass-properties",
this, (iOPV)0,
426 &FGMassBalance::GetMassPropertiesReport);
433void FGMassBalance::PointMass::bind(FGPropertyManager* PropertyManager,
435 string tmp = CreateIndexedPropertyName(
"inertia/pointmass-weight-lbs", num);
436 PropertyManager->Tie( tmp.c_str(),
this, &PointMass::GetPointMassWeight,
437 &PointMass::SetPointMassWeight);
439 tmp = CreateIndexedPropertyName(
"inertia/pointmass-location-X-inches", num);
440 PropertyManager->Tie( tmp.c_str(),
this, eX, &PointMass::GetPointMassLocation,
441 &PointMass::SetPointMassLocation);
442 tmp = CreateIndexedPropertyName(
"inertia/pointmass-location-Y-inches", num);
443 PropertyManager->Tie( tmp.c_str(),
this, eY, &PointMass::GetPointMassLocation,
444 &PointMass::SetPointMassLocation);
445 tmp = CreateIndexedPropertyName(
"inertia/pointmass-location-Z-inches", num);
446 PropertyManager->Tie( tmp.c_str(),
this, eZ, &PointMass::GetPointMassLocation,
447 &PointMass::SetPointMassLocation);
452void FGMassBalance::GetMassPropertiesReport(
int i)
454 cout << endl << fgblue << highint
455 <<
" Mass Properties Report (English units: lbf, in, slug-ft^2)"
457 cout <<
" " << underon <<
" Weight CG-X CG-Y"
458 <<
" CG-Z Ixx Iyy Izz"
459 <<
" Ixy Ixz Iyz" << underoff << endl;
461 cout << highint << setw(34) << left <<
" Base Vehicle " << normint
462 << right << setw(12) << EmptyWeight
463 << setw(8) << vbaseXYZcg(eX) << setw(8) << vbaseXYZcg(eY) << setw(8) << vbaseXYZcg(eZ)
464 << setw(12) << baseJ(1,1) << setw(12) << baseJ(2,2) << setw(12) << baseJ(3,3)
465 << setw(12) << baseJ(1,2) << setw(12) << baseJ(1,3) << setw(12) << baseJ(2,3) << endl;
467 for (
unsigned int i=0;i<PointMasses.size();i++) {
468 PointMass* pm = PointMasses[i];
469 double pmweight = pm->GetPointMassWeight();
470 cout << highint << left << setw(4) << i << setw(30) << pm->GetName() << normint
471 << right << setw(12) << pmweight << setw(8) << pm->GetLocation()(eX)
472 << setw(8) << pm->GetLocation()(eY) << setw(8) << pm->GetLocation()(eZ)
473 << setw(12) << pm->GetPointMassMoI(1,1) << setw(12) << pm->GetPointMassMoI(2,2) << setw(12) << pm->GetPointMassMoI(3,3)
474 << setw(12) << pm->GetPointMassMoI(1,2) << setw(12) << pm->GetPointMassMoI(1,3) << setw(12) << pm->GetPointMassMoI(2,3) << endl;
477 cout << FDMExec->GetPropulsionTankReport();
479 cout <<
" " << underon << setw(136) <<
" " << underoff << endl;
480 cout << highint << left << setw(30) <<
" Total: " << right << setw(14) << Weight
481 << setw(8) << vXYZcg(eX)
482 << setw(8) << vXYZcg(eY)
483 << setw(8) << vXYZcg(eZ)
484 << setw(12) << mJ(1,1)
485 << setw(12) << mJ(2,2)
486 << setw(12) << mJ(3,3)
487 << setw(12) << mJ(1,2)
488 << setw(12) << mJ(1,3)
489 << setw(12) << mJ(2,3)
492 cout.setf(ios_base::fixed);
514void FGMassBalance::Debug(
int from)
516 if (debug_lvl <= 0)
return;
520 cout << endl <<
" Mass and Balance:" << endl;
521 cout <<
" baseIxx: " << baseJ(1,1) <<
" slug-ft2" << endl;
522 cout <<
" baseIyy: " << baseJ(2,2) <<
" slug-ft2" << endl;
523 cout <<
" baseIzz: " << baseJ(3,3) <<
" slug-ft2" << endl;
524 cout <<
" baseIxy: " << baseJ(1,2) <<
" slug-ft2" << endl;
525 cout <<
" baseIxz: " << baseJ(1,3) <<
" slug-ft2" << endl;
526 cout <<
" baseIyz: " << baseJ(2,3) <<
" slug-ft2" << endl;
527 cout <<
" Empty Weight: " << EmptyWeight <<
" lbm" << endl;
528 cout <<
" CG (x, y, z): " << vbaseXYZcg << endl;
530 for (
unsigned int i=0; i<PointMasses.size(); i++) {
531 cout <<
" Point Mass Object: " << PointMasses[i]->Weight <<
" lbs. at "
532 <<
"X, Y, Z (in.): " << PointMasses[i]->Location(eX) <<
" "
533 << PointMasses[i]->Location(eY) <<
" "
534 << PointMasses[i]->Location(eZ) << endl;
538 if (debug_lvl & 2 ) {
539 if (from == 0) cout <<
"Instantiated: FGMassBalance" << endl;
540 if (from == 1) cout <<
"Destroyed: FGMassBalance" << endl;
542 if (debug_lvl & 4 ) {
544 if (debug_lvl & 8 ) {
546 if (debug_lvl & 16) {
548 if (EmptyWeight <= 0.0 || EmptyWeight > 1e9)
549 cout <<
"MassBalance::EmptyWeight out of bounds: " << EmptyWeight << endl;
550 if (Weight <= 0.0 || Weight > 1e9)
551 cout <<
"MassBalance::Weight out of bounds: " << Weight << endl;
552 if (Mass <= 0.0 || Mass > 1e9)
553 cout <<
"MassBalance::Mass out of bounds: " << Mass << endl;
556 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
FGColumnVector3 FindElementTripletConvertTo(const std::string &target_units)
Composes a 3-element column vector for the supplied location or orientation.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
double FindElementValueAsNumberConvertTo(const std::string &el, const std::string &target_units)
Searches for the named element and converts and returns the data belonging to it.
This class implements a 3 element column vector.
bool GetHoldDown(void) const
Gets the value of the property forces/hold-down.
size_t GetFDMCount(void) const
Gets the number of child FDMs.
auto GetChildFDM(int i) const
Gets a particular child FDM.
Models weight, balance and moment of inertia information.