1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 Module: FGMagnetometer.cpp
5 Date started: August 2009
7 ------------- Copyright (C) 2009 -------------
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free Software
11 Foundation; either version 2 of the License, or (at your option) any later
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
19 You should have received a copy of the GNU Lesser General Public License along with
20 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21 Place - Suite 330, Boston, MA 02111-1307, USA.
23 Further information about the GNU Lesser General Public License can also be found on
24 the world wide web at http://www.gnu.org.
26 FUNCTIONAL DESCRIPTION
27 --------------------------------------------------------------------------------
30 --------------------------------------------------------------------------------
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33 COMMENTS, REFERENCES, and NOTES
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40 #include "FGMagnetometer.h"
41 #include "simgear/magvar/coremag.hxx"
50 static const char *IdSrc = "$Id: FGMagnetometer.cpp,v 1.5 2009/10/24 22:59:30 jberndt Exp $";
51 static const char *IdHdr = ID_MAGNETOMETER;
53 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
58 FGMagnetometer::FGMagnetometer(FGFCS* fcs, Element* element) : FGSensor(fcs, element),
59 FGSensorOrientation(element),
61 INERTIAL_UPDATE_RATE(1000)
63 Propagate = fcs->GetExec()->GetPropagate();
64 MassBalance = fcs->GetExec()->GetMassBalance();
65 Inertial = fcs->GetExec()->GetInertial();
67 Element* location_element = element->FindElement("location");
68 if (location_element) vLocation = location_element->FindElementTripletConvertTo("IN");
69 else {cerr << "No location given for magnetometer. " << endl; exit(-1);}
71 vRadius = MassBalance->StructuralToBody(vLocation);
73 //assuming date wont significantly change over a flight to affect mag field
74 //would be better to get the date from the sim if its simulated...
77 tm * ptm = gmtime ( &rawtime );
79 int year = ptm->tm_year;
84 //the months here are zero based TODO find out if the function expects 1s based
85 date = (yymmdd_to_julian_days(ptm->tm_year,ptm->tm_mon,ptm->tm_mday));//Julian 1950-2049 yy,mm,dd
90 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92 FGMagnetometer::~FGMagnetometer()
97 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
98 void FGMagnetometer::updateInertialMag(void)
101 if (counter > INERTIAL_UPDATE_RATE)//dont need to update every iteration
105 usedLat = (Propagate->GetGeodLatitudeRad());//radians, N and E lat and long are positive, S and W negative
106 usedLon = (Propagate->GetLongitude());//radians
107 usedAlt = (Propagate->GetGeodeticAltitude()*fttom*0.001);//km
109 //this should be done whenever the position changes significantly (in nTesla)
110 calc_magvar( usedLat,
118 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
120 bool FGMagnetometer::Run(void )
122 // There is no input assumed. This is a dedicated magnetic field sensor.
124 vRadius = MassBalance->StructuralToBody(vLocation);
128 // Inertial magnetic field rotated to the body frame
129 vMag = Propagate->GetTl2b() * FGColumnVector3(field[3], field[4], field[5]);
131 // Allow for sensor orientation
136 ProcessSensorSignal();
141 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
142 // The bitmasked value choices are as follows:
143 // unset: In this case (the default) JSBSim would only print
144 // out the normally expected messages, essentially echoing
145 // the config files as they are read. If the environment
146 // variable is not set, debug_lvl is set to 1 internally
147 // 0: This requests JSBSim not to output any messages
149 // 1: This value explicity requests the normal JSBSim
151 // 2: This value asks for a message to be printed out when
152 // a class is instantiated
153 // 4: When this value is set, a message is displayed when a
154 // FGModel object executes its Run() method
155 // 8: When this value is set, various runtime state variables
156 // are printed out periodically
157 // 16: When set various parameters are sanity checked and
158 // a message is printed out when they go out of bounds
160 void FGMagnetometer::Debug(int from)
162 string ax[4] = {"none", "X", "Y", "Z"};
164 if (debug_lvl <= 0) return;
166 if (debug_lvl & 1) { // Standard console startup message output
167 if (from == 0) { // Constructor
168 cout << " Axis: " << ax[axis] << endl;
171 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
172 if (from == 0) cout << "Instantiated: FGMagnetometer" << endl;
173 if (from == 1) cout << "Destroyed: FGMagnetometer" << endl;
175 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
177 if (debug_lvl & 8 ) { // Runtime state variables
179 if (debug_lvl & 16) { // Sanity checking
181 if (debug_lvl & 64) {
182 if (from == 0) { // Constructor
183 cout << IdSrc << endl;
184 cout << IdHdr << endl;