39#include "FGExternalForce.h"
40#include "FGExternalReactions.h"
41#include "input_output/FGXMLElement.h"
69 while (force_element) {
71 Forces.back()->setForce(force_element);
78 while (moment_element) {
80 Forces.back()->setMoment(moment_element);
84 PostLoad(el, FDMExec);
86 if (!Forces.empty()) bind();
95 for (
unsigned int i=0; i<Forces.size(); i++)
delete Forces[i];
102bool FGExternalReactions::InitModel(
void)
104 if (!FGModel::InitModel())
return false;
106 vTotalForces.InitMatrix();
107 vTotalMoments.InitMatrix();
117 if (Holding)
return false;
118 if (Forces.empty())
return true;
122 vTotalForces.InitMatrix();
123 vTotalMoments.InitMatrix();
125 for (
unsigned int i=0; i<Forces.size(); i++) {
126 vTotalForces += Forces[i]->GetBodyForces();
127 vTotalMoments += Forces[i]->GetMoments();
137void FGExternalReactions::bind(
void)
168void FGExternalReactions::Debug(
int from)
170 if (debug_lvl <= 0)
return;
176 cout << endl <<
" External Reactions: " << endl;
179 if (debug_lvl & 2 ) {
180 if (from == 0) cout <<
"Instantiated: FGExternalReactions" << endl;
181 if (from == 1) cout <<
"Destroyed: FGExternalReactions" << endl;
183 if (debug_lvl & 4 ) {
185 if (debug_lvl & 8 ) {
187 if (debug_lvl & 16) {
189 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
Element * FindNextElement(const std::string &el="")
Searches for the next element as specified.
Encapsulates code that models an individual arbitrary force, moment or a combination thereof.
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.
FGExternalReactions(FGFDMExec *fdmex)
Constructor.
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.
virtual bool Run(bool Holding)
Runs the model; called by the Executive.
bool Upload(Element *el, bool preLoad)
Uploads this model in memory.