2002-02-04 22:54:02 +00:00
|
|
|
// net_fdm.hxx -- defines a common net I/O interface to the flight
|
2001-09-04 14:39:12 +00:00
|
|
|
// dynamics model
|
|
|
|
//
|
2005-01-21 01:59:30 +00:00
|
|
|
// Written by Curtis Olson - http://www.flightgear.org/~curt
|
|
|
|
// Started September 2001.
|
2001-09-04 14:39:12 +00:00
|
|
|
//
|
2003-12-30 20:46:50 +00:00
|
|
|
// This file is in the Public Domain, and comes with no warranty.
|
2001-09-04 14:39:12 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
2002-02-04 22:54:02 +00:00
|
|
|
#ifndef _NET_FDM_HXX
|
|
|
|
#define _NET_FDM_HXX
|
2001-09-04 14:39:12 +00:00
|
|
|
|
|
|
|
|
2002-04-07 15:24:32 +00:00
|
|
|
#include <time.h> // time_t
|
2005-09-22 11:47:58 +00:00
|
|
|
#include <simgear/misc/stdint.hxx>
|
2002-04-07 15:24:32 +00:00
|
|
|
|
2005-03-24 19:56:57 +00:00
|
|
|
// NOTE: this file defines an external interface structure. Due to
|
|
|
|
// variability between platforms and architectures, we only used fixed
|
|
|
|
// length types here. Specifically, integer types can vary in length.
|
|
|
|
// I am not aware of any platforms that don't use 4 bytes for float
|
|
|
|
// and 8 bytes for double.
|
|
|
|
|
2020-10-02 19:30:54 +00:00
|
|
|
const uint32_t FG_NET_FDM_VERSION = 25;
|
2002-04-08 19:57:45 +00:00
|
|
|
|
2001-09-04 14:39:12 +00:00
|
|
|
|
|
|
|
// Define a structure containing the top level flight dynamics model
|
|
|
|
// parameters
|
|
|
|
|
2002-02-04 22:54:02 +00:00
|
|
|
class FGNetFDM {
|
2001-09-04 14:39:12 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2002-04-11 16:35:37 +00:00
|
|
|
enum {
|
|
|
|
FG_MAX_ENGINES = 4,
|
|
|
|
FG_MAX_WHEELS = 3,
|
2002-07-05 19:04:04 +00:00
|
|
|
FG_MAX_TANKS = 4
|
2002-04-11 16:35:37 +00:00
|
|
|
};
|
2002-04-08 19:57:45 +00:00
|
|
|
|
2005-05-03 20:34:21 +00:00
|
|
|
uint32_t version; // increment when data values change
|
2005-11-15 19:15:13 +00:00
|
|
|
uint32_t padding; // padding
|
2005-03-24 19:56:57 +00:00
|
|
|
|
2001-10-26 05:42:08 +00:00
|
|
|
// Positions
|
2001-12-12 05:18:46 +00:00
|
|
|
double longitude; // geodetic (radians)
|
|
|
|
double latitude; // geodetic (radians)
|
|
|
|
double altitude; // above sea level (meters)
|
2003-07-10 18:55:41 +00:00
|
|
|
float agl; // above ground level (meters)
|
|
|
|
float phi; // roll (radians)
|
|
|
|
float theta; // pitch (radians)
|
|
|
|
float psi; // yaw or true heading (radians)
|
2004-11-18 19:53:00 +00:00
|
|
|
float alpha; // angle of attack (radians)
|
|
|
|
float beta; // side slip angle (radians)
|
2001-10-26 05:42:08 +00:00
|
|
|
|
|
|
|
// Velocities
|
2003-07-10 18:55:41 +00:00
|
|
|
float phidot; // roll rate (radians/sec)
|
|
|
|
float thetadot; // pitch rate (radians/sec)
|
|
|
|
float psidot; // yaw rate (radians/sec)
|
|
|
|
float vcas; // calibrated airspeed
|
|
|
|
float climb_rate; // feet per second
|
|
|
|
float v_north; // north velocity in local/body frame, fps
|
|
|
|
float v_east; // east velocity in local/body frame, fps
|
|
|
|
float v_down; // down/vertical velocity in local/body frame, fps
|
2013-10-22 13:34:23 +00:00
|
|
|
float v_body_u; // ECEF velocity in body frame
|
|
|
|
float v_body_v; // ECEF velocity in body frame
|
|
|
|
float v_body_w; // ECEF velocity in body frame
|
|
|
|
|
2002-03-27 05:20:45 +00:00
|
|
|
// Accelerations
|
2003-07-10 18:55:41 +00:00
|
|
|
float A_X_pilot; // X accel in body frame ft/sec^2
|
|
|
|
float A_Y_pilot; // Y accel in body frame ft/sec^2
|
|
|
|
float A_Z_pilot; // Z accel in body frame ft/sec^2
|
2002-03-27 05:20:45 +00:00
|
|
|
|
2003-11-10 22:02:38 +00:00
|
|
|
// Stall
|
|
|
|
float stall_warning; // 0.0 - 1.0 indicating the amount of stall
|
|
|
|
float slip_deg; // slip ball deflection
|
|
|
|
|
2002-10-01 15:26:15 +00:00
|
|
|
// Pressure
|
|
|
|
|
2002-04-08 19:57:45 +00:00
|
|
|
// Engine status
|
2005-05-03 20:34:21 +00:00
|
|
|
uint32_t num_engines; // Number of valid engines
|
|
|
|
uint32_t eng_state[FG_MAX_ENGINES];// Engine state (off, cranking, running)
|
2004-04-02 16:19:59 +00:00
|
|
|
float rpm[FG_MAX_ENGINES]; // Engine RPM rev/min
|
2003-07-10 18:55:41 +00:00
|
|
|
float fuel_flow[FG_MAX_ENGINES]; // Fuel flow gallons/hr
|
2006-03-21 18:51:57 +00:00
|
|
|
float fuel_px[FG_MAX_ENGINES]; // Fuel pressure psi
|
2004-04-02 16:19:59 +00:00
|
|
|
float egt[FG_MAX_ENGINES]; // Exhuast gas temp deg F
|
2005-01-05 03:43:05 +00:00
|
|
|
float cht[FG_MAX_ENGINES]; // Cylinder head temp deg F
|
2004-04-02 16:19:59 +00:00
|
|
|
float mp_osi[FG_MAX_ENGINES]; // Manifold pressure
|
2005-01-05 03:43:05 +00:00
|
|
|
float tit[FG_MAX_ENGINES]; // Turbine Inlet Temperature
|
2004-04-02 16:19:59 +00:00
|
|
|
float oil_temp[FG_MAX_ENGINES]; // Oil temp deg F
|
|
|
|
float oil_px[FG_MAX_ENGINES]; // Oil pressure psi
|
2002-04-08 19:57:45 +00:00
|
|
|
|
|
|
|
// Consumables
|
2020-07-17 00:13:57 +00:00
|
|
|
uint32_t num_tanks; // Max number of fuel tanks
|
|
|
|
float fuel_quantity[FG_MAX_TANKS]; // used by GPSsmooth and possibly others
|
|
|
|
uint32_t tank_selected[FG_MAX_TANKS]; // selected, capacity, usable, density and level required for multiple-pc setups to work
|
|
|
|
double capacity_m3[FG_MAX_TANKS];
|
|
|
|
double unusable_m3[FG_MAX_TANKS];
|
|
|
|
double density_kgpm3[FG_MAX_TANKS];
|
|
|
|
double level_m3[FG_MAX_TANKS];
|
|
|
|
|
2002-04-08 19:57:45 +00:00
|
|
|
|
2003-07-10 18:55:41 +00:00
|
|
|
// Gear status
|
2005-05-03 20:34:21 +00:00
|
|
|
uint32_t num_wheels;
|
|
|
|
uint32_t wow[FG_MAX_WHEELS];
|
2003-07-22 23:46:11 +00:00
|
|
|
float gear_pos[FG_MAX_WHEELS];
|
|
|
|
float gear_steer[FG_MAX_WHEELS];
|
|
|
|
float gear_compression[FG_MAX_WHEELS];
|
2002-04-08 19:57:45 +00:00
|
|
|
|
2002-02-08 23:03:54 +00:00
|
|
|
// Environment
|
2005-03-24 19:56:57 +00:00
|
|
|
uint32_t cur_time; // current unix time
|
|
|
|
// FIXME: make this uint64_t before 2038
|
2005-05-03 20:34:21 +00:00
|
|
|
int32_t warp; // offset in seconds to unix time
|
2005-03-24 19:56:57 +00:00
|
|
|
float visibility; // visibility in meters (for env. effects)
|
2003-07-10 18:55:41 +00:00
|
|
|
|
|
|
|
// Control surface positions (normalized values)
|
|
|
|
float elevator;
|
2004-02-17 22:46:28 +00:00
|
|
|
float elevator_trim_tab;
|
2004-10-29 00:13:32 +00:00
|
|
|
float left_flap;
|
|
|
|
float right_flap;
|
2003-07-10 18:55:41 +00:00
|
|
|
float left_aileron;
|
|
|
|
float right_aileron;
|
|
|
|
float rudder;
|
2003-11-24 01:47:52 +00:00
|
|
|
float nose_wheel;
|
2003-07-10 18:55:41 +00:00
|
|
|
float speedbrake;
|
|
|
|
float spoilers;
|
2002-02-04 22:54:02 +00:00
|
|
|
};
|
2001-09-04 14:39:12 +00:00
|
|
|
|
|
|
|
|
2002-02-04 22:54:02 +00:00
|
|
|
#endif // _NET_FDM_HXX
|