131 bool Load(
Element* el)
override;
132 bool InitModel(
void)
override;
141 bool Run(
bool Holding)
override;
143 double GetMass(
void)
const {
return Mass;}
144 double GetWeight(
void)
const {
return Weight;}
145 double GetEmptyWeight(
void)
const {
return EmptyWeight;}
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);}
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);
187 void SetEmptyWeight(
double EW) { EmptyWeight = EW;}
188 void SetBaseCG(
const FGColumnVector3& CG) {vbaseXYZcg = vXYZcg = CG;}
190 void AddPointMass(Element* el);
191 double GetTotalPointMassWeight(
void)
const;
193 const FGColumnVector3& GetPointMassMoment(
void);
198 void SetAircraftBaseInertias(
const FGMatrix33& BaseJ) {baseJ = BaseJ;}
199 void GetMassPropertiesReport(
int i);
212 std::shared_ptr<FGPropagate> Propagate;
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); }
239 PointMass(
double w, FGColumnVector3& vXYZ) :
240 eShapeType(esUnspecified), Location(vXYZ), Weight(w), Radius(0.0),
243 void CalculateShapeInertia(
void) {
246 mPMInertia(1,1) = (Weight/(slugtolb))*Radius*Radius;
247 mPMInertia(2,2) = (Weight/(slugtolb*12))*(6*Radius*Radius + Length*Length);
248 mPMInertia(3,3) = mPMInertia(2,2);
251 mPMInertia(1,1) = (Weight/(slugtolb*2))*Radius*Radius;
252 mPMInertia(2,2) = (Weight/(slugtolb*12))*(3*Radius*Radius + Length*Length);
253 mPMInertia(3,3) = mPMInertia(2,2);
256 mPMInertia(1,1) = (Weight/(slugtolb*3))*Radius*Radius*2;
257 mPMInertia(2,2) = mPMInertia(1,1);
258 mPMInertia(3,3) = mPMInertia(1,1);
261 mPMInertia(1,1) = (Weight/(slugtolb*5))*Radius*Radius*2;
262 mPMInertia(2,2) = mPMInertia(1,1);
263 mPMInertia(3,3) = mPMInertia(1,1);
270 enum esShape {esUnspecified, esTube, esCylinder, esSphere, esBall} eShapeType;
271 FGColumnVector3 Location;
276 FGMatrix33 mPMInertia;
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;}
285 void SetPointMassLocation(
int axis,
double value) {Location(axis) = value;}
286 void SetPointMassWeight(
double wt) {
288 CalculateShapeInertia();
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);}
297 void bind(FGPropertyManager* PropertyManager,
unsigned int num);
300 std::vector <struct PointMass*> PointMasses;
303 void Debug(
int from)
override;