34#ifndef FGEXTERNALREACTIONS_H
35#define FGEXTERNALREACTIONS_H
43#include "math/FGColumnVector3.h"
135 bool InitModel(
void)
override;
144 bool Run(
bool Holding)
override;
158 double GetForces(
int idx)
const {
return vTotalForces(idx);}
164 double GetMoments(
int idx)
const {
return vTotalMoments(idx);}
168 std::vector <FGExternalForce*> Forces;
170 FGColumnVector3 vTotalForces;
171 FGColumnVector3 vTotalMoments;
174 void Debug(
int from)
override;
This class implements a 3 element column vector.
Manages the external and/or arbitrary forces and moments.
const FGColumnVector3 & GetMoments(void) const
Retrieves the total moment resulting from the forces defined in the external reactions.
bool Load(Element *el) override
Loads the external forces from the XML configuration file.
~FGExternalReactions(void) override
Destructor.
bool Run(bool Holding) override
Sum all the constituent forces for this cycle.
const FGColumnVector3 & GetForces(void) const
Retrieves the total forces defined in the external reactions.
Encapsulates the JSBSim simulation executive.
Base class for all scheduled JSBSim models.