44#include "models/FGAuxiliary.h"
53 : fdmex(FDMExec), MassBalance(fdmex->GetMassBalance()), ttype(tNone)
59 vActingXYZn.InitMatrix();
82 vFb = Transform()*vFn;
97const FGMatrix33& FGForce::Transform(
void)
const
111 const string s(
"Unrecognized tranform requested from FGForce::Transform()");
113 throw BaseException(s);
120void FGForce::UpdateCustomTransformMatrix(
void)
122 double cp,sp,cr,sr,cy,sy;
123 double srsp, crcy, crsy;
125 cp=cos(vOrient(ePitch)); sp=sin(vOrient(ePitch));
126 cr=cos(vOrient(eRoll)); sr=sin(vOrient(eRoll));
127 cy=cos(vOrient(eYaw)); sy=sin(vOrient(eYaw));
137 mT(1,2) = srsp*cy - crsy;
138 mT(2,2) = srsp*sy + crcy;
141 mT(1,3) = crcy*sp + sr*sy;
142 mT(2,3) = crsy*sp - sr*cy;
148void FGForce::SetAnglesToBody(
double broll,
double bpitch,
double byaw)
150 if (ttype == tCustom) {
151 vOrient(ePitch) = bpitch;
152 vOrient(eRoll) = broll;
153 vOrient(eYaw) = byaw;
155 UpdateCustomTransformMatrix();
178void FGForce::Debug(
int from)
180 if (debug_lvl <= 0)
return;
187 if (debug_lvl & 2 ) {
188 if (from == 0) cout <<
"Instantiated: FGForce" << endl;
189 if (from == 1) cout <<
"Destroyed: FGForce" << endl;
191 if (debug_lvl & 4 ) {
193 if (debug_lvl & 8 ) {
195 if (debug_lvl & 16) {
197 if (debug_lvl & 64) {
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
std::shared_ptr< FGPropagate > GetPropagate(void) const
Returns the FGPropagate pointer.
std::shared_ptr< FGAuxiliary > GetAuxiliary(void) const
Returns the FGAuxiliary pointer.
virtual ~FGForce()
Destructor.
FGForce(FGFDMExec *FDMExec)
Constructor.