1999-02-05 21:29:38 +00:00
|
|
|
// JSBsim.cxx -- interface to the JSBsim flight model
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started February 1999.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// 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$
|
|
|
|
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-02-26 22:09:10 +00:00
|
|
|
|
1999-05-08 02:33:13 +00:00
|
|
|
#ifdef FG_MATH_EXCEPTION_CLASH
|
|
|
|
# include <math.h>
|
|
|
|
#endif
|
|
|
|
|
1999-02-26 22:09:10 +00:00
|
|
|
#include STL_STRING
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/constants.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2000-09-27 20:16:22 +00:00
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/misc/fgpath.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
#include <Scenery/scenery.hxx>
|
|
|
|
|
1999-02-26 22:09:10 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
|
|
|
#include <Controls/controls.hxx>
|
|
|
|
#include <Main/options.hxx>
|
|
|
|
|
2000-07-24 17:26:05 +00:00
|
|
|
#include <FDM/JSBSim/FGFDMExec.h>
|
|
|
|
#include <FDM/JSBSim/FGAircraft.h>
|
|
|
|
#include <FDM/JSBSim/FGFCS.h>
|
|
|
|
#include <FDM/JSBSim/FGPosition.h>
|
|
|
|
#include <FDM/JSBSim/FGRotation.h>
|
|
|
|
#include <FDM/JSBSim/FGState.h>
|
|
|
|
#include <FDM/JSBSim/FGTranslation.h>
|
|
|
|
#include <FDM/JSBSim/FGAuxiliary.h>
|
|
|
|
#include <FDM/JSBSim/FGDefs.h>
|
|
|
|
#include <FDM/JSBSim/FGInitialCondition.h>
|
2000-10-09 21:16:21 +00:00
|
|
|
#include <FDM/JSBSim/FGTrim.h>
|
2000-07-24 17:26:05 +00:00
|
|
|
#include <FDM/JSBSim/FGAtmosphere.h>
|
|
|
|
|
|
|
|
#include "JSBSim.hxx"
|
1999-02-05 21:29:38 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
/******************************************************************************/
|
1999-02-05 21:29:38 +00:00
|
|
|
|
|
|
|
// Initialize the JSBsim flight model, dt is the time increment for
|
|
|
|
// each subsequent iteration through the EOM
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
bool FGJSBsim::init( double dt ) {
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-05-30 16:48:52 +00:00
|
|
|
bool result;
|
1999-02-26 22:09:10 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, "Starting and initializing JSBsim" );
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " created FDMExec" );
|
1999-04-27 19:27:45 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FGPath aircraft_path( current_options.get_fg_root() );
|
|
|
|
aircraft_path.append( "Aircraft" );
|
2000-05-02 18:25:30 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FGPath engine_path( current_options.get_fg_root() );
|
|
|
|
engine_path.append( "Engine" );
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
//FDMExec.GetState()->Setdt( dt );
|
1999-07-31 04:56:13 +00:00
|
|
|
|
2000-10-02 23:07:30 +00:00
|
|
|
result = FDMExec.LoadModel( aircraft_path.str(),
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
engine_path.str(),
|
|
|
|
current_options.get_aircraft() );
|
2000-10-12 01:06:31 +00:00
|
|
|
FDMExec.GetState()->Setdt( dt );
|
|
|
|
|
2000-05-30 16:48:52 +00:00
|
|
|
if (result) {
|
2000-10-10 17:44:35 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " loaded aircraft " << current_options.get_aircraft() );
|
2000-05-30 16:48:52 +00:00
|
|
|
} else {
|
2000-10-16 14:54:41 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " aircraft " << current_options.get_aircraft()
|
|
|
|
<< " does not exist" );
|
|
|
|
return false;
|
2000-05-30 16:48:52 +00:00
|
|
|
}
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-08-04 16:08:55 +00:00
|
|
|
FDMExec.GetAtmosphere()->SetExTemperature(get_Static_temperature());
|
|
|
|
FDMExec.GetAtmosphere()->SetExPressure(get_Static_pressure());
|
|
|
|
FDMExec.GetAtmosphere()->SetExDensity(get_Density());
|
|
|
|
FDMExec.GetAtmosphere()->SetWindNED(get_V_north_airmass(),
|
|
|
|
get_V_east_airmass(),
|
|
|
|
get_V_down_airmass());
|
2000-10-09 21:16:21 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FDMExec.GetAtmosphere()->UseInternal();
|
2000-10-09 21:16:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
FDMExec.GetPosition()->SetRunwayRadius(scenery.cur_radius*METER_TO_FEET);
|
|
|
|
FDMExec.GetPosition()->SetSeaLevelRadius(get_Sea_level_radius());
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-07-25 21:41:59 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " Initializing JSBSim with:" );
|
2000-10-09 21:16:21 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FGInitialCondition *fgic = new FGInitialCondition(&FDMExec);
|
2000-10-10 17:44:35 +00:00
|
|
|
fgic->SetAltitudeFtIC(get_Altitude());
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
if((current_options.get_mach() < 0) && (current_options.get_vc() < 0 )) {
|
|
|
|
fgic->SetUBodyFpsIC(current_options.get_uBody());
|
|
|
|
fgic->SetVBodyFpsIC(current_options.get_vBody());
|
|
|
|
fgic->SetWBodyFpsIC(current_options.get_wBody());
|
|
|
|
FG_LOG(FG_FLIGHT,FG_INFO, " u,v,w= " << current_options.get_uBody()
|
|
|
|
<< ", " << current_options.get_vBody()
|
|
|
|
<< ", " << current_options.get_wBody());
|
|
|
|
} else if (current_options.get_vc() < 0) {
|
|
|
|
fgic->SetMachIC(current_options.get_mach());
|
|
|
|
FG_LOG(FG_FLIGHT,FG_INFO, " mach: " << current_options.get_mach() );
|
|
|
|
} else {
|
|
|
|
fgic->SetVcalibratedKtsIC(current_options.get_vc());
|
|
|
|
FG_LOG(FG_FLIGHT,FG_INFO, " vc: " << current_options.get_vc() );
|
|
|
|
//this should cover the case in which no speed switches are used
|
|
|
|
//current_options.get_vc() will return zero by default
|
|
|
|
}
|
1999-10-11 23:09:07 +00:00
|
|
|
|
2000-10-09 21:16:21 +00:00
|
|
|
//fgic->SetFlightPathAngleDegIC(current_options.get_Gamma());
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
fgic->SetRollAngleRadIC(get_Phi());
|
|
|
|
fgic->SetPitchAngleRadIC(get_Theta());
|
|
|
|
fgic->SetHeadingRadIC(get_Psi());
|
2000-05-30 16:48:52 +00:00
|
|
|
fgic->SetLatitudeRadIC(get_Lat_geocentric());
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
fgic->SetLongitudeRadIC(get_Longitude());
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-10-09 21:16:21 +00:00
|
|
|
//FG_LOG( FG_FLIGHT, FG_INFO, " gamma: " << current_options.get_Gamma());
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " phi: " << get_Phi());
|
2000-10-09 21:16:21 +00:00
|
|
|
//FG_LOG( FG_FLIGHT, FG_INFO, " theta: " << get_Theta() );
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " psi: " << get_Psi() );
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " lat: " << get_Latitude() );
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " lon: " << get_Longitude() );
|
2000-10-09 21:16:21 +00:00
|
|
|
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " Pressure Altiude: " << get_Altitude() );
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " Terrain Altitude: "
|
|
|
|
<< scenery.cur_radius*METER_TO_FEET );
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " AGL Altitude: "
|
|
|
|
<< get_Altitude() + get_Sea_level_radius()
|
|
|
|
- scenery.cur_radius*METER_TO_FEET );
|
|
|
|
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " current_options.get_altitude(): "
|
|
|
|
<< current_options.get_altitude() );
|
2000-05-19 16:29:23 +00:00
|
|
|
//must check > 0, != 0 will give bad result if --notrim set
|
2000-05-30 16:48:52 +00:00
|
|
|
if(current_options.get_trim_mode() > 0) {
|
2000-10-16 20:01:23 +00:00
|
|
|
if(fgic->GetVcalibratedKtsIC() > 50) {
|
|
|
|
FDMExec.RunIC(fgic);
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " Starting trim..." );
|
|
|
|
FGTrim *fgtrim=new FGTrim(&FDMExec,fgic,tLongitudinal);
|
|
|
|
fgtrim->DoTrim();
|
|
|
|
fgtrim->Report();
|
|
|
|
fgtrim->TrimStats();
|
|
|
|
fgtrim->ReportState();
|
|
|
|
|
|
|
|
|
|
|
|
controls.set_elevator_trim(FDMExec.GetFCS()->GetPitchTrimCmd());
|
|
|
|
controls.set_throttle(FGControls::ALL_ENGINES,FDMExec.GetFCS()->GetThrottleCmd(0)/100);
|
|
|
|
trimmed=true;
|
|
|
|
trim_elev=FDMExec.GetFCS()->GetPitchTrimCmd();
|
|
|
|
trim_throttle=FDMExec.GetFCS()->GetThrottleCmd(0)/100;
|
|
|
|
//the trimming routine only knows how to get 1 value for throttle
|
|
|
|
|
|
|
|
delete fgtrim;
|
|
|
|
}
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " Trim complete." );
|
|
|
|
} else {
|
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " Initializing without trim" );
|
|
|
|
FDMExec.GetState()->Initialize(fgic);
|
|
|
|
|
|
|
|
}
|
1999-02-05 21:29:38 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
delete fgic;
|
1999-02-05 21:29:38 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " loaded initial conditions" );
|
1999-10-11 23:09:07 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, " set dt" );
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-07-25 21:41:59 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_INFO, "Finished initializing JSBSim" );
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
|
|
|
copy_from_JSBsim();
|
2000-08-04 16:08:55 +00:00
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
return true;
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Run an iteration of the EOM (equations of motion)
|
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
bool FGJSBsim::update( int multiloop ) {
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
double save_alt = 0.0;
|
|
|
|
double time_step = (1.0 / current_options.get_model_hz()) * multiloop;
|
|
|
|
double start_elev = get_Altitude();
|
2000-10-09 21:16:21 +00:00
|
|
|
|
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
// lets try to avoid really screwing up the JSBsim model
|
|
|
|
if ( get_Altitude() < -9000 ) {
|
|
|
|
save_alt = get_Altitude();
|
|
|
|
set_Altitude( 0.0 );
|
|
|
|
}
|
2000-10-12 01:06:31 +00:00
|
|
|
|
|
|
|
if(trimmed) {
|
|
|
|
|
|
|
|
controls.set_elevator_trim(trim_elev);
|
|
|
|
controls.set_throttle(FGControls::ALL_ENGINES,trim_throttle);
|
|
|
|
|
|
|
|
controls.set_elevator(0.0);
|
|
|
|
controls.set_aileron(0.0);
|
|
|
|
controls.set_rudder(0.0);
|
|
|
|
trimmed=false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-10-09 21:16:21 +00:00
|
|
|
copy_to_JSBsim();
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
|
|
|
for ( int i = 0; i < multiloop; i++ ) {
|
|
|
|
FDMExec.Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
// printf("%d FG_Altitude = %.2f\n", i, FG_Altitude * 0.3048);
|
|
|
|
// printf("%d Altitude = %.2f\n", i, Altitude * 0.3048);
|
|
|
|
|
|
|
|
// translate JSBsim back to FG structure so that the
|
|
|
|
// autopilot (and the rest of the sim can use the updated values
|
|
|
|
|
|
|
|
copy_from_JSBsim();
|
|
|
|
|
|
|
|
// but lets restore our original bogus altitude when we are done
|
|
|
|
|
|
|
|
if ( save_alt < -9000.0 ) {
|
|
|
|
set_Altitude( save_alt );
|
|
|
|
}
|
|
|
|
|
|
|
|
double end_elev = get_Altitude();
|
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
return true;
|
1999-02-05 21:29:38 +00:00
|
|
|
}
|
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
/******************************************************************************/
|
1999-02-05 21:29:38 +00:00
|
|
|
|
|
|
|
// Convert from the FGInterface struct to the JSBsim generic_ struct
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
bool FGJSBsim::copy_to_JSBsim() {
|
2000-10-09 21:16:21 +00:00
|
|
|
// copy control positions into the JSBsim structure
|
|
|
|
|
|
|
|
FDMExec.GetFCS()->SetDaCmd( controls.get_aileron());
|
|
|
|
FDMExec.GetFCS()->SetDeCmd( controls.get_elevator());
|
|
|
|
FDMExec.GetFCS()->SetPitchTrimCmd(controls.get_elevator_trim());
|
2000-10-16 20:01:23 +00:00
|
|
|
FDMExec.GetFCS()->SetDrCmd( -1*controls.get_rudder());
|
2000-10-09 21:16:21 +00:00
|
|
|
FDMExec.GetFCS()->SetDfCmd( controls.get_flaps() );
|
|
|
|
FDMExec.GetFCS()->SetDsbCmd( 0.0 ); //speedbrakes
|
|
|
|
FDMExec.GetFCS()->SetDspCmd( 0.0 ); //spoilers
|
|
|
|
FDMExec.GetFCS()->SetThrottleCmd( FGControls::ALL_ENGINES,
|
|
|
|
controls.get_throttle( 0 ) * 100.0 );
|
|
|
|
|
|
|
|
FDMExec.GetFCS()->SetLBrake( controls.get_brake( 0 ) );
|
|
|
|
FDMExec.GetFCS()->SetRBrake( controls.get_brake( 1 ) );
|
|
|
|
FDMExec.GetFCS()->SetCBrake( controls.get_brake( 2 ) );
|
|
|
|
|
|
|
|
// Inform JSBsim of the local terrain altitude; uncommented 5/3/00
|
|
|
|
// FDMExec.GetPosition()->SetRunwayElevation(get_Runway_altitude()); // seems to work
|
|
|
|
FDMExec.GetPosition()->SetRunwayRadius(scenery.cur_radius*METER_TO_FEET);
|
|
|
|
FDMExec.GetPosition()->SetSeaLevelRadius(get_Sea_level_radius());
|
|
|
|
|
|
|
|
FDMExec.GetAtmosphere()->SetExTemperature(get_Static_temperature());
|
|
|
|
FDMExec.GetAtmosphere()->SetExPressure(get_Static_pressure());
|
|
|
|
FDMExec.GetAtmosphere()->SetExDensity(get_Density());
|
|
|
|
FDMExec.GetAtmosphere()->SetWindNED(get_V_north_airmass(),
|
|
|
|
get_V_east_airmass(),
|
|
|
|
get_V_down_airmass());
|
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
return true;
|
1999-02-05 21:29:38 +00:00
|
|
|
}
|
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
/******************************************************************************/
|
1999-02-05 21:29:38 +00:00
|
|
|
|
|
|
|
// Convert from the JSBsim generic_ struct to the FGInterface struct
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
bool FGJSBsim::copy_from_JSBsim() {
|
1999-02-05 21:29:38 +00:00
|
|
|
|
2000-07-25 21:41:59 +00:00
|
|
|
set_Inertias( FDMExec.GetAircraft()->GetMass(),
|
|
|
|
FDMExec.GetAircraft()->GetIxx(),
|
|
|
|
FDMExec.GetAircraft()->GetIyy(),
|
|
|
|
FDMExec.GetAircraft()->GetIzz(),
|
|
|
|
FDMExec.GetAircraft()->GetIxz() );
|
|
|
|
|
|
|
|
set_CG_Position ( FDMExec.GetAircraft()->GetXYZcg()(1),
|
|
|
|
FDMExec.GetAircraft()->GetXYZcg()(2),
|
|
|
|
FDMExec.GetAircraft()->GetXYZcg()(3) );
|
|
|
|
|
|
|
|
set_Accels_Body ( FDMExec.GetTranslation()->GetUVWdot()(1),
|
|
|
|
FDMExec.GetTranslation()->GetUVWdot()(2),
|
|
|
|
FDMExec.GetTranslation()->GetUVWdot()(3) );
|
|
|
|
|
|
|
|
set_Accels_CG_Body ( FDMExec.GetTranslation()->GetUVWdot()(1),
|
|
|
|
FDMExec.GetTranslation()->GetUVWdot()(2),
|
|
|
|
FDMExec.GetTranslation()->GetUVWdot()(3) );
|
|
|
|
|
2000-07-31 15:05:08 +00:00
|
|
|
//set_Accels_CG_Body_N ( FDMExec.GetTranslation()->GetNcg()(1),
|
|
|
|
// FDMExec.GetTranslation()->GetNcg()(2),
|
|
|
|
// FDMExec.GetTranslation()->GetNcg()(3) );
|
|
|
|
//
|
2000-07-25 21:41:59 +00:00
|
|
|
set_Accels_Pilot_Body( FDMExec.GetAuxiliary()->GetPilotAccel()(1),
|
|
|
|
FDMExec.GetAuxiliary()->GetPilotAccel()(2),
|
|
|
|
FDMExec.GetAuxiliary()->GetPilotAccel()(3) );
|
|
|
|
|
2000-07-31 15:05:08 +00:00
|
|
|
//set_Accels_Pilot_Body_N( FDMExec.GetAuxiliary()->GetNpilot()(1),
|
|
|
|
// FDMExec.GetAuxiliary()->GetNpilot()(2),
|
|
|
|
// FDMExec.GetAuxiliary()->GetNpilot()(3) );
|
2000-07-25 21:41:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set_Nlf( FDMExec.GetAircraft()->GetNlf());
|
|
|
|
|
|
|
|
|
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
// Velocities
|
|
|
|
|
|
|
|
set_Velocities_Local( FDMExec.GetPosition()->GetVn(),
|
|
|
|
FDMExec.GetPosition()->GetVe(),
|
|
|
|
FDMExec.GetPosition()->GetVd() );
|
|
|
|
|
2000-07-25 21:41:59 +00:00
|
|
|
set_Velocities_Wind_Body( FDMExec.GetTranslation()->GetUVW()(1),
|
|
|
|
FDMExec.GetTranslation()->GetUVW()(2),
|
|
|
|
FDMExec.GetTranslation()->GetUVW()(3) );
|
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
set_V_equiv_kts( FDMExec.GetAuxiliary()->GetVequivalentKTS() );
|
|
|
|
|
|
|
|
//set_V_calibrated( FDMExec.GetAuxiliary()->GetVcalibratedFPS() );
|
|
|
|
|
|
|
|
set_V_calibrated_kts( FDMExec.GetAuxiliary()->GetVcalibratedKTS() );
|
2000-07-25 21:41:59 +00:00
|
|
|
|
|
|
|
set_V_ground_speed ( FDMExec.GetPosition()->GetVground() );
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
|
|
|
set_Omega_Body( FDMExec.GetState()->GetParameter(FG_ROLLRATE),
|
|
|
|
FDMExec.GetState()->GetParameter(FG_PITCHRATE),
|
|
|
|
FDMExec.GetState()->GetParameter(FG_YAWRATE) );
|
|
|
|
|
2000-10-09 21:16:21 +00:00
|
|
|
set_Euler_Rates( FDMExec.GetRotation()->GetEulerRates()(2),
|
|
|
|
FDMExec.GetRotation()->GetEulerRates()(1),
|
|
|
|
FDMExec.GetRotation()->GetEulerRates()(3));
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
2000-08-04 16:08:55 +00:00
|
|
|
// ***FIXME*** set_Geocentric_Rates( Latitude_dot, Longitude_dot, Radius_dot );
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
|
|
|
set_Mach_number( FDMExec.GetTranslation()->GetMach());
|
|
|
|
|
|
|
|
// Positions
|
|
|
|
|
|
|
|
double lat_geoc = FDMExec.GetPosition()->GetLatitude();
|
|
|
|
double lon = FDMExec.GetPosition()->GetLongitude();
|
|
|
|
double alt = FDMExec.GetPosition()->Geth();
|
|
|
|
double lat_geod, tmp_alt, sl_radius1, sl_radius2, tmp_lat_geoc;
|
|
|
|
|
2000-09-27 20:16:22 +00:00
|
|
|
sgGeocToGeod( lat_geoc, EQUATORIAL_RADIUS_M + alt * FEET_TO_METER,
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
&lat_geod, &tmp_alt, &sl_radius1 );
|
2000-09-27 20:16:22 +00:00
|
|
|
sgGeodToGeoc( lat_geod, alt * FEET_TO_METER, &sl_radius2, &tmp_lat_geoc );
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
|
|
|
FG_LOG( FG_FLIGHT, FG_DEBUG, "lon = " << lon << " lat_geod = " << lat_geod
|
|
|
|
<< " lat_geoc = " << lat_geoc
|
|
|
|
<< " alt = " << alt << " tmp_alt = " << tmp_alt * METER_TO_FEET
|
|
|
|
<< " sl_radius1 = " << sl_radius1 * METER_TO_FEET
|
|
|
|
<< " sl_radius2 = " << sl_radius2 * METER_TO_FEET
|
|
|
|
<< " Equator = " << EQUATORIAL_RADIUS_FT );
|
|
|
|
|
|
|
|
set_Geocentric_Position( lat_geoc, lon,
|
|
|
|
sl_radius2 * METER_TO_FEET + alt );
|
|
|
|
set_Geodetic_Position( lat_geod, lon, alt );
|
|
|
|
set_Euler_Angles( FDMExec.GetRotation()->Getphi(),
|
|
|
|
FDMExec.GetRotation()->Gettht(),
|
|
|
|
FDMExec.GetRotation()->Getpsi() );
|
|
|
|
|
|
|
|
set_Alpha( FDMExec.GetTranslation()->Getalpha() );
|
|
|
|
set_Beta( FDMExec.GetTranslation()->Getbeta() );
|
2000-08-04 16:08:55 +00:00
|
|
|
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
set_Gamma_vert_rad( FDMExec.GetPosition()->GetGamma() );
|
|
|
|
// set_Gamma_horiz_rad( Gamma_horiz_rad );
|
|
|
|
|
|
|
|
/* **FIXME*** */ set_Sea_level_radius( sl_radius2 * METER_TO_FEET );
|
|
|
|
/* **FIXME*** */ set_Earth_position_angle( 0.0 );
|
|
|
|
|
|
|
|
// /* ***FIXME*** */ set_Runway_altitude( 0.0 );
|
|
|
|
|
|
|
|
set_sin_lat_geocentric( lat_geoc );
|
|
|
|
set_cos_lat_geocentric( lat_geoc );
|
|
|
|
set_sin_cos_longitude( lon );
|
|
|
|
set_sin_cos_latitude( lat_geod );
|
2000-07-24 17:26:05 +00:00
|
|
|
|
|
|
|
set_Climb_Rate(FDMExec.GetPosition()->Gethdot());
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
2000-10-16 14:54:41 +00:00
|
|
|
return true;
|
1999-02-05 21:29:38 +00:00
|
|
|
}
|