]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/SP/ACMS.cxx
FGPUIDialog: fix reading from already free'd memory.
[flightgear.git] / src / FDM / SP / ACMS.cxx
index 44e6c99e66307fd8e6662b25dfdf56c5ebfac891..6fd219bc932ec3bf1b67e63925d35e9af47b1d96 100644 (file)
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+#include <simgear/math/SGMath.hxx>
 #include <simgear/math/sg_geodesy.hxx>
 #include <Main/fg_props.hxx>
 
 #include "ACMS.hxx"
 
 FGACMS::FGACMS( double dt )
+ : _alt    (fgGetNode("/fdm/acms/position/altitude-ft", true)),
+   _speed  (fgGetNode("/fdm/acms/velocities/airspeed-kt", true)),
+   _climb_rate( fgGetNode("/fdm/acms/velocities/vertical-speed-fps", true)),
+   _pitch  (fgGetNode("/fdm/acms/orientation/pitch-rad", true)),
+   _roll   (fgGetNode("/fdm/acms/orientation/roll-rad", true)),
+   _heading(fgGetNode("/fdm/acms/orientation/heading-rad", true)),
+   _acc_lat(fgGetNode("/fdm/acms/accelerations/ned/east-accel-fps_sec", true)),
+   _acc_lon(fgGetNode("/fdm/acms/accelerations/ned/north-accel-fps_sec", true)),
+   _acc_down(fgGetNode("/fdm/acms/accelerations/ned/down-accel-fps_sec", true)),
+   _temp    (fgGetNode("/fdm/acms/environment/temperature-degc", true)),
+   _wow     (fgGetNode("/fdm/acms/gear/wow", true))
 {
 //     set_delta_t( dt );
 }
@@ -40,56 +56,55 @@ void FGACMS::init() {
     common_init();
 }
 
-
 // Run an iteration of the EOM (equations of motion)
 void FGACMS::update( double dt ) {
 
-    double pitch = get_Theta();
-    double roll = get_Phi();
-    double heading = get_Psi() * SG_DEGREES_TO_RADIANS;
-    double alt = get_Altitude();
-
-    double sl_radius, lat_geoc;
-    sgGeodToGeoc( get_Latitude(), get_Altitude(), &sl_radius, &lat_geoc );
+    if (is_suspended())
+        return;
 
-    double lon_acc = get_V_north();
-    double lat_acc = get_V_east();
-    double vert_acc = get_V_down();
+    double pitch = _pitch->getDoubleValue();
+    double roll = _roll->getDoubleValue();
+    double heading = _heading->getDoubleValue();
+    double alt = _alt->getDoubleValue();
 
-    double accel_heading = atan( lon_acc/lat_acc );
-    double accel_pitch = atan( vert_acc/accel_heading );
+    set_Theta(pitch);
+    set_Phi(roll);
+    set_Psi(heading);
+    set_Altitude(alt);
+    _set_Climb_Rate( _climb_rate->getDoubleValue() );
 
-    double accel = sqrt(sqrt(lon_acc*lon_acc + lat_acc*lat_acc)
-                        + vert_acc*vert_acc);
 
-    double velocity = get_V_true_kts() * accel / (SG_METER_TO_NM * 3600.0);
-    double speed = cos (pitch) * velocity; // meters/sec
-    double dist = speed * dt;
-    double kts = velocity * 6076.11549 * 3600.0;
+    double acc_lat = _acc_lat->getDoubleValue();
+    double acc_lon = _acc_lon->getDoubleValue();
+    double acc_down = _acc_down->getDoubleValue();
+    _set_Accels_Local( acc_lon, acc_lat, acc_down );
 
-    double climb_rate = fgGetDouble("/velocities/climb-rate", 0);
-    double climb = climb_rate * dt;
+    double accel = norm(SGVec3d(acc_lon, acc_lat, acc_down)) * SG_FEET_TO_METER;
 
-    _set_Alpha( pitch - accel_pitch);
-    _set_Beta( heading - accel_heading);
-    _set_Climb_Rate( climb_rate );
+    double velocity = (_speed->getDoubleValue() * SG_KT_TO_MPS) + accel * dt;
+    double dist = cos (pitch) * velocity * dt;
+    double kts = velocity * SG_MPS_TO_KT;
     _set_V_equiv_kts( kts );
     _set_V_calibrated_kts( kts );
     _set_V_ground_speed( kts );
-    _set_Altitude( get_Altitude() + climb );
 
+    SGGeod pos = getPosition();
     // update (lon/lat) position
-    double lat2, lon2, az2;
-    geo_direct_wgs_84 ( get_Altitude(),
-                        get_Latitude() * SGD_RADIANS_TO_DEGREES,
-                        get_Longitude() * SGD_RADIANS_TO_DEGREES,
-                        get_Psi() * SGD_RADIANS_TO_DEGREES,
-                        dist, &lat2, &lon2, &az2 );
-    _set_Geocentric_Position( lat_geoc, get_Longitude(),
-                             sl_radius + get_Altitude() + climb );
-    _set_Sea_level_radius( sl_radius * SG_METER_TO_FEET);
+    SGGeod pos2;
+    double az2;
+    geo_direct_wgs_84 ( pos, heading * SGD_RADIANS_TO_DEGREES,
+                        dist, pos2, &az2 );
 
-    _set_Longitude( lon2 * SGD_DEGREES_TO_RADIANS );
-    _set_Latitude( lat2 * SGD_DEGREES_TO_RADIANS );
+    _set_Geodetic_Position(  pos2.getLatitudeRad(), pos2.getLongitudeRad(), pos.getElevationFt() );
+
+    double sl_radius, lat_geoc;
+    sgGeodToGeoc( get_Latitude(), get_Altitude(), &sl_radius, &lat_geoc );
+
+    _set_Euler_Angles( roll, pitch, heading );
+    _set_Euler_Rates(0,0,0);
+
+    _set_Geocentric_Position( lat_geoc, get_Longitude(), sl_radius);
+    _update_ground_elev_at_pos();
+    _set_Sea_level_radius( sl_radius * SG_METER_TO_FEET);
 
 }