40#include "FGMagnetometer.h"
41#include "simgear/magvar/coremag.hxx"
42#include "models/FGFCS.h"
43#include "models/FGMassBalance.h"
54FGMagnetometer::FGMagnetometer(FGFCS* fcs, Element* element)
55 : FGSensor(fcs, element), FGSensorOrientation(element), counter(0),
56 INERTIAL_UPDATE_RATE(1000)
58 Propagate = fcs->GetExec()->GetPropagate();
59 MassBalance = fcs->GetExec()->GetMassBalance();
60 Inertial = fcs->GetExec()->GetInertial();
62 Element* location_element = element->FindElement(
"location");
64 vLocation = location_element->FindElementTripletConvertTo(
"IN");
66 cerr << element->ReadFrom()
67 <<
"No location given for magnetometer. " << endl;
68 throw(
"Malformed magnetometer specification.");
71 vRadius = MassBalance->StructuralToBody(vLocation);
78 #if defined(_MSC_VER) || defined(__MINGW32__)
79 gmtime_s(&ptm, &rawtime);
81 gmtime_r(&rawtime, &ptm);
84 int year = ptm.tm_year;
90 date = (yymmdd_to_julian_days(ptm.tm_year, ptm.tm_mon, ptm.tm_mday));
97FGMagnetometer::~FGMagnetometer()
104void FGMagnetometer::ResetPastStates(
void)
106 FGSensor::ResetPastStates();
112void FGMagnetometer::updateInertialMag(
void)
114 if (counter++ % INERTIAL_UPDATE_RATE == 0)
116 usedLat = (Propagate->GetGeodLatitudeRad());
117 usedLon = (Propagate->GetLongitude());
118 usedAlt = (Propagate->GetGeodeticAltitude()*fttom*0.001);
121 calc_magvar( usedLat, usedLon, usedAlt, date, field );
127bool FGMagnetometer::Run(
void )
131 vRadius = MassBalance->StructuralToBody(vLocation);
136 vMag = Propagate->GetTl2b() * FGColumnVector3(field[3], field[4], field[5]);
143 ProcessSensorSignal();
169void FGMagnetometer::Debug(
int from)
171 string ax[4] = {
"none",
"X",
"Y",
"Z"};
173 if (debug_lvl <= 0)
return;
177 cout <<
" Axis: " << ax[axis] << endl;
180 if (debug_lvl & 2 ) {
181 if (from == 0) cout <<
"Instantiated: FGMagnetometer" << endl;
182 if (from == 1) cout <<
"Destroyed: FGMagnetometer" << endl;
184 if (debug_lvl & 4 ) {
186 if (debug_lvl & 8 ) {
188 if (debug_lvl & 16) {
190 if (debug_lvl & 64) {