67#include "FGExternalForce.h"
68#include "input_output/FGXMLElement.h"
76FGPropertyVector3::FGPropertyVector3(FGPropertyManager* pm,
77 const std::string& baseName,
78 const std::string& xcmp,
79 const std::string& ycmp,
80 const std::string& zcmp)
82 data[0] = pm->GetNode(baseName +
"/" + xcmp,
true);
83 data[1] = pm->GetNode(baseName +
"/" + ycmp,
true);
84 data[2] = pm->GetNode(baseName +
"/" + zcmp,
true);
89FGParameter* FGExternalForce::bind(Element *el,
const string& magName,
93 string sFrame = el->GetAttributeValue(
"frame");
95 cerr << el->ReadFrom()
96 <<
"No frame specified for external " << el->GetName() <<
", \""
97 << Name <<
"\"." << endl
98 <<
"Frame set to Body" << endl;
100 }
else if (sFrame ==
"BODY") {
102 }
else if (sFrame ==
"LOCAL") {
104 }
else if (sFrame ==
"WIND") {
106 }
else if (sFrame ==
"INERTIAL") {
107 ttype = tInertialBody;
109 cerr << el->ReadFrom()
110 <<
"Invalid frame specified for external " << el->GetName() <<
", \""
111 << Name <<
"\"." << endl
112 <<
"Frame set to Body" << endl;
116 Element* direction_element = el->FindElement(
"direction");
117 if (!direction_element) {
118 cerr << el->ReadFrom()
119 <<
"No direction element specified in " << el->GetName()
120 <<
" object. Default is (0,0,0)." << endl;
122 FGColumnVector3 direction = direction_element->FindElementTripletConvertTo(
"IN");
123 direction.Normalize();
133 Element* function_element = el->FindElement(
"function");
134 if (function_element) {
135 return new FGFunction(fdmex, function_element);
138 FGPropertyNode* node = pm->GetNode(magName,
true);
139 return new FGPropertyValue(node);
145void FGExternalForce::setForce(Element *el)
148 Name = el->GetAttributeValue(
"name");
149 string BasePropertyName =
"external_reactions/" + Name;
151 forceDirection = FGPropertyVector3(PropertyManager.get(), BasePropertyName,
153 forceMagnitude = bind(el, BasePropertyName +
"/magnitude", forceDirection);
155 Element* location_element = el->FindElement(
"location");
156 if (!location_element) {
157 cerr << el->ReadFrom()
158 <<
"No location element specified in force object." << endl;
160 FGColumnVector3 location = location_element->FindElementTripletConvertTo(
"IN");
161 SetLocation(location);
163 PropertyManager->Tie( BasePropertyName +
"/location-x-in", (FGForce*)
this,
164 &FGForce::GetLocationX, &FGForce::SetLocationX);
165 PropertyManager->Tie( BasePropertyName +
"/location-y-in", (FGForce*)
this,
166 &FGForce::GetLocationY, &FGForce::SetLocationY);
167 PropertyManager->Tie( BasePropertyName +
"/location-z-in", (FGForce*)
this,
168 &FGForce::GetLocationZ, &FGForce::SetLocationZ);
173void FGExternalForce::setMoment(Element *el)
176 Name = el->GetAttributeValue(
"name");
177 string BasePropertyName =
"external_reactions/" + Name;
179 momentDirection = FGPropertyVector3(PropertyManager.get(), BasePropertyName,
181 momentMagnitude = bind(el, BasePropertyName +
"/magnitude-lbsft",
189 delete forceMagnitude;
190 delete momentMagnitude;
199 vFn = forceMagnitude->GetValue() * forceDirection;
202 vMn = Transform() * (momentMagnitude->GetValue() * momentDirection);
204 return FGForce::GetBodyForces();
226void FGExternalForce::Debug(
int from)
228 if (debug_lvl <= 0)
return;
232 cout <<
" " << Name << endl;
248 cout <<
"ERROR/UNKNOWN";
250 cout << endl <<
" Location: (" << vXYZn(eX) <<
", " << vXYZn(eY) <<
", " << vXYZn(eZ) <<
")" << endl;
253 if (debug_lvl & 2 ) {
254 if (from == 0) cout <<
"Instantiated: FGExternalForce" << endl;
255 if (from == 1) cout <<
"Destroyed: FGExternalForce" << endl;
257 if (debug_lvl & 4 ) {
259 if (debug_lvl & 8 ) {
261 if (debug_lvl & 16) {
263 if (debug_lvl & 64) {
This class implements a 3 element column vector.
~FGExternalForce() override
Destructor.
std::shared_ptr< FGPropertyManager > GetPropertyManager(void) const
Returns a pointer to the property manager object.