1
0
Fork 0
flightgear/src/FDM/flight.cxx

120 lines
3.6 KiB
C++
Raw Normal View History

1998-09-29 14:56:30 +00:00
// flight.c -- a general interface to the various flight models
//
// Written by Curtis Olson, started May 1997.
//
// Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// 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.
//
// $Id$
1997-05-29 02:35:04 +00:00
#include <stdio.h>
1998-04-18 04:13:51 +00:00
#include <Debug/logstream.hxx>
#include <FDM/LaRCsim/ls_interface.h>
#include <Include/fg_constants.h>
1999-09-01 20:24:54 +00:00
#include <Main/options.hxx>
1998-10-16 23:26:44 +00:00
#include <Math/fg_geodesy.hxx>
#include <Time/timestamp.hxx>
1997-05-29 02:35:04 +00:00
1999-11-19 02:12:46 +00:00
#include "External.hxx"
#include "flight.hxx"
#include "JSBsim.hxx"
#include "LaRCsim.hxx"
#include "Balloon.h"
// base_fdm_state is the internal state that is updated in integer
// multiples of "dt". This leads to "jitter" with respect to the real
// world time, so we introduce cur_fdm_state which is extrapolated by
// the difference between sim time and real world time
1999-11-24 14:15:00 +00:00
FGInterface *cur_fdm_state;
FGInterface base_fdm_state;
1999-10-11 23:09:07 +00:00
int FGInterface::init( double dt ) {
cout << "dummy init() ... SHOULDN'T BE CALLED!" << endl;
return 0;
}
int FGInterface::update( int multi_loop ) {
cout << "dummy update() ... SHOULDN'T BE CALLED!" << endl;
return 0;
}
FGInterface::~FGInterface() {
}
// Extrapolate fdm based on time_offset (in usec)
void FGInterface::extrapolate( int time_offset ) {
double dt = time_offset / 1000000.0;
// -dw- metrowerks complains about ambiguous access, not critical
// to keep this ;)
#ifndef __MWERKS__
cout << "extrapolating FDM by dt = " << dt << endl;
#endif
double lat = geodetic_position_v[0] + geocentric_rates_v[0] * dt;
double lat_geoc = geocentric_position_v[0] + geocentric_rates_v[0] * dt;
double lon = geodetic_position_v[1] + geocentric_rates_v[1] * dt;
double lon_geoc = geocentric_position_v[1] + geocentric_rates_v[1] * dt;
double alt = geodetic_position_v[2] + geocentric_rates_v[2] * dt;
double radius = geocentric_position_v[2] + geocentric_rates_v[2] * dt;
geodetic_position_v[0] = lat;
geocentric_position_v[0] = lat_geoc;
geodetic_position_v[1] = lon;
geocentric_position_v[1] = lon_geoc;
geodetic_position_v[2] = alt;
geocentric_position_v[2] = radius;
}
// Set the altitude (force)
void fgFDMForceAltitude(int model, double alt_meters) {
double sea_level_radius_meters;
double lat_geoc;
// Set the FG variables first
fgGeodToGeoc( base_fdm_state.get_Latitude(), alt_meters,
&sea_level_radius_meters, &lat_geoc);
base_fdm_state.set_Altitude( alt_meters * METER_TO_FEET );
base_fdm_state.set_Radius_to_vehicle( base_fdm_state.get_Altitude() +
(sea_level_radius_meters *
METER_TO_FEET) );
// additional work needed for some flight models
if ( model == FGInterface::FG_LARCSIM ) {
ls_ForceAltitude( base_fdm_state.get_Altitude() );
}
}
// Set the local ground elevation
void fgFDMSetGroundElevation(int model, double ground_meters) {
base_fdm_state.set_Runway_altitude( ground_meters * METER_TO_FEET );
1999-10-11 23:09:07 +00:00
cur_fdm_state->set_Runway_altitude( ground_meters * METER_TO_FEET );
}