7cc98ad15f
LaRCsim c172 on-ground and in-air starts, reset: all work UIUC Cessna172 on-ground and in-air starts work as expected, reset results in an aircraft that is upside down but does not crash FG. I don't know what it was like before, so it may well be no change. JSBSim c172 and X15 in-air starts work fine, resets now work (and are trimmed), on-ground starts do not -- the c172 ends up on its back. I suspect this is no worse than before. I did not test: Balloon (the weather code returns nan's for the atmosphere data --this is in the weather module and apparently is a linux only bug) ADA (don't know how) MagicCarpet (needs work yet) External (don't know how) known to be broken: LaRCsim c172 on-ground starts with a negative terrain altitude (this happens at KPAO when the scenery is not present). The FDM inits to about 50 feet AGL and the model falls to the ground. It does stay upright, however, and seems to be fine once it settles out, FWIW. To do: --implement set_Model on the bus --bring Christian's weather data into JSBSim -- add default method to bus for updating things like the sin and cos of latitude (for Balloon, MagicCarpet) -- lots of cleanup The files: src/FDM/flight.cxx src/FDM/flight.hxx -- all data members now declared protected instead of private. -- eliminated all but a small set of 'setters', no change to getters. -- that small set is declared virtual, the default implementation provided preserves the old behavior -- all of the vector data members are now initialized. -- added busdump() method -- FG_LOG's all the bus data when called, useful for diagnostics. src/FDM/ADA.cxx -- bus data members now directly assigned to src/FDM/Balloon.cxx -- bus data members now directly assigned to -- changed V_equiv_kts to V_calibrated_kts src/FDM/JSBSim.cxx src/FDM/JSBSim.hxx -- bus data members now directly assigned to -- implemented the FGInterface virtual setters with JSBSim specific logic -- changed the static FDMExec to a dynamic fdmex (needed so that the JSBSim object can be deleted when a model change is called for) -- implemented constructor and destructor, moved some of the logic formerly in init() to constructor -- added logic to bring up FGEngInterface objects and set the RPM and throttle values. src/FDM/LaRCsim.cxx src/FDM/LaRCsim.hxx -- bus data members now directly assigned to -- implemented the FGInterface virtual setters with LaRCsim specific logic, uses LaRCsimIC -- implemented constructor and destructor, moved some of the logic formerly in init() to constructor -- moved default inertias to here from fg_init.cxx -- eliminated the climb rate calculation. The equivalent, climb_rate = -1*vdown, is now in copy_from_LaRCsim(). src/FDM/LaRCsimIC.cxx src/FDM/LaRCsimIC.hxx -- similar to FGInitialCondition, this class has all the logic needed to turn data like Vc and Mach into the more fundamental quantities LaRCsim needs to initialize. -- put it in src/FDM since it is a class src/FDM/MagicCarpet.cxx -- bus data members now directly assigned to src/FDM/Makefile.am -- adds LaRCsimIC.hxx and cxx src/FDM/JSBSim/FGAtmosphere.h src/FDM/JSBSim/FGDefs.h src/FDM/JSBSim/FGInitialCondition.cpp src/FDM/JSBSim/FGInitialCondition.h src/FDM/JSBSim/JSBSim.cpp -- changes to accomodate the new bus src/FDM/LaRCsim/atmos_62.h src/FDM/LaRCsim/ls_geodesy.h -- surrounded prototypes with #ifdef __cplusplus ... #endif , functions here are needed in LaRCsimIC src/FDM/LaRCsim/c172_main.c src/FDM/LaRCsim/cherokee_aero.c src/FDM/LaRCsim/ls_aux.c src/FDM/LaRCsim/ls_constants.h src/FDM/LaRCsim/ls_geodesy.c src/FDM/LaRCsim/ls_geodesy.h src/FDM/LaRCsim/ls_step.c src/FDM/UIUCModel/uiuc_betaprobe.cpp -- changed PI to LS_PI, eliminates preprocessor naming conflict with weather module src/FDM/LaRCsim/ls_interface.c src/FDM/LaRCsim/ls_interface.h -- added function ls_set_model_dt() src/Main/bfi.cxx -- eliminated calls that set the NED speeds to body components. They are no longer needed and confuse the new bus. src/Main/fg_init.cxx -- eliminated calls that just brought the bus data up-to-date (e.g. set_sin_cos_latitude). or set default values. The bus now handles the defaults and updates itself when the setters are called (for LaRCsim and JSBSim). A default method for doing this needs to be added to the bus. -- added fgVelocityInit() to set the speed the user asked for. Both JSBSim and LaRCsim can now be initialized using any of: vc,mach, NED components, UVW components. src/Main/main.cxx --eliminated call to fgFDMSetGroundElevation, this data is now 'pulled' onto the bus every update() src/Main/options.cxx src/Main/options.hxx -- added enum to keep track of the speed requested by the user -- eliminated calls to set NED velocity properties to body speeds, they are no longer needed. -- added options for the NED components. src/Network/garmin.cxx src/Network/nmea.cxx --eliminated calls that just brought the bus data up-to-date (e.g. set_sin_cos_latitude). The bus now updates itself when the setters are called (for LaRCsim and JSBSim). A default method for doing this needs to be added to the bus. -- changed set_V_equiv_kts to set_V_calibrated_kts. set_V_equiv_kts no longer exists ( get_V_equiv_kts still does, though) src/WeatherCM/FGLocalWeatherDatabase.cpp -- commented out the code to put the weather data on the bus, a different scheme for this is needed.
203 lines
7 KiB
C++
203 lines
7 KiB
C++
/*******************************************************************************
|
|
|
|
Header: LaRCsimIC.hxx
|
|
Author: Tony Peden
|
|
Date started: 10/9/00
|
|
|
|
------------- Copyright (C) 2000 Anthony K. Peden (apeden@earthlink.net) -------------
|
|
|
|
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., 59 Temple
|
|
Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
Further information about the GNU General Public License can also be found on
|
|
the world wide web at http://www.gnu.org.
|
|
*/
|
|
#ifndef _LARCSIMIC_HXX
|
|
#define _LARCSIMIC_HXX
|
|
|
|
/*******************************************************************************
|
|
INCLUDES
|
|
*******************************************************************************/
|
|
|
|
#include <FDM/LaRCsim/ls_constants.h>
|
|
#include <FDM/LaRCsim/ls_types.h>
|
|
|
|
/*******************************************************************************
|
|
CLASS DECLARATION
|
|
*******************************************************************************/
|
|
|
|
#define KTS_TO_FPS 1.6889
|
|
#define M_TO_FT 3.2808399
|
|
#define DEFAULT_AGL_ALT 3.758099
|
|
#define DEFAULT_PITCH_ON_GROUND 0.0074002
|
|
|
|
typedef enum lsspeedset { lssetvt, lssetvc, lssetve, lssetmach, lssetuvw, lssetned };
|
|
typedef enum lsaltset { lssetasl, lssetagl };
|
|
|
|
|
|
class LaRCsimIC {
|
|
public:
|
|
|
|
LaRCsimIC(void);
|
|
~LaRCsimIC(void);
|
|
|
|
void SetVcalibratedKtsIC(SCALAR tt);
|
|
void SetMachIC(SCALAR tt);
|
|
|
|
void SetVtrueFpsIC(SCALAR tt);
|
|
|
|
void SetVequivalentKtsIC(SCALAR tt);
|
|
|
|
void SetUBodyFpsIC(SCALAR tt);
|
|
void SetVBodyFpsIC(SCALAR tt);
|
|
void SetWBodyFpsIC(SCALAR tt);
|
|
|
|
void SetVnorthFpsIC(SCALAR tt);
|
|
void SetVeastFpsIC(SCALAR tt);
|
|
void SetVdownFpsIC(SCALAR tt);
|
|
|
|
void SetVNorthAirmassFpsIC(SCALAR tt);
|
|
void SetVEastAirmassFpsIC(SCALAR tt);
|
|
void SetVDownAirmassFpsIC(SCALAR tt);
|
|
|
|
void SetAltitudeFtIC(SCALAR tt);
|
|
void SetAltitudeAGLFtIC(SCALAR tt);
|
|
|
|
//"vertical" flight path, recalculate theta
|
|
inline void SetFlightPathAngleDegIC(SCALAR tt) { SetFlightPathAngleRadIC(tt*DEG_TO_RAD); }
|
|
void SetFlightPathAngleRadIC(SCALAR tt);
|
|
|
|
//set speed first
|
|
void SetClimbRateFpmIC(SCALAR tt);
|
|
void SetClimbRateFpsIC(SCALAR tt);
|
|
|
|
//use currently stored gamma, recalcualte theta
|
|
inline void SetAlphaDegIC(SCALAR tt) { alpha=tt*DEG_TO_RAD; getTheta(); }
|
|
inline void SetAlphaRadIC(SCALAR tt) { alpha=tt; getTheta(); }
|
|
|
|
//use currently stored gamma, recalcualte alpha
|
|
inline void SetPitchAngleDegIC(SCALAR tt) { SetPitchAngleRadIC(tt*DEG_TO_RAD); }
|
|
void SetPitchAngleRadIC(SCALAR tt);
|
|
|
|
inline void SetBetaDegIC(SCALAR tt) { beta=tt*DEG_TO_RAD; getTheta();}
|
|
inline void SetBetaRadIC(SCALAR tt) { beta=tt; getTheta(); }
|
|
|
|
inline void SetRollAngleDegIC(SCALAR tt) { phi=tt*DEG_TO_RAD; getTheta(); }
|
|
inline void SetRollAngleRadIC(SCALAR tt) { phi=tt; getTheta(); }
|
|
|
|
inline void SetHeadingDegIC(SCALAR tt) { psi=tt*DEG_TO_RAD; }
|
|
inline void SetHeadingRadIC(SCALAR tt) { psi=tt; }
|
|
|
|
inline void SetLatitudeGDDegIC(SCALAR tt) { SetLatitudeGDRadIC(tt*DEG_TO_RAD); }
|
|
void SetLatitudeGDRadIC(SCALAR tt);
|
|
|
|
inline void SetLongitudeDegIC(SCALAR tt) { longitude=tt*DEG_TO_RAD; }
|
|
inline void SetLongitudeRadIC(SCALAR tt) { longitude=tt; }
|
|
|
|
void SetRunwayAltitudeFtIC(SCALAR tt);
|
|
|
|
inline SCALAR GetVcalibratedKtsIC(void) { return sqrt(density_ratio*vt*vt)*V_TO_KNOTS; }
|
|
inline SCALAR GetVequivalentKtsIC(void) { return sqrt(density_ratio)*vt*V_TO_KNOTS; }
|
|
inline SCALAR GetVtrueKtsIC(void) { return vt*V_TO_KNOTS; }
|
|
inline SCALAR GetVtrueFpsIC(void) { return vt; }
|
|
inline SCALAR GetMachIC(void) { return vt/soundspeed; }
|
|
|
|
inline SCALAR GetAltitudeFtIC(void) { return altitude; }
|
|
inline SCALAR GetAltitudeAGLFtIC(void) { return alt_agl; }
|
|
|
|
inline SCALAR GetRunwayAltitudeFtIC(void) { return runway_altitude; }
|
|
|
|
inline SCALAR GetFlightPathAngleDegIC(void) { return gamma*RAD_TO_DEG; }
|
|
inline SCALAR GetFlightPathAngleRadIC(void) { return gamma; }
|
|
|
|
inline SCALAR GetClimbRateFpmIC(void) { return hdot*60; }
|
|
inline SCALAR GetClimbRateFpsIC(void) { return hdot; }
|
|
|
|
inline SCALAR GetAlphaDegIC(void) { return alpha*RAD_TO_DEG; }
|
|
inline SCALAR GetAlphaRadIC(void) { return alpha; }
|
|
|
|
inline SCALAR GetPitchAngleDegIC(void) { return theta*RAD_TO_DEG; }
|
|
inline SCALAR GetPitchAngleRadIC(void) { return theta; }
|
|
|
|
|
|
inline SCALAR GetBetaDegIC(void) { return beta*RAD_TO_DEG; }
|
|
inline SCALAR GetBetaRadIC(void) { return beta*RAD_TO_DEG; }
|
|
|
|
inline SCALAR GetRollAngleDegIC(void) { return phi*RAD_TO_DEG; }
|
|
inline SCALAR GetRollAngleRadIC(void) { return phi; }
|
|
|
|
inline SCALAR GetHeadingDegIC(void) { return psi*RAD_TO_DEG; }
|
|
inline SCALAR GetHeadingRadIC(void) { return psi; }
|
|
|
|
inline SCALAR GetLatitudeGDDegIC(void) { return latitude_gd*RAD_TO_DEG; }
|
|
inline SCALAR GetLatitudeGDRadIC(void) { return latitude_gd; }
|
|
|
|
inline SCALAR GetLongitudeDegIC(void) { return longitude*RAD_TO_DEG; }
|
|
inline SCALAR GetLongitudeRadIC(void) { return longitude; }
|
|
|
|
inline SCALAR GetUBodyFpsIC(void) { return vt*cos(alpha)*cos(beta); }
|
|
inline SCALAR GetVBodyFpsIC(void) { return vt*sin(beta); }
|
|
inline SCALAR GetWBodyFpsIC(void) { return vt*sin(alpha)*cos(beta); }
|
|
|
|
inline SCALAR GetVnorthFpsIC(void) { calcNEDfromVt();return vnorth; }
|
|
inline SCALAR GetVeastFpsIC(void) { calcNEDfromVt();return veast; }
|
|
inline SCALAR GetVdownFpsIC(void) { calcNEDfromVt();return vdown; }
|
|
|
|
inline SCALAR GetVnorthAirmassFpsIC(void) { return vnorthwind; }
|
|
inline SCALAR GetVeastAirmassFpsIC(void) { return veastwind; }
|
|
inline SCALAR GetVdownAirmassFpsIC(void) { return vdownwind; }
|
|
|
|
inline SCALAR GetThetaRadIC(void) { return theta; }
|
|
inline SCALAR GetPhiRadIC(void) { return phi; }
|
|
inline SCALAR GetPsiRadIC(void) { return psi; }
|
|
|
|
|
|
|
|
private:
|
|
SCALAR vt,vtg,vw,vc,ve;
|
|
SCALAR alpha,beta,gamma,theta,phi,psi;
|
|
SCALAR mach;
|
|
SCALAR altitude,runway_altitude,hdot,alt_agl,sea_level_radius;
|
|
SCALAR latitude_gd,latitude_gc,longitude;
|
|
SCALAR u,v,w;
|
|
SCALAR vnorth,veast,vdown;
|
|
SCALAR vnorthwind, veastwind, vdownwind;
|
|
SCALAR p,T,soundspeed,density_ratio,rho;
|
|
|
|
SCALAR xlo, xhi,xmin,xmax;
|
|
|
|
typedef SCALAR (LaRCsimIC::*fp)(SCALAR x);
|
|
fp sfunc;
|
|
|
|
lsspeedset lastSpeedSet;
|
|
lsaltset lastAltSet;
|
|
|
|
|
|
void calcVtfromNED(void);
|
|
void calcNEDfromVt(void);
|
|
void calcSpeeds(void);
|
|
|
|
|
|
bool getAlpha(void);
|
|
bool getTheta(void);
|
|
SCALAR GammaEqOfTheta(SCALAR tt);
|
|
SCALAR GammaEqOfAlpha(SCALAR tt);
|
|
void get_atmosphere(void);
|
|
|
|
|
|
bool findInterval(SCALAR x,SCALAR guess);
|
|
bool solve(SCALAR *y, SCALAR x);
|
|
};
|
|
|
|
#endif
|